        /* =====================
           TOKENS
        ===================== */
        :root {
            --cryo-blue: #00d4ff;
            --obsidian: #02060c;
            --glass: rgba(15, 23, 42, 0.85);
            --border: rgba(0, 212, 255, 0.18);
            --text-glow: rgba(0, 212, 255, 0.45);
            --accent-gold: #f59e0b;
            --accent-red: #ff4d4d;
            --accent-green: #22c55e;
            --accent-olive: #84cc16;
            --nav-h: 72px;
        }

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

        html {
            scroll-behavior: smooth;
            scroll-padding-top: var(--nav-h);
        }

        body {
            background-color: var(--obsidian);
            color: #e2e8f0;
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
        }

        /* =====================
           LOADING SCREEN
        ===================== */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--obsidian);
            z-index: 10000;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 32px;
            transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }

        .loading-screen.fade-out {
            opacity: 0;
            visibility: hidden;
        }

        .loading-logo {
            text-align: center;
            animation: pulseGlow 2s ease-in-out infinite;
        }

        .loading-logo .brand-cryo {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(2.5rem, 10vw, 5rem);
            font-weight: 900;
            background: linear-gradient(135deg, #ffffff 20%, #a8daff 60%, var(--cryo-blue) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 8px;
            text-transform: uppercase;
        }

        .loading-logo .brand-sub {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.7rem;
            letter-spacing: 6px;
            color: var(--cryo-blue);
            text-transform: uppercase;
            margin-top: 8px;
            display: block;
            opacity: 0.8;
        }

        .loading-spinner {
            width: 48px;
            height: 48px;
            border: 3px solid rgba(0, 212, 255, 0.1);
            border-top: 3px solid var(--cryo-blue);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes pulseGlow {
            0%, 100% { text-shadow: 0 0 0px rgba(0,212,255,0); }
            50% { text-shadow: 0 0 20px rgba(0,212,255,0.5); }
        }

        .loading-text {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.65rem;
            letter-spacing: 4px;
            color: #94a3b8;
            text-transform: uppercase;
        }

        /* =====================
           PARTICLES BG
        ===================== */
        #particles-js {
            position: fixed;
            inset: 0;
            z-index: -1;
            background: radial-gradient(ellipse at 50% 0%, #05162d 0%, #02060c 70%);
        }

        /* =====================
           SKIP LINK
        ===================== */
        .skip-link {
            position: absolute;
            top: -100px;
            left: 12px;
            background: var(--cryo-blue);
            color: #000;
            padding: 8px 18px;
            border-radius: 2px;
            font-family: 'Orbitron', sans-serif;
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 2px;
            z-index: 9999;
            transition: top 0.3s;
            text-decoration: none;
        }
        .skip-link:focus { top: 12px; }

        /* =====================
           TYPOGRAPHY HELPERS
        ===================== */
        .orbitron {
            font-family: 'Orbitron', sans-serif;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        /* =====================
           HEADER / NAV
        ===================== */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            height: var(--nav-h);
            z-index: 1000;
            background: rgba(2, 6, 12, 0.96);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border-bottom: 1px solid var(--border);
            display: flex;
            justify-content: center;
        }

        .nav-container {
            width: 92%;
            max-width: 1480px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
        }

        /* Brand */
        .brand-identity {
            text-decoration: none;
            display: flex;
            flex-direction: column;
            flex-shrink: 0;
            gap: 2px;
        }
        .brand-identity .brand-name {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(1.25rem, 2.8vw, 1.75rem);
            font-weight: 900;
            color: #fff;
            text-shadow: 0 0 18px var(--text-glow);
            letter-spacing: 5px;
            line-height: 1;
            text-transform: uppercase;
        }
        .brand-identity .brand-sub {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.5rem;
            color: var(--cryo-blue);
            letter-spacing: 4px;
            font-weight: 600;
            text-transform: uppercase;
        }

        /* Desktop nav links */
        .nav-links {
            display: flex;
            list-style: none;
            gap: 28px;
            align-items: center;
        }
        .nav-link {
            text-decoration: none;
            color: #94a3b8;
            font-family: 'Orbitron', sans-serif;
            font-size: 0.68rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: color 0.25s;
            position: relative;
            padding: 4px 0;
            white-space: nowrap;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--cryo-blue);
            transition: width 0.3s ease;
        }
        .nav-link:hover,
        .nav-link.active { color: var(--cryo-blue); }
        .nav-link:hover::after,
        .nav-link.active::after { width: 100%; }

        /* Portal button */
        .btn-portal {
            background: transparent;
            border: 1px solid var(--cryo-blue);
            color: var(--cryo-blue);
            padding: 10px 24px;
            border-radius: 2px;
            text-decoration: none;
            font-family: 'Orbitron', sans-serif;
            font-size: 0.62rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: background 0.25s, color 0.25s, box-shadow 0.25s;
            white-space: nowrap;
            flex-shrink: 0;
        }
        .btn-portal:hover {
            background: var(--cryo-blue);
            color: #000;
            box-shadow: 0 0 22px var(--text-glow);
        }

        /* Hamburger */
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            cursor: pointer;
            padding: 10px 8px;
            border: none;
            background: transparent;
            z-index: 1100;
            flex-shrink: 0;
            min-width: 44px;
            min-height: 44px;
        }
        .hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--cryo-blue);
            border-radius: 2px;
            transition: transform 0.32s ease, opacity 0.32s ease;
            transform-origin: center;
        }
        .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
        .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        /* Mobile nav drawer */
        .mobile-nav {
            position: fixed;
            top: var(--nav-h);
            left: 0;
            right: 0;
            background: rgba(2, 6, 12, 0.99);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border-bottom: 1px solid var(--border);
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 998;
        }
        .mobile-nav.open { max-height: 480px; }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            padding: 12px 0 28px;
        }
        .mobile-nav ul li { width: 100%; }
        .mobile-nav .nav-link {
            display: block;
            padding: 15px 24px;
            font-size: 0.8rem;
            border-bottom: 1px solid rgba(255,255,255,0.04);
            color: #94a3b8;
        }
        .mobile-nav .nav-link:hover { color: var(--cryo-blue); background: rgba(0,212,255,0.04); }
        .mobile-nav .btn-portal {
            margin: 20px auto 0;
            display: block;
            width: calc(100% - 48px);
            text-align: center;
            padding: 14px;
            font-size: 0.72rem;
        }

        /* =====================
           HERO
        ===================== */
        .hero {
            position: relative;
            min-height: 100svh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: calc(var(--nav-h) + 60px) clamp(20px, 5vw, 60px) 100px;
            background:
                url('https://images.unsplash.com/photo-1614850523296-d8c1af93d400?q=80&w=2070&auto=format&fit=crop')
                center / cover no-repeat;
            background-blend-mode: multiply;
            background-color: rgba(2, 6, 12, 0.74);
        }

        .hero-eyebrow {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(0.6rem, 1.8vw, 0.9rem);
            color: var(--cryo-blue);
            letter-spacing: clamp(5px, 1.5vw, 12px);
            text-transform: uppercase;
            margin-bottom: 22px;
            opacity: 0.9;
        }

        .hero-title {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(2rem, 9vw, 6.5rem);
            font-weight: 900;
            line-height: 1.0;
            letter-spacing: clamp(2px, 1vw, 6px);
            text-transform: uppercase;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #ffffff 20%, #a8daff 60%, var(--cryo-blue) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-sub {
            max-width: 620px;
            font-size: clamp(0.9rem, 2vw, 1.05rem);
            color: #94a3b8;
            font-weight: 300;
            line-height: 1.8;
            margin-bottom: 44px;
        }

        .hero-cta {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            justify-content: center;
        }

        .btn-primary {
            background: var(--cryo-blue);
            color: #000;
            padding: 15px 38px;
            border-radius: 2px;
            text-decoration: none;
            font-family: 'Orbitron', sans-serif;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: box-shadow 0.3s, transform 0.3s;
            box-shadow: 0 0 28px rgba(0,212,255,0.28);
        }
        .btn-primary:hover {
            box-shadow: 0 0 48px rgba(0,212,255,0.5);
            transform: translateY(-2px);
        }

        .btn-ghost {
            background: transparent;
            border: 1px solid rgba(0,212,255,0.35);
            color: #e2e8f0;
            padding: 15px 38px;
            border-radius: 2px;
            text-decoration: none;
            font-family: 'Orbitron', sans-serif;
            font-size: 0.72rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: border-color 0.3s, color 0.3s;
        }
        .btn-ghost:hover {
            border-color: var(--cryo-blue);
            color: var(--cryo-blue);
        }

        /* Scroll indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 36px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            opacity: 0.45;
            transition: opacity 0.5s;
            pointer-events: none;
        }
        .scroll-indicator span {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.5rem;
            letter-spacing: 4px;
            color: var(--cryo-blue);
        }
        .scroll-line {
            width: 1px;
            height: 36px;
            background: linear-gradient(to bottom, var(--cryo-blue), transparent);
            animation: scrollPulse 2s ease-in-out infinite;
        }
        @keyframes scrollPulse {
            0%, 100% { opacity: 0.25; }
            50% { opacity: 1; }
        }

        /* =====================
           CONTENT LAYOUT
        ===================== */
        .content-section {
            max-width: 1280px;
            margin: 0 auto;
            padding: clamp(64px, 10vw, 140px) clamp(16px, 5vw, 32px);
            opacity: 0;
            transform: translateY(48px);
            transition: opacity 1s ease, transform 1s ease;
        }
        .content-section.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Glass card used in Vision */
        .glass-card {
            background: var(--glass);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: clamp(28px, 6vw, 72px);
            box-shadow: 0 32px 80px -16px rgba(0,0,0,0.75);
        }

        /* Section headline */
        .section-headline {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(1.3rem, 3.5vw, 2.2rem);
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: #fff;
            margin-bottom: 40px;
            display: flex;
            align-items: center;
            gap: 18px;
            flex-wrap: wrap;
        }
        .section-headline::before {
            content: '';
            flex-shrink: 0;
            width: 44px;
            height: 3px;
            background: var(--cryo-blue);
            border-radius: 2px;
            box-shadow: 0 0 10px var(--cryo-blue);
        }

        .division-count {
            margin-left: auto;
            font-family: 'Orbitron', sans-serif;
            font-size: 0.58rem;
            letter-spacing: 3px;
            color: #475569;
            border: 1px solid rgba(255,255,255,0.07);
            padding: 5px 12px;
            border-radius: 2px;
        }

        /* Section divider */
        .section-divider {
            width: 90%;
            max-width: 1280px;
            height: 1px;
            margin: 0 auto;
            background: linear-gradient(to right, transparent, rgba(0,212,255,0.15), transparent);
        }

        /* =====================
           FEATURE / DIVISION GRID
        ===================== */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
            gap: 20px;
            margin-top: 12px;
        }

        .feature-item {
            padding: clamp(22px, 4vw, 36px);
            background: rgba(255,255,255,0.025);
            border-radius: 14px;
            border: 1px solid rgba(255,255,255,0.06);
            display: flex;
            flex-direction: column;
            gap: 0;
            transition: border-color 0.35s, transform 0.35s ease, background 0.35s;
            will-change: transform;
        }
        @media (hover: hover) {
            .feature-item:hover {
                border-color: rgba(0,212,255,0.4);
                transform: translateY(-6px);
                background: rgba(0,212,255,0.03);
            }
        }

        .division-tag {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            font-size: 0.65rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .feature-item h4 {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(0.85rem, 1.8vw, 1.05rem);
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #fff;
            margin-bottom: 14px;
            line-height: 1.3;
        }

        .feature-item p {
            font-size: 0.875rem;
            color: #94a3b8;
            line-height: 1.75;
            flex: 1;
        }

        /* Status badge */
        .status-badge {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 4px 12px;
            border-radius: 2px;
            font-family: 'Orbitron', sans-serif;
            font-size: 0.52rem;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            margin-top: 20px;
            align-self: flex-start;
        }
        .status-badge.active {
            background: rgba(34,197,94,0.1);
            border: 1px solid rgba(34,197,94,0.28);
            color: #22c55e;
        }
        .status-badge.active::before {
            content: '';
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: #22c55e;
            animation: pulseDot 2.2s ease-in-out infinite;
            flex-shrink: 0;
        }
        .status-badge.planned {
            background: rgba(0,212,255,0.06);
            border: 1px solid rgba(0,212,255,0.18);
            color: var(--cryo-blue);
        }
        @keyframes pulseDot {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.25; }
        }

        /* Coming-soon pill (Vision section) */
        .coming-soon-pill {
            display: inline-block;
            margin-top: 20px;
            padding: 5px 14px;
            background: rgba(0,212,255,0.06);
            border: 1px solid rgba(0,212,255,0.18);
            border-radius: 3px;
            color: var(--cryo-blue);
            font-family: 'Orbitron', sans-serif;
            font-size: 0.55rem;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        /* =====================
           EXECUTIVE BOARD
        ===================== */
        .team-row {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
            gap: 20px;
        }

        .executive-profile {
            text-align: center;
            padding: clamp(28px, 5vw, 48px) clamp(18px, 3vw, 28px);
            background: #080d16;
            border: 1px solid var(--border);
            border-radius: 18px;
            transition: border-color 0.4s, box-shadow 0.4s;
        }
        @media (hover: hover) {
            .executive-profile:hover {
                border-color: rgba(0,212,255,0.5);
                box-shadow: 0 0 28px rgba(0,212,255,0.08);
            }
        }

        .profile-hex {
            width: 90px;
            height: 90px;
            background: #111827;
            margin: 0 auto 20px;
            clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Orbitron', sans-serif;
            font-size: 1.6rem;
            font-weight: 900;
            color: var(--cryo-blue);
            border: 2px solid var(--cryo-blue);
        }

        .executive-profile h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #fff;
            margin-bottom: 8px;
        }
        .exec-role {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            font-size: 0.62rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--cryo-blue);
        }
        .exec-desc {
            margin-top: 12px;
            font-size: 0.82rem;
            color: #64748b;
            line-height: 1.65;
        }

        /* =====================
           FOOTER
        ===================== */
        .legal-footer {
            background: #010408;
            padding: clamp(56px, 8vw, 110px) clamp(16px, 5vw, 32px);
            border-top: 1px solid var(--border);
            font-size: 0.875rem;
            color: #64748b;
        }

        .legal-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
            gap: clamp(36px, 6vw, 72px);
        }

        .legal-box h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(1rem, 2.5vw, 1.5rem);
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #fff;
            margin-bottom: 18px;
        }
        .legal-box h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--cryo-blue);
            margin: 20px 0 7px;
        }
        .legal-address {
            color: #cbd5e1;
            line-height: 1.9;
            font-style: normal;
        }
        .legal-link {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.25s;
            word-break: break-word;
        }
        .legal-link:hover { color: var(--cryo-blue); }

        .coming-soon-box {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 14px;
        }

        .copyright-bar {
            text-align: center;
            padding: 36px 20px;
            border-top: 1px solid rgba(255,255,255,0.05);
            margin-top: 56px;
            font-family: 'Orbitron', sans-serif;
            font-size: 0.62rem;
            letter-spacing: 2px;
            color: #475569;
            text-transform: uppercase;
        }
        .copyright-bar .version {
            display: block;
            margin-top: 8px;
            font-size: 0.55rem;
            opacity: 0.35;
        }

        /* =====================
           BACK TO TOP
        ===================== */
        #back-to-top {
            position: fixed;
            bottom: 28px;
            right: 22px;
            width: 44px;
            height: 44px;
            background: rgba(0,212,255,0.08);
            border: 1px solid rgba(0,212,255,0.4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            transform: translateY(16px);
            transition: opacity 0.35s, transform 0.35s, background 0.25s;
            z-index: 900;
            text-decoration: none;
            color: var(--cryo-blue);
            font-size: 1.1rem;
            pointer-events: none;
        }
        #back-to-top.visible {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }
        #back-to-top:hover { background: rgba(0,212,255,0.18); }

        /* =====================
           FOCUS
        ===================== */
        :focus-visible {
            outline: 2px solid var(--cryo-blue);
            outline-offset: 4px;
            border-radius: 2px;
        }

        /* =====================
           RESPONSIVE
        ===================== */
        @media (max-width: 860px) {
            .nav-links,
            .btn-portal.desktop-only { display: none; }
            .hamburger { display: flex; }
            .division-count { display: none; }
        }

        @media (max-width: 520px) {
            .hero-cta { flex-direction: column; align-items: stretch; }
            .btn-primary,
            .btn-ghost { text-align: center; padding: 15px 24px; }
            .profile-hex { width: 76px; height: 76px; font-size: 1.4rem; }
        }

        /* =====================
           DIVISION ICON
        ===================== */
        .division-icon {
            font-size: 2rem;
            margin-bottom: 14px;
            display: block;
            line-height: 1;
        }

        /* =====================
           DISCORD COMMUNITY SECTION
        ===================== */
        .discord-section {
            max-width: 1280px;
            margin: 0 auto;
            padding: clamp(64px, 10vw, 140px) clamp(16px, 5vw, 32px);
            opacity: 0;
            transform: translateY(48px);
            transition: opacity 1s ease, transform 1s ease;
        }
        .discord-section.active { opacity: 1; transform: translateY(0); }

        .discord-inner {
            background: var(--glass);
            border: 1px solid rgba(88,101,242,0.25);
            border-radius: 20px;
            padding: clamp(28px, 6vw, 64px);
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 48px;
            align-items: center;
            box-shadow: 0 32px 80px -16px rgba(0,0,0,0.7);
        }
        @media (max-width: 760px) {
            .discord-inner { grid-template-columns: 1fr; gap: 32px; }
        }

        .discord-text h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(1.3rem, 3.5vw, 2rem);
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: #fff;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 18px;
        }
        .discord-text h2::before {
            content: '';
            flex-shrink: 0;
            width: 44px;
            height: 3px;
            background: #5865f2;
            border-radius: 2px;
            box-shadow: 0 0 10px #5865f2;
        }
        .discord-text p {
            font-size: 0.95rem;
            color: #94a3b8;
            line-height: 1.8;
            max-width: 520px;
            margin-bottom: 28px;
        }
        .btn-discord {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #5865f2;
            color: #fff;
            padding: 13px 30px;
            border-radius: 2px;
            text-decoration: none;
            font-family: 'Orbitron', sans-serif;
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: background 0.25s, box-shadow 0.25s, transform 0.25s;
            box-shadow: 0 0 24px rgba(88,101,242,0.3);
        }
        .btn-discord:hover {
            background: #4752c4;
            box-shadow: 0 0 40px rgba(88,101,242,0.5);
            transform: translateY(-2px);
        }
        .btn-discord svg { width: 18px; height: 18px; fill: #fff; flex-shrink: 0; }

        .discord-stats {
            display: flex;
            flex-direction: column;
            gap: 14px;
            min-width: 180px;
        }
        @media (max-width: 760px) {
            .discord-stats { flex-direction: row; flex-wrap: wrap; }
            .discord-stat-card { flex: 1; min-width: 130px; }
        }

        .discord-stat-card {
            background: rgba(88,101,242,0.08);
            border: 1px solid rgba(88,101,242,0.2);
            border-radius: 14px;
            padding: 20px 24px;
            text-align: center;
        }
        .discord-stat-num {
            font-family: 'Orbitron', sans-serif;
            font-size: 2rem;
            font-weight: 900;
            color: #fff;
            line-height: 1;
            display: block;
            margin-bottom: 6px;
        }
        .discord-stat-num.loading {
            color: #334155;
            animation: shimmer 1.5s ease-in-out infinite;
        }
        @keyframes shimmer {
            0%, 100% { opacity: 0.4; }
            50% { opacity: 1; }
        }
        .discord-stat-label {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.52rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #64748b;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }
        .dot-online {
            width: 7px; height: 7px;
            border-radius: 50%;
            background: #23a559;
            flex-shrink: 0;
            animation: pulseDot 2.2s ease-in-out infinite;
        }
        .dot-members {
            width: 7px; height: 7px;
            border-radius: 50%;
            background: #5865f2;
            flex-shrink: 0;
        }

        /* =====================
           REDUCED MOTION
        ===================== */
        @media (prefers-reduced-motion: reduce) {
            html { scroll-behavior: auto; }
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
            }
            .content-section {
                opacity: 1 !important;
                transform: none !important;
            }
        }
