        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            min-height: 100vh;
            background: linear-gradient(135deg, #2d1b4e 0%, #1a1a2e 25%, #16213e 50%, #0f3460 100%);
            background-size: 400% 400%;
            animation: gradientShift 20s ease infinite;
            position: relative;
            overflow-x: hidden;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.03)" points="0,100 1000,0 1000,900 0,1000"/></svg>');
            background-size: cover;
            pointer-events: none;
        }

        .floating-shapes {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            animation: float 20s infinite ease-in-out;
        }

        .shape:nth-child(1) { width: 80px; height: 80px; left: 10%; top: 20%; animation-delay: 0s; }
        .shape:nth-child(2) { width: 120px; height: 120px; right: 15%; top: 60%; animation-delay: 5s; }
        .shape:nth-child(3) { width: 60px; height: 60px; left: 70%; top: 10%; animation-delay: 10s; }
        .shape:nth-child(4) { width: 150px; height: 150px; left: 30%; bottom: 20%; animation-delay: 15s; }
        .shape:nth-child(5) { width: 40px; height: 40px; right: 30%; top: 40%; animation-delay: 7s; }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            33% { transform: translateY(-30px) rotate(120deg); }
            66% { transform: translateY(30px) rotate(240deg); }
        }

        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 10;
            padding: 2rem 0;
        }

        .glass-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 30px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 4rem 3rem;
            max-width: 800px;
            width: 90%;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            text-align: center;
        }

        .brand-section {
            margin-bottom: 2.5rem;
        }

        .logo-wrapper {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 90px;
            height: 90px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            margin-bottom: 1.5rem;
            border: 2px solid rgba(255, 255, 255, 0.4);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .logo-wrapper i {
            font-size: 2.5rem;
            color: #fff;
        }

        .company-name {
            font-family: 'Montserrat', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
        }

        .tagline {
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 400;
            letter-spacing: 5px;
            text-transform: uppercase;
        }

        .divider {
            width: 80px;
            height: 3px;
            background: rgba(255, 255, 255, 0.5);
            margin: 2rem auto;
            border-radius: 2px;
        }

        .caption-section {
            margin-bottom: 3rem;
        }

        .main-caption {
            font-size: 1.2rem;
            color: #e0e0e0;
            font-weight: 400;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .sub-caption {
            font-size: 1rem;
            color: #a0a0a0;
            font-weight: 400;
        }

        .countdown-wrapper {
            margin: 3rem 0;
        }

        .countdown-label-text {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
        }

        .countdown-grid {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .time-unit {
            background: rgba(0, 0, 0, 0.25);
            border-radius: 15px;
            padding: 1.5rem 2rem;
            min-width: 100px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.3s ease;
        }

        .time-unit:hover {
            background: rgba(0, 0, 0, 0.35);
            transform: translateY(-5px);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .time-number {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: #fff;
            display: block;
            line-height: 1;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .time-text {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.9);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-top: 0.5rem;
            display: block;
            font-weight: 600;
        }

        .launch-date {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }

        .launch-date p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            margin: 0;
        }

        .launch-date i {
            margin-right: 0.5rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .social-section {
            margin-top: 2.5rem;
        }

        .social-section a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            color: #fff;
            margin: 0 0.4rem;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            text-decoration: none;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .social-section a:hover {
            background: #fff;
            color: #764ba2;
            transform: translateY(-3px);
        }

        @media (max-width: 768px) {
            .glass-card {
                padding: 2.5rem 1.5rem;
            }
            .company-name {
                font-size: 1.8rem;
            }
            .tagline {
                font-size: 0.75rem;
                letter-spacing: 3px;
            }
            .main-caption {
                font-size: 1rem;
            }
            .time-number {
                font-size: 2rem;
            }
            .time-unit {
                min-width: 85px;
                padding: 1.2rem 1.5rem;
            }
            .countdown-grid {
                gap: 0.8rem;
            }
            .time-text {
                font-size: 0.7rem;
                letter-spacing: 1px;
            }
        }

        @media (max-width: 480px) {
            .glass-card {
                padding: 2rem 1rem;
            }
            .company-name {
                font-size: 1.4rem;
            }
            .logo-wrapper {
                width: 60px;
                height: 60px;
            }
            .logo-wrapper i {
                font-size: 1.5rem;
            }
            .time-unit {
                min-width: 70px;
                padding: 1rem 1.2rem;
            }
            .time-number {
                font-size: 1.6rem;
            }
            .time-text {
                font-size: 0.65rem;
                letter-spacing: 1px;
            }
            .countdown-grid {
                gap: 0.6rem;
            }
        }