:root {
            --primary: #0ea5e9; /* Sky 500 */
            --primary-glow: rgba(14, 165, 233, 0.4);
            --accent: #6366f1; /* Indigo 500 */
            --accent-glow: rgba(99, 102, 241, 0.4);
            --card-bg: rgba(15, 23, 42, 0.6);
            --border: rgba(51, 65, 85, 0.5);
            --font-display: 'Orbitron', sans-serif;
        }

       

        

        /* Animated Star Background */
        /*.stars-container {
            position: fixed;
            inset: 0;
            z-index: 0;
            background: radial-gradient(circle at 50% 50%, #0f172a 0%, #020617 100%);
            overflow: hidden;
        }*/

        .star {
            background: radial-gradient(circle at 50% 50%, #0f172a 0%, #020617 100%);
            position: absolute;
            background: white;
            border-radius: 50%;
            opacity: 0.5;
            animation: twinkle var(--duration) infinite ease-in-out;
        }

        @keyframes twinkle {
            0%, 100% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.2); }
        }

        /* Layout */
        .main-wrapper {
            position: relative;
            z-index: 10;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 4rem 1rem;
            margin: 0 auto;
        }

        .badge {
            font-family: var(--font-display);
            font-size: 10px;
            letter-spacing: 0.4em;
            text-transform: uppercase;
            padding: 8px 20px;
            border-radius: 100px;
            background: rgba(30, 41, 59, 0.8);
            border: 1px solid var(--border);
            color: #94a3b8;
            margin-bottom: 2rem;
        }

        .badge h1 {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 8vw, 4.5rem);
            text-align: center;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(180deg, #fff 0%, #38bdf8 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .description {
            color: #94a3b8;
            text-align: center;
            max-width: 500px;
            margin-bottom: 4rem;
            line-height: 1.6;
        }

        /* Banners Grid */
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            align-items: center;
            width: 100%;
            margin-bottom: 4rem;
        }

        @media (min-width: 768px) {
            .hero-grid { grid-template-columns: 1fr 350px 1fr; }
        }

        .date-banner {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .banner-label {
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            padding: 4px 12px;
            border-radius: 100px;
            width: fit-content;
        }

        .banner-box {
            position: relative;
            padding: 24px 32px;
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 10px 40px -10px rgba(0,0,0,0.5);
        }

        /* Launch Variant (Blue) */
        .launch .banner-label { background: rgba(14, 165, 233, 0.2); color: #38bdf8; border: 1px solid rgba(14, 165, 233, 0.3); }
        .launch .banner-box { 
            background: linear-gradient(135deg, #0284c7, #38bdf8); 
            box-shadow: 0 0 30px var(--primary-glow);
        }

        /* Close Variant (Purple) */
        .close .banner-label { background: rgba(99, 102, 241, 0.2); color: #818cf8; border: 1px solid rgba(99, 102, 241, 0.3);
         }
        .close .banner-box { 
            background: linear-gradient(135deg, #4f46e5, #818cf8); 
            box-shadow: 0 0 30px var(--accent-glow);
        }

        .banner-box h2 { font-family: "Orbitron", monospace; font-size: 40px; margin-bottom: 4px;font-weight:900; }
        .banner-box p { font-size: 20px;
  font-weight: 600;
  opacity: 0.9;
  color: #fff; }

        /* Ribbon Tails */
        .tail { position: absolute; bottom: -10px; width: 14px; height: 14px; z-index: -1; }
        .tail-l { left: 15px; clip-path: polygon(0 0, 100% 0, 100% 100%); }
        .tail-r { right: 15px; clip-path: polygon(0 0, 100% 0, 0 100%); }
        .launch .tail { background: #0369a1; }
        .close .tail { background: #3730a3; }

        /* Rocket */
        .rocket-frame {
            position: relative;
            display: flex;
            justify-content: center;
            filter: drop-shadow(0 0 50px var(--primary-glow));
        }

        .rocket-img {
            width: 100%;
            max-width: 320px;
            animation: float 5s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        /* Countdown Section */
        .countdown-container {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 3rem 2rem;
            width: 100%;
            max-width: 900px;
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            backdrop-filter: blur(10px);
        }

        @media (min-width: 768px) {
            .countdown-container { grid-template-columns: 1fr 1fr; }
            .countdown-side:first-child { border-right: 1px solid var(--border); }
        }

        .countdown-side {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }

        .timer-grid {
            display: flex;
            gap: 12px;
        }

        .timer-unit {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .number-box {
            background: rgba(15, 23, 42, 0.8);
            border: 1px solid var(--border);
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            font-family: "Orbitron", monospace;
            font-size: 1.5rem;
            color: var(--primary);
            text-shadow: 0 0 10px var(--primary-glow);
            font-size: 34px;
            font-weight: 800;
            box-shadow: rgba(14, 165, 233, 0.17) 0px 2px 5px -1px, rgba(14, 165, 233, 0.42) 0px 1px 3px -1px;

        }

        .close-timer .number-box { color: #825eed; text-shadow: 0 0 10px var(--accent-glow); box-shadow: rgba(130, 94, 237, 0.37) 0px 2px 5px -1px, rgba(130, 94, 237, 0.31) 0px 1px 3px -1px;}

        .unit-label { font-size: 9px; text-transform: uppercase; color: #64748b; font-weight: 700; letter-spacing: 0.1em;font-family: "Orbitron", monospace; }

        /* CTA */
        .cta-section { margin-top: 3rem; text-align: center; }
        .cta-btn {
            background: linear-gradient(to right, #0ea5e9, #6366f1);
            color: white;
            border: none;
            padding: 20px 36px;
            border-radius: 100px;
            font-family: var(--font-display);
            font-size: 20px;
            cursor: pointer;
            box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
            transition: all 0.3s ease;
            font-family: "Orbitron", monospace;
            font-weight: 800;
        }
        .cta-btn:hover { transform: translateY(-2px); box-shadow: 0 15px 30px rgba(99, 102, 241, 0.6); }

        .footer-text { font-size: 10px; color: #475569; margin-top: 2rem; }




        @media (max-width: 767px) {
    .vs-hero {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

.vs-hero .overlay {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.63);
    z-index: -1;
}

@keyframes herobganimation {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: calc(100% - 100vw) 0;
    }
}
