        /* -------------------------------------------------------
           RESET & VARIABLES
        ------------------------------------------------------- */
        :root {
            --color-blue: #0057FF;
            --color-bg: #0B0E14;
            --color-card-bg: #12161f;
            --color-white: #FFFFFF;
            
            --font-head: 'League Gothic', sans-serif;
            --font-body: 'Inter', sans-serif;
            
            --container-width: 1000px;
            --padding-mobile: 24px;
        }

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

        html {
            background-color: #0B0E14;
        }

        body {
            background-color: var(--color-bg);
            color: var(--color-white);
            font-family: var(--font-body);
            overflow-x: hidden;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }

        /* -------------------------------------------------------
           LINK STYLES (GLOBAL BODY)
        ------------------------------------------------------- */
        p a {
            color: var(--color-white);
            text-decoration: underline;
            text-decoration-color: var(--color-blue);
            text-underline-offset: 3px;
            font-weight: 600;
            transition: all 0.2s ease;
        }

        p a:hover {
            color: var(--color-blue);
            text-decoration-color: var(--color-white);
        }

        /* -------------------------------------------------------
           HEADER / NAV
        ------------------------------------------------------- */
        header {
            position: absolute;
            top: 0;
            width: 100%;
            z-index: 10;
            padding: 20px 0;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .logo-img {
            height: 30px;
            width: auto;
            display: block;
        }

        /* Mobile Status Pill (Hidden on Desktop) */
        .status-pill {
            display: none; /* Enabled in media query */
            align-items: center;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid #FFFFFF;
            border-radius: 50px;
            padding: 8px 16px;
            gap: 10px;
            margin-top: 0;
        }

        .status-pill span {
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 0.9rem;
            color: #fff;
            letter-spacing: 0.5px;
        }

        /* Red Pulsing Dot */
        .status-dot {
            width: 8px;
            height: 8px;
            background-color: #FF3B30; /* iOS System Red */
            border-radius: 50%;
            box-shadow: 0 0 5px #FF3B30;
            animation: pulse-red 2s infinite ease-in-out;
        }

        @keyframes pulse-red {
            0% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 rgba(255, 59, 48, 0.7); }
            50% { opacity: 0.6; transform: scale(0.9); box-shadow: 0 0 10px rgba(255, 59, 48, 0); }
            100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 rgba(255, 59, 48, 0.7); }
        }

        /* -------------------------------------------------------
           HERO SECTION
        ------------------------------------------------------- */
        .hero {
            position: relative;
            min-height: 95vh; 
            display: flex;
            align-items: flex-end; 
            justify-content: center;
            text-align: center;
            padding-bottom: 80px; 
            overflow: hidden;
            background: 
                linear-gradient(to bottom, rgba(157, 0, 255, 0.0) 0%, rgba(11, 14, 20, 0.2) 50%, rgba(11, 14, 20, 1) 95%),
                url('images/hero_image.png') center 35% / cover no-repeat; 
        }

        .hero-content {
            position: relative;
            z-index: 5;
            max-width: 900px;
            padding: 0 20px;
        }

        .hero h1 {
            font-family: var(--font-head);
            font-size: clamp(4.5rem, 10vw, 9rem);
            margin-bottom: 25px;
            line-height: 0.8;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #fff;
            text-shadow: 0 10px 40px rgba(0,0,0,0.9);
        }
        
        .hero-sub {
            font-size: 1.1rem;
            margin-bottom: 10px;
            color: #FFFFFF;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            text-shadow: 0 2px 10px rgba(0,0,0,0.8);
        }

        .hero p {
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 30px auto;
            color: rgba(255,255,255,0.8);
            font-weight: 300;
            text-shadow: 0 10px 40px rgba(0,0,0,0.9);
        }

        /* -------------------------------------------------------
           BUTTONS
        ------------------------------------------------------- */
        .btn-primary {
            display: inline-block;
            background-color: var(--color-blue);
            color: white;
            padding: 20px 50px;
            font-family: var(--font-head);
            font-size: 2.1rem;
            text-decoration: none;
            text-transform: uppercase;
            border-radius: 4px;
            position: relative;
            overflow: hidden;
            transition: transform 0.2s ease;
            letter-spacing: 2px;
            box-shadow: 0 0 30px rgba(0, 87, 255, 0.5);
            border: 1px solid rgba(255,255,255,0.2);
            line-height: 1;
            cursor: pointer;
            width: auto;
        }

        .btn-primary::after {
            content: '';
            position: absolute;
            top: 0; left: -100%; width: 50%; height: 100%;
            background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.6), transparent);
            transform: skewX(-25deg);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { left: -100%; }
            20% { left: 200%; }
            100% { left: 200%; }
        }

        .btn-primary:hover {
            transform: scale(1.05);
            box-shadow: 0 0 60px rgba(0, 87, 255, 0.8);
        }

        /* -------------------------------------------------------
           SECTIONS GENERAL
        ------------------------------------------------------- */
        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 var(--padding-mobile);
            position: relative;
            z-index: 2;
        }

        section {
            padding: 50px 0; 
            position: relative;
            z-index: 2;
        }

        .section-title {
            font-family: var(--font-head);
            font-size: 3.8rem; 
            line-height: 0.9;
            margin-bottom: 1.5rem;
            text-align: center;
            text-transform: uppercase;
            color: white;
            letter-spacing: 1px;
        }

        .section-intro {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 50px auto;
            font-size: 1.18rem;
            color: var(--color-white);
            line-height: 1.6;
        }

        .highlight-text {
            color: var(--color-white);
            font-weight: 600;
        }

        /* -------------------------------------------------------
           PREMIUM CARDS (HOW TO WIN)
        ------------------------------------------------------- */
        .entry-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
            margin-bottom: 50px;
        }

        .premium-card {
            flex: 1 1 280px;
            max-width: 350px;
            width: 100%;
            position: relative;
            background: var(--color-card-bg);
            padding: 40px 30px;
            border-radius: 16px;
            overflow: hidden;
            transition: transform 0.3s ease;
            box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .premium-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 40px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(0, 87, 255, 0.5);
        }

        .entry-icon { 
            font-size: 2.35rem; 
            filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
            margin-bottom: 15px;
        }

        .premium-card h3 {
            font-family: var(--font-head);
            font-size: 2.35rem;
            margin: 0 0 10px 0;
            text-transform: uppercase;
            letter-spacing: 1px;
            line-height: 1;
        }
        
        .card-text {
            display: flex;
            flex-direction: column;
        }

        /* -------------------------------------------------------
           PROMO CODE SECTION
        ------------------------------------------------------- */
        .promo-container {
            background: radial-gradient(circle at center, #1a1f2e 0%, #0B0E14 70%);
            border-top: 1px solid #222;
            border-bottom: 1px solid #222;
            text-align: center;
            padding: 80px 0;
        }

        .promo-box {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            background: rgba(0,0,0,0.5);
            border: 1px dashed var(--color-blue);
            padding: 15px 30px;
            border-radius: 8px;
            margin-top: 30px;
            cursor: pointer;
            transition: 0.2s;
        }
        .promo-box:hover { background: rgba(0, 87, 255, 0.1); border-color: #fff; }
        .promo-code { 
            font-family: monospace; 
            font-size: 1.9rem; 
            color: var(--color-blue); 
            font-weight: bold; 
            letter-spacing: 2px; 
        }
        .copy-hint { font-size: 0.8rem; text-transform: uppercase; color: #666; margin-left: 10px; }

        /* -------------------------------------------------------
           HOW IT WORKS SECTION
        ------------------------------------------------------- */
        .how-it-works { text-align: center; padding: 80px 0; }
        .steps-row { display: flex; justify-content: space-between; gap: 20px; margin-top: 40px; flex-wrap: wrap; }
        .step-item { flex: 1; min-width: 200px; text-align: left; padding: 20px; }
        .step-num { 
            font-family: var(--font-head); 
            font-size: 2.85rem; 
            color: var(--color-blue); 
            opacity: 0.5; 
            line-height: 1; 
            margin-bottom: 10px; 
        }
        .step-title { font-weight: 700; margin-bottom: 10px; font-size: 1.1rem; text-transform: uppercase; }
        .step-desc { font-size: 0.9rem; color: #aaa; line-height: 1.5; }

        /* -------------------------------------------------------
           TICKER TAPE
        ------------------------------------------------------- */
        .ticker-wrap { width: 100%; overflow: hidden; background-color: #000000; color: #FFFFFF; padding: 12px 0; position: relative; z-index: 20; border-top: 1px solid rgba(255, 255, 255, 0.15); border-bottom: 1px solid rgba(255, 255, 255, 0.15); white-space: nowrap; }
        .ticker { display: inline-block; animation: marquee 30s linear infinite; }
        .ticker-diff { animation-duration: 35s; }
        .ticker-item { display: inline-block; font-family: var(--font-body); font-weight: 300; font-size: 1rem; text-transform: uppercase; padding: 0 40px; letter-spacing: 1px; vertical-align: middle; }
        .ticker-item::after { content: "•"; position: absolute; right: 15px; color: #444; }
        @keyframes marquee { 0% { transform: translate3d(0, 0, 0); } 100% { transform: translate3d(-50%, 0, 0); } }

        footer { text-align: center; padding: 40px; font-size: 0.8rem; color: #555; background: #000; }
        
        /* FOOTER LOGO */
        .footer-logo {
            height: 24px;
            width: auto;
            margin-bottom: 10px;
        }

        .section-cta {
            text-align: center;
            margin-top: 20px;
        }

        .cta-announce {
            display: none; /* Desktop hidden */
        }

        .winners-text {
            font-size: 0.85rem;
            color: #666;
            margin-top: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .winners-text a {
            color: inherit;
            text-decoration: underline;
            text-decoration-color: rgba(255, 255, 255, 0.2);
            text-underline-offset: 2px;
            font-weight: 400;
        }
        
        .winners-text a:hover {
            color: #fff;
            text-decoration-color: #fff;
        }

        /* -------------------------------------------------------
           MOBILE OVERHAUL
        ------------------------------------------------------- */
        @media (max-width: 768px) {
            
            /* 1. HIDE EXTRANEOUS SECTIONS */
            .ticker-wrap,
            .promo-container,
            .how-it-works {
                display: none !important;
            }

            /* 2. HEADER & PILL */
            header {
                display: flex; 
                top: 0;
                padding-top: 10px; 
                align-items: flex-start;
            }
            .logo-img { display: none; }
            /* Moved Pill Up further */
            .status-pill { display: flex; margin-top: 10px; } 

            .status-pill span {
                font-size: 0.8rem; /* Reduced from 0.9rem */
            }
            
            /* 3. HERO ADJUSTMENT */
            .hero {
                min-height: 360px; 
                
                /* CHANGED: Increased from 75px to 85px to lift text */
                padding: 0 0 0px 0;
                
                background: 
                    linear-gradient(to bottom, transparent 0%, transparent 30%, #0B0E14 100%),
                    url('images/mobile_small.png') center top / cover no-repeat;
                
                align-items: flex-end;
                text-align: center;
                background-position: center top;
            }

            /* MOVED TEXT DOWN +5px */
            .hero-content {
                padding: 25px var(--padding-mobile) 0 var(--padding-mobile);
                max-width: 100%;
                width: 100%;
            }

            .hero .btn-primary { display: none; }

            .hero-sub {
                /* Reverted to 0.8rem */
                font-size: 0.8rem; 
                color: #FFFFFF;
                margin-bottom: 5px;
                text-shadow: 0 2px 4px rgba(0,0,0,0.9);
            }

            .hero h1 {
                /* Reverted to 13vw */
                font-size: 13vw; 
                line-height: 0.9;
                margin-bottom: 0;
                white-space: nowrap; 
            }
            
            .hero p { 
                display: block; 
                color: #ffffff;
                font-size: .78rem; 
                margin-top: 5px;
                line-height: 1.2;
                text-shadow: 0 2px 4px rgba(0,0,0,0.9);
                padding-bottom: 10px; 
            }

            /* 4. LIST VIEW */
            section { 
                padding: 0 0 20px 0; /* Remove top padding */
                /* CHANGED: Increased from -35px to -45px to pull cards up */
                margin-top: -10px;   
                position: relative;
                z-index: 6;          /* Ensures it sits above Hero bg */
            }
            
            .section-title { 
                display: block !important; 
                text-align: center;
                
                font-family: var(--font-head);
                font-weight: 400; 
                font-size: 2rem; 
                margin-bottom: 15px; 
            }

            .section-intro { display: none; }
            .container { padding: 0 var(--padding-mobile); }

            .entry-grid {
                flex-direction: column;
                gap: 15px; 
                margin-bottom: 15px; 
                align-items: stretch;
            }

            .premium-card {
                flex-direction: row;
                max-width: 100%;
                background: transparent;
                box-shadow: none;
                padding: 0;
                border-radius: 0;
                align-items: flex-start;
                justify-content: flex-start; /* Force left alignment */
                text-align: left;
                min-height: 0;
                flex: 1 1 75px; 
            }

            .premium-card:hover { transform: none; box-shadow: none; }
            .premium-card::before { display: none; }

            .entry-icon {
                font-size: 1.5rem;
                margin: 0 16px 0 0;
                background: rgba(0, 87, 255, 0.15);
                color: var(--color-blue);
                width: 48px;
                height: 48px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                flex-shrink: 0;
                filter: none;
            }

            .card-text { padding-top: 2px; }

            .premium-card h3 {
                font-family: var(--font-body);
                font-weight: 700;
                font-size: 0.95rem; 
                margin-bottom: 4px;
                text-transform: none;
                letter-spacing: 0;
            }
            
            .premium-card p {
                font-size: 0.78rem; 
                color: #aaa;
                line-height: 1.4;
            }
            
            .premium-card p:nth-child(3) { display: none; } 

            /* CTA TIGHTENING */
            .section-cta {
                padding-bottom: 10px;
                padding-top: 0;
            }

            .cta-announce {
                display: block;
                color: #ffffff;
                font-size: 0.94rem;
                margin-bottom: 8px; 
                font-weight: 400;
            }

            .btn-primary {
                width: 100%;
                text-align: center;
                font-size: 1.25rem; 
                padding: 18px 0;
                border-radius: 4px;
                background-color: #ff0305;
                box-shadow: 0 0 30px rgba(255, 3, 5, 0.4);
                border: 1px solid rgba(255,255,255,0.2);
            }
            
            .btn-primary:hover {
                 box-shadow: 0 0 50px rgba(255, 3, 5, 0.6);
            }

            .winners-text {
                font-size: 0.72rem;
                line-height: 1.3;
                margin-top: 10px;
            }

            footer {
                display: block !important; 
                padding: 10px 0; /* Tighter footer */
                margin-bottom: 20px;
            }
        }