        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: 
                radial-gradient(circle at center, #181935 0%, #1E1F3D 100%),
                radial-gradient(circle, rgba(255,255,255,0.8) 0.5px, transparent 0.5px),
                radial-gradient(circle, rgba(255,255,255,0.4) 0.8px, transparent 0.8px),
                radial-gradient(circle, rgba(255,255,255,0.2) 1px, transparent 1px),
                radial-gradient(circle, rgba(255,255,255,0.1) 1.2px, transparent 1.2px),
                radial-gradient(circle, rgba(128,128,128,0.3) 0.3px, transparent 0.3px),
                radial-gradient(circle, rgba(128,128,128,0.15) 0.5px, transparent 0.5px);
            background-size: 
                auto,
                120px 120px,
                80px 80px,
                200px 200px,
                150px 150px,
                60px 60px,
                100px 100px;
            background-position: 
                center center,
                0 0,
                40px 40px,
                20px 20px,
                80px 80px,
                15px 15px,
                70px 70px;
            color: white;
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
        }

        /* Background decorative elements */
        body::before {
            content: '';
            position: absolute;
            top: 20%;
            right: -10%;
            width: 400px;
            height: 400px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            z-index: 1;
        }

        /* Animated twinkling stars covering entire page */
        body::after {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-image: 
                radial-gradient(2px 2px at 20px 30px, #fff, transparent),
                radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
                radial-gradient(1px 1px at 90px 40px, #fff, transparent),
                radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.6), transparent),
                radial-gradient(2px 2px at 160px 30px, #fff, transparent),
                radial-gradient(1px 1px at 200px 90px, rgba(255,255,255,0.7), transparent),
                radial-gradient(2px 2px at 240px 50px, #fff, transparent),
                radial-gradient(1px 1px at 280px 20px, rgba(255,255,255,0.9), transparent),
                radial-gradient(1px 1px at 320px 70px, #fff, transparent),
                radial-gradient(2px 2px at 360px 40px, rgba(255,255,255,0.6), transparent),
                radial-gradient(1px 1px at 400px 80px, rgba(255,255,255,0.7), transparent),
                radial-gradient(2px 2px at 450px 20px, #fff, transparent),
                radial-gradient(1px 1px at 500px 60px, rgba(255,255,255,0.8), transparent),
                radial-gradient(2px 2px at 550px 90px, rgba(255,255,255,0.6), transparent);
            background-repeat: repeat;
            background-size: 600px 150px;
            animation: twinkle 4s ease-in-out infinite alternate;
            pointer-events: none;
            z-index: 0;
        }

        /* Additional star layer for more coverage */
        .container::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-image: 
                radial-gradient(1px 1px at 15% 25%, rgba(255,255,255,0.9), transparent),
                radial-gradient(2px 2px at 35% 15%, rgba(255,255,255,0.7), transparent),
                radial-gradient(1px 1px at 55% 35%, #fff, transparent),
                radial-gradient(2px 2px at 75% 25%, rgba(255,255,255,0.8), transparent),
                radial-gradient(1px 1px at 85% 45%, rgba(255,255,255,0.6), transparent),
                radial-gradient(2px 2px at 25% 65%, #fff, transparent),
                radial-gradient(1px 1px at 45% 75%, rgba(255,255,255,0.9), transparent),
                radial-gradient(2px 2px at 65% 85%, rgba(255,255,255,0.7), transparent),
                radial-gradient(1px 1px at 85% 75%, rgba(255,255,255,0.8), transparent);
            background-repeat: no-repeat;
            animation: twinkle 6s ease-in-out infinite alternate-reverse;
            pointer-events: none;
            z-index: 0;
        }

        @keyframes twinkle {
            0% { opacity: 0.3; }
            50% { opacity: 0.8; }
            100% { opacity: 0.4; }
        }

        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 60px 20px;
            text-align: center;
            position: relative;
            z-index: 2;
            width: 100%;
        }

        .logo-section {
            margin-bottom: 40px;
        }

        .logos {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 30px;
        }

        .logos img {
            height: 40px;
            width: auto;
            max-width: 100%;
        }

        h1 {
            font-size: 50px;
            font-weight: bolder;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .brand-name {
            background: linear-gradient(to bottom, #fff, #45A0A4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 900;
            font-size: 100px;
            display: block;
            margin: 10px 0;
            -webkit-text-stroke: 1px rgba(255,255,255,0.1);
            text-shadow: 0 0 30px rgba(255,255,255,0.3);
        }   

        .subtitle {
            font-size: 28px;
            font-weight: 300;
            margin-bottom: 50px;
            line-height: 1.4;
        }

        .description {
            font-size: 23px;
            line-height: 1.6;
            margin-bottom: 60px;
            opacity: 0.9;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 60px;
            width: 100%;
        }

        .stat-card {
            background: #1E1F3D;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 30px 25px;
            border-radius: 16px;
            transition: all 0.3s ease;
            width: 100%;
            min-width: 180px;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            background: #232445;
        }

        .stat-number {
            font-size: 40px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 18px;
            font-weight: 400;
            opacity: 0.9;
        }

        .weekly-update {
            background: #181935;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 25px;
            border-radius: 16px;
            margin: 0 auto 80px;
            font-size: 34px;
            font-weight: medium;
            height: 190px;
            max-width: 920px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .pricing-section {
            margin-bottom: 40px;
            width: 100%;
        }

        .pricing-title {
            font-size: 32px;
            font-weight: 300;
            margin-bottom: 40px;
        }

        .pricing-options {
            display: flex;
            justify-content: center;
            gap: 60px;
            margin-bottom: 60px;
            flex-wrap: wrap;
        }

        .price {
            font-size: 35px;
            font-weight: 300;
            white-space: nowrap;
        }

        .price-monthly {
            color: #64ffda;
        }

        .price-annual {
            color: #64ffda;
        }

        .final-brand {
            font-size: 100px;
            font-weight: 900;
            background: linear-gradient(to bottom, #fff, #45A0A4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 0 auto;
            -webkit-text-stroke: 1px rgba(255,255,255,0.1);
            text-shadow: 0 0 30px rgba(255,255,255,0.3);
        }

        /* Tablet Styles */
        @media (max-width: 1024px) {
            .container {
                padding: 50px 20px;
            }

            h1 {
                font-size: 42px;
            }

            .brand-name {
                font-size: 80px;
            }

            .subtitle {
                font-size: 24px;
            }

            .description {
                font-size: 20px;
            }

            .weekly-update {
                font-size: 28px;
                height: 160px;
            }

            .stat-number {
                font-size: 32px;
            }

            .stat-label {
                font-size: 16px;
            }

            .price {
                font-size: 28px;
            }

            .final-brand {
                font-size: 80px;
            }
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            .container {
                padding: 40px 15px;
            }

            h1 {
                font-size: 32px;
            }

            .brand-name {
                font-size: 60px;
            }

            .subtitle {
                font-size: 20px;
                margin-bottom: 30px;
            }

            .description {
                font-size: 18px;
                margin-bottom: 40px;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .weekly-update {
                height: auto;
                min-height: 120px;
                padding: 30px 15px;
                font-size: 22px;
                margin-bottom: 50px;
            }

            .pricing-title {
                font-size: 24px;
                margin-bottom: 30px;
            }

            .pricing-options {
                flex-direction: column;
                gap: 20px;
                align-items: center;
            }

            .price {
                font-size: 24px;
                white-space: normal;
                text-align: center;
            }

            .final-brand {
                font-size: 50px;
                margin-bottom: 20px;
            }

            body::before,
            body::after {
                display: none;
            }
        }

        /* Small Mobile Styles */
        @media (max-width: 480px) {
            .brand-name {
                font-size: 48px;
            }

            .weekly-update {
                font-size: 18px;
            }

            .final-brand {
                font-size: 40px;
            }
        }

        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .container > * {
            animation: fadeInUp 0.8s ease forwards;
        }

        .stat-card:nth-child(1) { animation-delay: 0.1s; }
        .stat-card:nth-child(2) { animation-delay: 0.2s; }
        .stat-card:nth-child(3) { animation-delay: 0.3s; }