        :root {
            --bg-dark: #030308;
            --bg-card: rgba(20, 18, 36, 0.38);
            --accent-purple: #a855f7;
            --accent-cyan: #22d3ee;
            --accent-magenta: #e879f9;
            --text-main: #ffffff;
            --text-dim: #94a3b8;
            --grad-purple: linear-gradient(90deg, #9333ea, #db2777);
            --border-color: rgba(255, 255, 255, 0.15);
            --font-display: 'Chakra Petch', sans-serif;
            --bg-glass: rgba(14, 12, 26, 0.18);
        }

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

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-dark);
            background-image:
                radial-gradient(circle at 15% 20%, rgba(168, 85, 247, 0.20) 0%, transparent 45%),
                radial-gradient(circle at 85% 15%, rgba(34, 211, 238, 0.18) 0%, transparent 45%),
                radial-gradient(circle at 50% 85%, rgba(232, 121, 249, 0.15) 0%, transparent 50%),
                linear-gradient(135deg, #05050c 0%, #0a0a16 45%, #0c0818 100%);
            background-attachment: fixed;
            background-size: 200% 200%, 200% 200%, 200% 200%, 100% 100%;
            animation: gradientShift 22s ease infinite;
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 0%, 100% 0%, 50% 100%, 0 0; }
            50% { background-position: 100% 100%, 0% 100%, 50% 0%, 0 0; }
            100% { background-position: 0% 0%, 100% 0%, 50% 100%, 0 0; }
        }

        /* --- SCROLL "LOADING" EFFECT --- */
        #scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            width: 0%;
            background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple), var(--accent-magenta));
            box-shadow: 0 0 14px rgba(34, 211, 238, 0.7), 0 0 26px rgba(232, 121, 249, 0.4);
            z-index: 2000;
            transition: width 0.12s linear;
        }

        #scan-overlay {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 1500;
            opacity: 0;
            background: repeating-linear-gradient(
                to bottom,
                rgba(34, 211, 238, 0.05) 0px,
                rgba(34, 211, 238, 0.05) 1px,
                transparent 1px,
                transparent 4px
            );
            mix-blend-mode: screen;
            transition: opacity 0.3s ease;
        }

        body.is-scrolling #scan-overlay { opacity: 1; }
        body.is-scrolling .container { filter: brightness(1.08) contrast(1.02); }
        .container { transition: filter 0.3s ease; }

        @media (prefers-reduced-motion: reduce) {
            #scan-overlay { display: none; }
            body.is-scrolling .container { filter: none; }
        }

        /* --- BACKGROUND EFFECTS --- */
        #mouse-glow {
            position: fixed;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(34, 211, 238, 0.18) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 1;
            transform: translate(-50%, -50%);
        }

        .bg-elements {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            pointer-events: none;
            z-index: 0;
            opacity: 0.6;
        }

        .floating-icon {
            position: absolute;
            font-size: 2rem;
            color: rgba(255, 255, 255, 0.5);
            filter: drop-shadow(0 0 12px rgba(34, 211, 238, 0.6));
            --tilt: 0deg;
            animation: floatAround 25s infinite ease-in-out;
            user-select: none;
        }

        @keyframes floatAround {
            0%, 100% { transform: translate(0, 0) rotate(var(--tilt)) scale(1); }
            50% { transform: translate(8px, -10px) rotate(calc(var(--tilt) + 5deg)) scale(1.03); }
        }

        h1, h2, h3, .logo-text {
            font-family: var(--font-display);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            text-shadow: 0 0 24px rgba(34, 211, 238, 0.18);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 10;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            position: sticky;
            top: 0;
            background: rgba(5, 5, 12, 0.55);
            backdrop-filter: blur(18px) saturate(160%);
            -webkit-backdrop-filter: blur(18px) saturate(160%);
            z-index: 1000;
            border-bottom: 1px solid var(--border-color);
            flex-wrap: wrap;
            row-gap: 15px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 16px;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.25rem;
            letter-spacing: 1px;
            color: var(--accent-cyan);
            text-decoration: none;
        }

        /* Bare, frameless badge so only the transparent logo itself is visible */
        .logo-badge {
            width: 58px;
            height: 58px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            border: none;
            box-shadow: none;
            transition: transform 0.25s ease;
        }

        .logo:hover .logo-badge {
            transform: translateY(-2px) scale(1.06);
        }

        .logo-emoji {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
            filter: drop-shadow(0 0 10px rgba(34, 211, 238, 0.55));
        }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dim);
            font-size: 0.9rem;
            transition: color 0.3s;
        }

        .nav-links a:hover { color: white; }

        .btn-join {
            background: var(--grad-purple);
            color: white;
            padding: 10px 25px;
            border-radius: 8px;
            text-decoration: none;
            font-family: var(--font-display);
            font-weight: 600;
            letter-spacing: 0.5px;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .btn-join:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 25px rgba(168, 85, 247, 0.7);
        }

        .hero {
            text-align: center;
            padding: 140px 0;
        }

        .hero-tag {
            background: rgba(168, 85, 247, 0.15);
            border: 1px solid rgba(168, 85, 247, 0.4);
            color: var(--accent-purple);
            padding: 6px 18px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-family: var(--font-display);
            font-weight: 600;
            letter-spacing: 1px;
            display: inline-block;
            margin-bottom: 25px;
        }

        .hero h1 { font-size: 4.8rem; line-height: 1; margin-bottom: 25px; }
        .text-gradient-cyan { background: linear-gradient(90deg, var(--accent-cyan), #fff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .text-gradient-pink { background: linear-gradient(90deg, var(--accent-magenta), #fff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        
        .hero p { max-width: 700px; margin: 0 auto 45px; color: var(--text-dim); font-size: 1.15rem; }

        .stats-bar { display: flex; justify-content: center; gap: 45px; margin-top: 90px; color: var(--text-dim); font-size: 0.95rem; }
        .stats-bar i { color: var(--accent-cyan); margin-right: 10px; }

        .divisions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-bottom: 100px;
        }

        .card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            padding: 35px;
            border-radius: 15px;
            position: relative;
            backdrop-filter: blur(18px) saturate(160%);
            -webkit-backdrop-filter: blur(18px) saturate(160%);
            transition: all 0.3s ease-out;
            overflow: hidden;
        }

        .card:hover { border-color: var(--accent-cyan); transform: translateY(-8px); box-shadow: 0 15px 40px rgba(34, 211, 238, 0.15); }
        .status-bar { height: 4px; width: 45px; position: absolute; top: 35px; right: 35px; border-radius: 2px; }

        .card.tier-elite { border-color: rgba(219, 39, 119, 0.45); box-shadow: 0 0 40px rgba(168, 85, 247, 0.18); }
        .card.tier-elite:hover { box-shadow: 0 15px 50px rgba(219, 39, 119, 0.3); }

        .btn-outline {
            background: rgba(255, 255, 255, 0.03);
            color: var(--text-main);
            border: 1px solid var(--border-color);
            padding: 18px 45px;
            border-radius: 8px;
            text-decoration: none;
            font-family: var(--font-display);
            font-weight: 600;
            letter-spacing: 0.5px;
            font-size: 0.85rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.25s ease;
            backdrop-filter: blur(10px);
        }
        .btn-outline:hover { border-color: var(--accent-cyan); color: var(--accent-cyan); background: rgba(34, 211, 238, 0.08); transform: translateY(-2px); }

        .form-container {
            max-width: 650px;
            margin: 120px auto;
            background: var(--bg-glass);
            padding: 60px;
            border: 1px solid rgba(34, 211, 238, 0.3);
            backdrop-filter: blur(26px) saturate(170%);
            -webkit-backdrop-filter: blur(26px) saturate(170%);
            border-radius: 24px;
            box-shadow: 0 0 50px rgba(168, 85, 247, 0.12);
            position: relative;
            overflow: hidden;
        }
        .form-container::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple), var(--accent-magenta));
        }
        .form-container.compact { max-width: 650px; margin: 0 auto; padding: 45px; }
        input, select, textarea { width: 100%; background: rgba(0,0,0,0.35); border: 1px solid var(--border-color); padding: 14px; border-radius: 10px; color: white; margin-bottom: 20px; font-family: 'Inter', sans-serif; }
        input:focus, select:focus, textarea:focus { outline: none; border-color: var(--accent-cyan); }
        .btn-submit { width: 100%; background: var(--grad-purple); border: none; padding: 18px; border-radius: 10px; color: white; font-family: var(--font-display); cursor: pointer; font-weight: 700; letter-spacing: 1px; transition: opacity 0.2s, transform 0.2s; }
        .btn-submit:hover { transform: translateY(-2px); box-shadow: 0 0 25px rgba(168, 85, 247, 0.5); }
        .btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

        .form-status { margin-top: 16px; font-size: 0.85rem; text-align: center; min-height: 20px; }
        .form-status.success { color: #4ade80; }
        .form-status.error { color: #f87171; }
        .form-status.pending { color: var(--text-dim); }

        .or-divider { display: flex; align-items: center; gap: 15px; margin: 30px 0; color: var(--text-dim); font-size: 0.8rem; letter-spacing: 1px; }
        .or-divider::before, .or-divider::after { content: ''; flex: 1; height: 1px; background: var(--border-color); }

        footer { border-top: 1px solid var(--border-color); padding: 100px 0 50px; margin-top: 150px; background: rgba(4, 4, 10, 0.35); backdrop-filter: blur(20px) saturate(150%); -webkit-backdrop-filter: blur(20px) saturate(150%); }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 80px; }
        .footer-col h4 { margin-bottom: 25px; font-size: 0.95rem; color: var(--accent-cyan); }
        .footer-col ul li { margin-bottom: 12px; list-style: none; }
        .footer-col a { text-decoration: none; color: var(--text-dim); font-size: 0.9rem; transition: 0.3s; }
        .footer-col a:hover { color: white; padding-left: 8px; }
        
        .socials { display: flex; align-items: center; gap: 20px; margin-top: 30px; }
        .socials a { color: var(--text-dim); font-size: 1.5rem; line-height: 1; display: inline-flex; align-items: center; justify-content: center; text-decoration: none; transition: 0.3s; }
        .socials a:hover { color: var(--accent-cyan); transform: translateY(-5px) scale(1.1); filter: drop-shadow(0 0 10px var(--accent-cyan)); }

        /* --- SCROLL REVEAL --- */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s cubic-bezier(.16,.8,.3,1), transform 0.8s cubic-bezier(.16,.8,.3,1);
        }
        .reveal.is-visible { opacity: 1; transform: translateY(0); }

        @media (prefers-reduced-motion: reduce) {
            .reveal { transition: none; opacity: 1; transform: none; }
            .floating-icon, body { animation: none !important; }
        }

        /* --- SUB-PAGE HERO (About, Rosters, Team List, Merch, Partners, Join) --- */
        .page-hero { text-align: center; padding: 80px 0 30px; }
        .page-hero .hero-tag { margin-bottom: 20px; }
        .page-hero h1 { font-size: 3rem; margin-bottom: 15px; }
        .page-hero p { max-width: 650px; margin: 0 auto; color: var(--text-dim); font-size: 1.05rem; }

        /* --- ROUTER: one "page" visible at a time, same index.html --- */
        .page { display: none; }
        .page.active { display: block; }

        .roster-card.founder { border-color: rgba(232, 121, 249, 0.4); }
        .roster-card.founder .roster-role { color: var(--accent-magenta); }

        .nav-links a.active { color: white; }

        /* --- SECTION HEADING (shared) --- */
        .section-heading { text-align: center; max-width: 650px; margin: 0 auto 60px; }
        .section-heading .hero-tag { margin-bottom: 20px; }
        .section-heading h2 { font-size: 2.4rem; margin-bottom: 15px; }
        .section-heading p { color: var(--text-dim); font-size: 1rem; }
        section[id] { scroll-margin-top: 100px; }

        /* --- ABOUT --- */
        .about-section { margin: 160px 0; }
        .about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: start; }
        .about-copy p { color: var(--text-dim); margin-bottom: 20px; font-size: 1.05rem; }
        .about-copy strong { color: var(--text-main); }
        .pillars { display: flex; flex-direction: column; gap: 18px; }
        .pillar { background: var(--bg-card); border: 1px solid var(--border-color); border-left: 3px solid var(--accent-cyan); border-radius: 12px; padding: 22px 26px; backdrop-filter: blur(18px) saturate(160%); -webkit-backdrop-filter: blur(18px) saturate(160%); }
        .pillar:nth-child(2) { border-left-color: var(--accent-purple); }
        .pillar:nth-child(3) { border-left-color: var(--accent-magenta); }
        .pillar h4 { font-family: var(--font-display); font-weight: 600; font-size: 0.85rem; letter-spacing: 1px; margin-bottom: 8px; color: var(--text-main); }
        .pillar p { color: var(--text-dim); font-size: 0.9rem; }

        /* --- ROSTER --- */
        .roster-section { margin: 160px 0; }
        .roster-group { margin-bottom: 50px; }
        .roster-group-title { font-size: 0.85rem; color: var(--accent-cyan); letter-spacing: 2px; margin-bottom: 20px; font-family: var(--font-display); font-weight: 600; }
        .roster-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
        .roster-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 14px; padding: 24px; display: flex; align-items: center; gap: 16px; backdrop-filter: blur(18px) saturate(160%); -webkit-backdrop-filter: blur(18px) saturate(160%); transition: all 0.3s ease; }
        .roster-card:hover { border-color: var(--accent-cyan); transform: translateY(-5px); }
        .roster-flag { width: 32px; height: 24px; object-fit: cover; border-radius: 4px; border: 1px solid var(--border-color); flex-shrink: 0; filter: drop-shadow(0 0 8px rgba(0,0,0,0.4)); }
        .roster-name { font-weight: 600; font-size: 1rem; margin-bottom: 4px; }
        .roster-role { font-size: 0.75rem; color: var(--accent-cyan); text-transform: uppercase; letter-spacing: 0.5px; }
        .roster-country { font-size: 0.75rem; color: var(--text-dim); margin-top: 2px; }
        .roster-placeholder { border: 1px dashed var(--border-color); border-radius: 14px; padding: 24px; display: flex; align-items: center; justify-content: center; text-align: center; color: var(--text-dim); font-size: 0.85rem; min-height: 88px; }

        /* --- MERCH --- */
        .merch-section { margin: 160px 0; }
        .merch-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 55px; align-items: center; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 25px; padding: 50px; backdrop-filter: blur(18px) saturate(160%); -webkit-backdrop-filter: blur(18px) saturate(160%); }
        .merch-image { width: 100%; border-radius: 16px; display: block; box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
        .merch-copy h3 { font-size: 1.8rem; margin-bottom: 18px; }
        .merch-copy p { color: var(--text-dim); margin-bottom: 30px; font-size: 1rem; }
        .merch-tag { display: inline-block; background: rgba(34, 211, 238, 0.12); border: 1px solid rgba(34, 211, 238, 0.35); color: var(--accent-cyan); padding: 5px 14px; border-radius: 20px; font-size: 0.75rem; font-family: var(--font-display); font-weight: 600; margin-bottom: 20px; letter-spacing: 0.5px; }

        /* --- PARTNERSHIPS --- */
        .partners-section { margin: 160px 0; }
        .partner-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 18px; padding: 32px; display: flex; align-items: center; gap: 24px; backdrop-filter: blur(18px) saturate(160%); -webkit-backdrop-filter: blur(18px) saturate(160%); margin-bottom: 45px; flex-wrap: wrap; }
        .partner-logo { width: 68px; height: 68px; border-radius: 14px; object-fit: cover; flex-shrink: 0; border: 1px solid var(--border-color); }
        .partner-info { flex: 1; min-width: 220px; }
        .partner-info h4 { font-size: 1.1rem; margin-bottom: 6px; }
        .partner-info p { color: var(--text-dim); font-size: 0.9rem; }
        .partner-links { display: flex; gap: 12px; flex-wrap: wrap; }
        .partner-links a { text-decoration: none; }

        /* --- DISCOUNT PROMO CARD --- */
        .discount-card {
            position: relative;
            display: flex;
            align-items: center;
            gap: 45px;
            background: var(--bg-glass);
            border: 1px solid rgba(232, 121, 249, 0.35);
            clip-path: polygon(30px 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0 30px);
            padding: 45px 50px;
            margin-bottom: 45px;
            backdrop-filter: blur(22px) saturate(170%);
            -webkit-backdrop-filter: blur(22px) saturate(170%);
            box-shadow: 0 0 50px rgba(232, 121, 249, 0.12);
            animation: discountPulse 4.5s ease-in-out infinite;
        }
        @keyframes discountPulse {
            0%, 100% { box-shadow: 0 0 50px rgba(232, 121, 249, 0.12); border-color: rgba(232, 121, 249, 0.35); }
            50% { box-shadow: 0 0 65px rgba(34, 211, 238, 0.2); border-color: rgba(34, 211, 238, 0.45); }
        }
        .discount-left { flex: 1.3; min-width: 240px; }
        .discount-eyebrow { font-family: var(--font-display); font-weight: 600; font-size: 0.75rem; letter-spacing: 2px; color: var(--accent-magenta); display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px; }
        .discount-title { font-size: 3rem; line-height: 1; margin-bottom: 16px; background: linear-gradient(90deg, var(--accent-cyan), var(--accent-magenta)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .discount-title span { font-size: 1.4rem; letter-spacing: 1px; }
        .discount-copy { color: var(--text-dim); font-size: 0.95rem; max-width: 420px; }
        .discount-divider { width: 1px; align-self: stretch; background: repeating-linear-gradient(to bottom, var(--border-color) 0 8px, transparent 8px 16px); }
        .discount-right { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 12px; min-width: 180px; }
        .discount-label { font-family: var(--font-display); font-weight: 600; font-size: 0.7rem; letter-spacing: 2px; color: var(--text-dim); }
        .discount-code {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.3rem;
            letter-spacing: 3px;
            background: rgba(0, 0, 0, 0.35);
            border: 1px dashed var(--accent-cyan);
            color: white;
            padding: 14px 26px;
            border-radius: 10px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: all 0.25s ease;
        }
        .discount-code:hover { background: rgba(34, 211, 238, 0.12); box-shadow: 0 0 25px rgba(34, 211, 238, 0.35); transform: translateY(-2px); }
        .discount-hint { font-size: 0.75rem; color: var(--text-dim); }

        @media (max-width: 900px) {
            .discount-card { flex-direction: column; text-align: center; padding: 40px 30px; }
            .discount-divider { width: 60%; height: 1px; background: repeating-linear-gradient(to right, var(--border-color) 0 8px, transparent 8px 16px); }
            .discount-left, .discount-right { align-items: center; }
        }

        /* --- SOCIALS SVG --- */
        .socials svg { width: 1.5rem; height: 1.5rem; fill: currentColor; display: block; }

        @media (max-width: 900px) {
            .hero h1 { font-size: 3rem; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .about-grid, .merch-grid { grid-template-columns: 1fr; }
            .merch-image { max-width: 320px; margin: 0 auto; }
            nav { flex-direction: column; align-items: center; }
            .nav-links { order: 3; width: 100%; justify-content: center; flex-wrap: wrap; gap: 12px 20px; }
            .partner-card { flex-direction: column; text-align: center; }
            .partner-links { justify-content: center; }
        }

/* premium overrides */
.navbar, nav{padding:20px 48px!important;min-height:110px!important}
nav img.logo-emoji,.logo img.logo-emoji{width:100%!important;height:100%!important}
.nav-links,.nav-menu{gap:36px!important}
.cta,.join-btn,.btn-primary{padding:18px 30px!important;border-radius:16px!important}
body{font-family:'Sora',sans-serif!important}
.reveal{opacity:0;transform:translateY(60px) scale(.94);filter:blur(10px);transition:all .8s cubic-bezier(.22,1,.36,1)}
.reveal.is-visible{opacity:1;transform:none;filter:none}
nav.scrolled{min-height:88px!important;padding:14px 40px!important;backdrop-filter:blur(20px)}
