:root {
            --green: #2ECC71;
            --green-glow: #23D997;
            --dark: #0e0e0f;
            --dark2: #161617;
            --dark3: #1f2021;
            --card: #1a1b1c;
            --border: rgba(46,204,113,0.15);
            --text: #f0f0f0;
            --muted: #888;
            --red: #ff4545;
        }

        *, *::before, *::after {
            margin: 0; padding: 0; box-sizing: border-box;
        }

        html { scroll-behavior: smooth; }

        body {
            background: var(--dark);
            color: var(--text);
            font-family: 'DM Sans', sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* NOISE OVERLAY */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
            pointer-events: none;
            z-index: 9999;
            opacity: 0.4;
        }

        /* NAV */
        nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 100;
            padding: 18px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(14,14,15,0.85);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border);
        }

        .logo {
            font-family: 'Syne', sans-serif;
            font-weight: 800;
            font-size: 1.3rem;
            color: var(--green-glow);
            letter-spacing: -0.5px;
        }

        .logo span {
            color: var(--text);
        }

        .nav-links {
            display: flex;
            gap: 32px;
            list-style: none;
        }

        .nav-links a {
            font-family: 'DM Mono', monospace;
            font-size: 0.8rem;
            color: var(--muted);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.2s;
        }

        .nav-links a:hover { color: var(--green); }

        .nav-sub {
            font-family: 'DM Mono', monospace;
            font-size: 0.75rem;
            color: var(--green);
            border: 1px solid var(--green);
            padding: 6px 16px;
            border-radius: 4px;
            text-decoration: none;
            transition: all 0.2s;
        }

        .nav-sub:hover {
            background: var(--green);
            color: #000;
        }

        .mobile-br { display: none; }

        @media (max-width: 480px) {
            .mobile-br { display: block; }
        }

        /* HAMBURGER */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 4px;
        }
        .hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--text);
            transition: all 0.3s;
        }
        .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .hamburger.open span:nth-child(2) { opacity: 0; }
        .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 65px; left: 0; right: 0;
            background: rgba(14,14,15,0.98);
            border-bottom: 1px solid var(--border);
            padding: 20px 40px 28px;
            z-index: 99;
            flex-direction: column;
            gap: 0;
        }
        .mobile-menu.open { display: flex; }
        .mobile-menu a {
            font-family: 'DM Mono', monospace;
            font-size: 0.85rem;
            color: var(--muted);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 14px 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            transition: color 0.2s;
        }
        .mobile-menu a:last-child { border-bottom: none; }
        .mobile-menu a:hover { color: var(--green); }

        /* HERO */
        #home {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 120px 40px 80px;
            position: relative;
            overflow: hidden;
            overflow-x: hidden;
            overflow-y: visible;
        }

        .hero-bg-lines {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(46,204,113,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(46,204,113,0.03) 1px, transparent 1px);
            background-size: 60px 60px;
        }

        .hero-glow {
            position: absolute;
            top: -200px; right: -200px;
            width: 700px; height: 700px;
            background: radial-gradient(circle, rgba(46,204,113,0.07) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-inner {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: 'DM Mono', monospace;
            font-size: 0.75rem;
            color: var(--green);
            border: 1px solid var(--border);
            padding: 6px 14px;
            border-radius: 100px;
            margin-bottom: 32px;
            animation: fadeUp 0.6s ease both;
        }

        .hero-badge::before {
            content: '';
            width: 6px; height: 6px;
            border-radius: 50%;
            background: var(--green);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

        .hero-title {
            font-family: 'Syne', sans-serif;
            font-weight: 800;
            font-size: clamp(3rem, 7vw, 6.5rem);
            line-height: 0.95;
            letter-spacing: -2px;
            margin-bottom: 28px;
            animation: fadeUp 0.6s 0.1s ease both;
            overflow: visible;
            word-break: break-word;
        }

        .hero-title .green { color: var(--green-glow); }
        .hero-title .outline {
            -webkit-text-stroke: 2px rgba(255,255,255,0.2);
            color: transparent;
        }

        .hero-desc {
            font-size: 1.1rem;
            color: var(--muted);
            max-width: 520px;
            margin-bottom: 44px;
            line-height: 1.7;
            animation: fadeUp 0.6s 0.2s ease both;
        }

        .hero-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            animation: fadeUp 0.6s 0.3s ease both;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--green);
            color: #000;
            font-family: 'Syne', sans-serif;
            font-weight: 700;
            font-size: 0.9rem;
            padding: 14px 28px;
            border-radius: 6px;
            text-decoration: none;
            transition: all 0.2s;
            letter-spacing: 0.3px;
        }

        .btn-primary:hover {
            background: var(--green-glow);
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(46,204,113,0.3);
        }

        .btn-ghost {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: var(--text);
            font-family: 'Syne', sans-serif;
            font-weight: 600;
            font-size: 0.9rem;
            padding: 14px 28px;
            border-radius: 6px;
            text-decoration: none;
            border: 1px solid rgba(255,255,255,0.12);
            transition: all 0.2s;
        }

        .btn-ghost:hover {
            border-color: var(--green);
            color: var(--green);
            transform: translateY(-2px);
        }

        /* SOCIAL ROW */
        .social-row {
            display: flex;
            gap: 12px;
            margin-top: 56px;
            animation: fadeUp 0.6s 0.4s ease both;
        }

        .soc {
            width: 42px; height: 42px;
            border-radius: 8px;
            border: 1px solid rgba(255,255,255,0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.2s;
            background: var(--dark2);
        }

        .soc svg { width: 18px; height: 18px; fill: var(--muted); transition: fill 0.2s; }
        .soc:hover svg { fill: #fff; }
        .soc.yt:hover { background: #ff0000; border-color: #ff0000; }
        .soc.gh:hover { background: #333; border-color: #555; }
        .soc.tt:hover { background: #010101; border-color: #333; }
        .soc.tw:hover { background: #1da1f2; border-color: #1da1f2; }
        .soc.discord:hover { background: #5865F2; border-color: #5865F2; }
        .soc.rd:hover { background: #ff4500; border-color: #ff4500; }
        .soc.em:hover { background: var(--green); border-color: var(--green); }
        .soc.em:hover svg { fill: #000; }

        /* STATS BAR */
        .stats-bar {
            background: var(--dark2);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            padding: 28px 40px;
        }

        .stats-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            gap: 0;
            justify-content: space-around;
        }

        .stat-item {
            text-align: center;
            padding: 0 40px;
            border-right: 1px solid var(--border);
        }

        .stat-item:last-child { border-right: none; }

        .stat-num {
            font-family: 'Syne', sans-serif;
            font-weight: 800;
            font-size: 2rem;
            color: var(--green);
            display: block;
        }

        .stat-label {
            font-family: 'DM Mono', monospace;
            font-size: 0.7rem;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* SECTIONS */
        section { padding: 100px 40px; scroll-margin-top: 70px; }

        .section-header {
            max-width: 1200px;
            margin: 0 auto 56px;
        }

        .section-eyebrow {
            font-family: 'DM Mono', monospace;
            font-size: 0.72rem;
            color: var(--green);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 12px;
        }

        .section-title {
            font-family: 'Syne', sans-serif;
            font-weight: 800;
            font-size: clamp(2rem, 4vw, 3rem);
            letter-spacing: -1px;
        }

        .section-title .dim { color: rgba(255,255,255,0.2); }

        /* FEATURED VIDEOS */
        .videos-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 20px;
        }

        .video-card {
            background: var(--card);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.05);
            transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
            cursor: pointer;
            text-decoration: none;
            display: block;
            color: inherit;
        }

        .video-card:hover {
            transform: translateY(-6px);
            border-color: rgba(46,204,113,0.3);
            box-shadow: 0 20px 60px rgba(0,0,0,0.4);
        }

        .video-thumb {
            position: relative;
            aspect-ratio: 16/9;
            background: var(--dark3);
            overflow: hidden;
        }

        .video-thumb img {
            width: 100%; height: 100%;
            object-fit: cover;
            transition: transform 0.4s;
        }

        .video-card:hover .video-thumb img {
            transform: scale(1.05);
        }

        .play-btn {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0,0,0,0.3);
            opacity: 0;
            transition: opacity 0.25s;
        }

        .video-card:hover .play-btn { opacity: 1; }

        .play-btn svg {
            width: 52px; height: 52px;
            fill: white;
            filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5));
        }

        .video-platform-badge {
            position: absolute;
            top: 10px; left: 10px;
            font-family: 'DM Mono', monospace;
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 4px 10px;
            border-radius: 4px;
            font-weight: 500;
        }

        .badge-yt { background: #ff0000; color: #fff; }
        .badge-tt { background: #010101; color: #fff; border: 1px solid #333; }

        .video-info {
            padding: 18px 20px 20px;
        }

        .video-meta {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 8px;
        }

        .video-category {
            font-family: 'DM Mono', monospace;
            font-size: 0.65rem;
            color: var(--green);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .video-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--muted); }

        .video-views {
            font-family: 'DM Mono', monospace;
            font-size: 0.65rem;
            color: var(--muted);
        }

        .video-title {
            font-family: 'Syne', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            line-height: 1.35;
            margin-bottom: 8px;
        }

        .video-desc {
            font-size: 0.82rem;
            color: var(--muted);
            line-height: 1.55;
        }

        /* FEATURED (big card) */
        .video-card.featured {
            grid-column: 1 / -1;
            display: grid;
            grid-template-columns: 1.4fr 1fr;
        }

        .video-card.featured .video-thumb {
            aspect-ratio: unset;
            min-height: 260px;
        }

        .video-card.featured .video-info {
            padding: 32px 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .video-card.featured .video-title {
            font-size: 1.4rem;
        }

        .video-cta {
            margin-top: 16px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-family: 'DM Mono', monospace;
            font-size: 0.75rem;
            color: var(--green);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .video-cta svg { width: 14px; height: 14px; fill: var(--green); }

        .see-more-row {
            max-width: 1200px;
            margin: 32px auto 0;
            display: flex;
            justify-content: center;
        }

        /* PLATFORMS */
        #platforms { background: var(--dark2); }

        .platforms-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .platform-card {
            border-radius: 12px;
            padding: 32px 28px;
            border: 1px solid rgba(255,255,255,0.05);
            background: var(--dark);
            transition: border-color 0.25s, transform 0.25s;
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .platform-card:hover {
            transform: translateY(-4px);
        }

        .platform-card.yt:hover { border-color: rgba(255,0,0,0.4); }
        .platform-card.tt:hover { border-color: rgba(255,255,255,0.15); }
        .platform-card.twitch:hover { border-color: rgba(100,65,165,0.5); }

        .plat-icon {
            width: 48px; height: 48px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .plat-icon svg { width: 26px; height: 26px; fill: #fff; }
        .plat-icon.yt { background: #ff0000; }
        .plat-icon.tt { background: #010101; border: 1px solid #333; }
        .plat-icon.discord { background: #5865F2; }
        .platform-card.discord:hover { border-color: rgba(88,101,242,0.5); }

        .plat-name {
            font-family: 'Syne', sans-serif;
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 6px;
        }

        .plat-handle {
            font-family: 'DM Mono', monospace;
            font-size: 0.75rem;
            color: var(--muted);
            margin-bottom: 14px;
        }

        .plat-desc {
            font-size: 0.85rem;
            color: var(--muted);
            line-height: 1.6;
        }

        /* ABOUT */
        #about { background: var(--dark); }
 
        .about-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
 
        .about-left .section-eyebrow { margin-bottom: 12px; }
 
        .about-bio {
            margin-top: 24px;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
 
        .about-bio p {
            font-size: 0.95rem;
            color: var(--muted);
            line-height: 1.75;
        }
 
        .about-bio p strong { color: var(--text); }
 
        .about-right {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
 
        .about-card {
            background: var(--card);
            border: 1px solid rgba(255,255,255,0.04);
            border-radius: 10px;
            padding: 20px 24px;
            display: flex;
            align-items: flex-start;
            gap: 16px;
            transition: border-color 0.2s;
        }
 
        .about-card:hover { border-color: rgba(46,204,113,0.2); }
 
        .about-card-icon {
            font-size: 1.2rem;
            min-width: 28px;
            margin-top: 2px;
        }
 
        .about-card-text {
            font-size: 0.88rem;
            color: var(--muted);
            line-height: 1.6;
        }
 
        .about-card-text strong { color: var(--text); font-size: 0.92rem; display: block; margin-bottom: 3px; }
 
        @media (max-width: 900px) {
            .about-inner { grid-template-columns: 1fr; gap: 40px; }
        }

        /* CONTENT RULES */
        #rules { background: var(--dark); }

        .rules-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .rules-intro {
            font-size: 0.95rem;
            color: var(--muted);
            line-height: 1.75;
            margin-top: 20px;
        }

        .rules-callout {
            margin-top: 28px;
            padding: 18px 22px;
            background: rgba(255,69,69,0.06);
            border: 1px solid rgba(255,69,69,0.2);
            border-radius: 8px;
            font-size: 0.88rem;
            color: #ffaaaa;
            line-height: 1.65;
        }

        .rules-callout strong { color: var(--red); }

        .rules-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .rule-item {
            display: flex;
            gap: 18px;
            align-items: flex-start;
            padding: 22px 24px;
            background: var(--card);
            border-radius: 10px;
            border: 1px solid rgba(255,255,255,0.04);
            transition: border-color 0.2s;
        }

        .rule-item:hover { border-color: rgba(46,204,113,0.2); }

        .rule-num {
            font-family: 'Syne', sans-serif;
            font-weight: 800;
            font-size: 1.5rem;
            color: rgba(46,204,113,0.25);
            min-width: 36px;
            line-height: 1;
            margin-top: 2px;
        }

        .rule-text {
            font-size: 0.9rem;
            color: var(--text);
            line-height: 1.65;
        }

        .rule-text strong { color: var(--green); }
        .rule-text .warn { color: var(--red); }

        /* CONTACT / FOOTER */
        footer {
            background: var(--dark2);
            border-top: 1px solid var(--border);
            padding: 80px 40px 40px;
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 60px;
            padding-bottom: 60px;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .footer-brand .logo {
            font-size: 1.5rem;
            display: block;
            margin-bottom: 12px;
        }

        .footer-brand p {
            font-size: 0.85rem;
            color: var(--muted);
            line-height: 1.7;
            max-width: 240px;
        }

        .footer-col h4 {
            font-family: 'Syne', sans-serif;
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--text);
        }

        .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

        .footer-col ul a {
            font-size: 0.85rem;
            color: var(--muted);
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-col ul a:hover { color: var(--green); }

        .footer-contact a {
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: 'DM Mono', monospace;
            font-size: 0.8rem;
            color: var(--green);
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-contact a:hover { color: var(--green-glow); }

        .footer-bottom {
            padding-top: 32px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-copy {
            font-family: 'DM Mono', monospace;
            font-size: 0.72rem;
            color: var(--muted);
        }

        .footer-soc { display: flex; gap: 10px; }

        /* ANIMATIONS */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* RESPONSIVE */
        @media (max-width: 900px) {
            nav { padding: 16px 24px; }
            .nav-links, .nav-sub { display: none; }
            .hamburger { display: flex; }

            #home { padding: 110px 24px 60px; }
            .stats-bar { padding: 20px 24px; }
            .stats-inner { gap: 0; flex-wrap: wrap; justify-content: center; }
            .stat-item { padding: 12px 20px; border-right: none; border-bottom: 1px solid var(--border); width: 50%; }
            .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
            .stat-item:nth-last-child(-n+2) { border-bottom: none; }

            section { padding: 70px 24px; }

            .videos-grid { grid-template-columns: 1fr; }
            .video-card.featured { grid-template-columns: 1fr; }
            .video-card.featured .video-thumb { min-height: 200px; aspect-ratio: 16/9; }

            .platforms-grid { grid-template-columns: 1fr; }

            .rules-inner { grid-template-columns: 1fr; gap: 40px; }

            .footer-top { grid-template-columns: 1fr; gap: 36px; }
            .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
            footer { padding: 60px 24px 32px; }
        }