
        :root {
            --bg-primary: #0a0a0f;
            --bg-secondary: #121218;
            --bg-card: rgba(25, 25, 35, 0.6);
            --accent-cyan: #00f0ff;
            --accent-purple: #a855f7;
            --accent-pink: #ec4899;
            --text-primary: #f8fafc;
            --text-secondary: #94a3b8;
            --glass-bg: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.1);
            --shadow-glow: 0 0 30px rgba(0, 240, 255, 0.3);
            --shadow-glow-purple: 0 0 30px rgba(168, 85, 247, 0.3);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; max-width: 100%; }

        html {
            overflow-x: hidden;
            max-width: 100vw;
        }

        body {
            font-family: 'Outfit', -apple-system, sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            overflow-x: hidden;
            max-width: 100vw;
            line-height: 1.6;
        }

        /* ═══ ENHANCED BACKGROUND ═══ */
        body::before {
            content: '';
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 240, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(236, 72, 153, 0.08) 0%, transparent 50%);
            z-index: -1;
            animation: backgroundPulse 20s ease infinite;
        }

        /* Floating particles */
        body::after {
            content: '';
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background-image:
                radial-gradient(1px 1px at 20% 30%, rgba(0,240,255,0.4) 0%, transparent 100%),
                radial-gradient(1px 1px at 80% 10%, rgba(168,85,247,0.4) 0%, transparent 100%),
                radial-gradient(1px 1px at 60% 70%, rgba(236,72,153,0.3) 0%, transparent 100%),
                radial-gradient(1px 1px at 10% 80%, rgba(0,240,255,0.3) 0%, transparent 100%),
                radial-gradient(1.5px 1.5px at 90% 50%, rgba(168,85,247,0.3) 0%, transparent 100%),
                radial-gradient(1px 1px at 45% 95%, rgba(236,72,153,0.25) 0%, transparent 100%),
                radial-gradient(1px 1px at 70% 40%, rgba(0,240,255,0.2) 0%, transparent 100%);
            z-index: -1;
            pointer-events: none;
            animation: particleFloat 25s linear infinite;
        }

        @keyframes particleFloat {
            0%   { transform: translateY(0); }
            100% { transform: translateY(-20px); }
        }

        @keyframes backgroundPulse {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 0.8; }
        }

        /* ═══ GRID OVERLAY DECORATION ═══ */
        .grid-overlay {
            position: fixed;
            inset: 0;
            background-image:
                linear-gradient(rgba(0,240,255,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0,240,255,0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            z-index: -1;
            pointer-events: none;
        }

        /* ═══ NAVIGATION ═══ */
        nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            padding: 1.5rem 0;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            background: var(--glass-bg);
            border-bottom: 1px solid var(--glass-border);
            transition: all 0.3s ease;
        }

        nav.scrolled {
            padding: 1rem 0;
            background: rgba(10, 10, 15, 0.9);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.02em;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px; left: 0;
            width: 0; height: 2px;
            background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
            transition: width 0.3s ease;
        }

        .nav-links a:hover { color: var(--text-primary); }
        .nav-links a:hover::after { width: 100%; }

        .cta-nav {
            padding: 0.7rem 1.5rem;
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
            border: none; border-radius: 8px;
            color: white; font-weight: 600;
            cursor: pointer; transition: all 0.3s ease;
            text-decoration: none; display: inline-block;
        }

        .cta-nav:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }

        .mobile-menu-btn {
            display: none; flex-direction: column; gap: 5px;
            background: none; border: none; cursor: pointer;
        }

        .mobile-menu-btn span {
            width: 25px; height: 3px;
            background: var(--text-primary);
            border-radius: 3px;
            transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.25s ease;
            display: block;
        }

        /* ═══ HERO ═══ */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 8rem 2rem 4rem;
            position: relative;
        }

        /* Hero decorative orbs */
        .hero::after {
            content: '';
            position: absolute;
            top: 10%; right: 5%;
            width: 400px; height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(168,85,247,0.12) 0%, transparent 70%);
            pointer-events: none;
            animation: orbFloat 8s ease-in-out infinite;
        }

        @keyframes orbFloat {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(-20px, -30px) scale(1.05); }
            66% { transform: translate(15px, -15px) scale(0.95); }
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-content h1 {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--text-primary), var(--accent-cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 0.8s ease;
        }

        .hero-content .subtitle {
            font-size: 1.3rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        .highlight { color: var(--accent-cyan); font-weight: 600; }

        .hero-cta {
            display: flex;
            gap: 1.5rem;
            margin-top: 2.5rem;
            animation: fadeInUp 0.8s ease 0.4s both;
        }

        .btn-primary {
            padding: 1rem 2.5rem;
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
            border: none; border-radius: 10px;
            color: white; font-weight: 600; font-size: 1.1rem;
            cursor: pointer; transition: all 0.3s ease;
            text-decoration: none; display: inline-block;
            position: relative; overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s;
        }

        .btn-primary:hover::before { left: 100%; }
        .btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-glow); }

        .btn-secondary {
            padding: 1rem 2.5rem;
            background: transparent;
            border: 2px solid var(--glass-border);
            border-radius: 10px;
            color: var(--text-primary); font-weight: 600; font-size: 1.1rem;
            cursor: pointer; transition: all 0.3s ease;
            text-decoration: none; display: inline-block;
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            border-color: var(--accent-cyan);
            background: var(--glass-bg);
            transform: translateY(-3px);
        }

        .hero-image { position: relative; animation: fadeInUp 0.8s ease 0.3s both; }

        .floating-card {
            background: var(--bg-card);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        .stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

        .stat-item { text-align: center; }

        .stat-number {
            font-size: 2.5rem; font-weight: 800;
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label { color: var(--text-secondary); font-size: 0.9rem; margin-top: 0.3rem; }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ═══ SECTIONS ═══ */
        section {
            padding: 6rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header { text-align: center; margin-bottom: 4rem; }

        .section-label {
            color: var(--accent-cyan);
            font-weight: 600; font-size: 0.95rem;
            letter-spacing: 2px; text-transform: uppercase;
            margin-bottom: 1rem; display: inline-block;
        }

        .section-title { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 800; margin-bottom: 1rem; }

        .section-subtitle {
            color: var(--text-secondary); font-size: 1.2rem;
            max-width: 600px; margin: 0 auto;
        }

        /* ═══ SERVICES ═══ */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: var(--bg-card);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative; overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute; top: 0; left: 0;
            width: 100%; height: 100%;
            background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(168, 85, 247, 0.1));
            opacity: 0; transition: opacity 0.4s ease;
        }

        .service-card:hover::before { opacity: 1; }
        .service-card:hover { transform: translateY(-10px) scale(1.02); border-color: var(--accent-cyan); box-shadow: var(--shadow-glow); }

        .service-icon {
            width: 60px; height: 60px;
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
            border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.8rem; margin-bottom: 1.5rem;
        }

        .service-card.quick-fix .service-icon {
            background: linear-gradient(135deg, #f59e0b, #ef4444);
            animation: pulse 2s ease infinite;
        }

        @keyframes pulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
            50% { box-shadow: 0 0 0 20px rgba(245, 158, 11, 0); }
        }

        .service-badge {
            display: inline-block;
            padding: 0.4rem 1rem;
            background: linear-gradient(135deg, #f59e0b, #ef4444);
            border-radius: 20px; font-size: 0.75rem;
            font-weight: 700; text-transform: uppercase;
            letter-spacing: 1px; margin-bottom: 1rem;
            animation: slideInBadge 0.6s ease;
        }

        @keyframes slideInBadge {
            from { transform: translateX(-20px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        .service-title { font-size: 1.6rem; font-weight: 700; margin-bottom: 1rem; position: relative; z-index: 1; }

        .service-price {
            font-size: 2rem; font-weight: 800;
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text; margin-bottom: 1rem;
        }

        .service-card.quick-fix .service-price {
            background: linear-gradient(135deg, #f59e0b, #ef4444);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .service-description { color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.5rem; position: relative; z-index: 1; }

        .service-features { list-style: none; margin: 1.5rem 0; position: relative; z-index: 1; }

        .service-features li {
            padding: 0.6rem 0; color: var(--text-secondary);
            display: flex; align-items: center; gap: 0.8rem;
        }

        .service-features li::before { content: '✓'; color: var(--accent-cyan); font-weight: bold; font-size: 1.2rem; }

        .service-link {
            display: inline-flex; align-items: center; gap: 0.5rem;
            color: var(--accent-cyan); text-decoration: none;
            font-weight: 600; margin-top: 1rem;
            transition: gap 0.3s ease; position: relative; z-index: 1;
        }

        .service-link:hover { gap: 1rem; }

        /* ═══ PROJECTS ═══ */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2.5rem;
        }

        .project-card {
            background: var(--bg-card);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 20px; overflow: hidden;
            transition: all 0.4s ease; position: relative;
        }

        .project-card:hover { transform: translateY(-10px); border-color: var(--accent-purple); box-shadow: var(--shadow-glow-purple); }

        .project-image { width: 100%; height: 250px; object-fit: cover; transition: transform 0.4s ease; }
        .project-card:hover .project-image { transform: scale(1.05); }

        .project-content { padding: 2rem; }

        .project-tags { display: flex; gap: 0.8rem; margin-bottom: 1rem; flex-wrap: wrap; }

        .project-tag {
            padding: 0.4rem 1rem;
            background: rgba(0, 240, 255, 0.1);
            border: 1px solid rgba(0, 240, 255, 0.3);
            border-radius: 20px; font-size: 0.8rem;
            color: var(--accent-cyan); font-weight: 600;
        }

        .project-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.8rem; }

        .project-subtitle {
            color: var(--accent-purple); font-size: 0.9rem;
            font-weight: 600; text-transform: uppercase;
            letter-spacing: 1px; margin-bottom: 1rem;
        }

        .project-description { color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.5rem; }

        .project-result {
            padding: 1rem;
            background: rgba(168, 85, 247, 0.1);
            border-left: 3px solid var(--accent-purple);
            border-radius: 8px; margin-top: 1.5rem;
        }

        .project-result-label {
            font-size: 0.85rem; color: var(--accent-purple);
            font-weight: 700; text-transform: uppercase;
            letter-spacing: 1px; margin-bottom: 0.5rem;
        }

        .project-result-text { color: var(--text-primary); font-weight: 600; }

        /* ═══ ABOUT ═══ */
        .about-container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
        .about-image { position: relative; }
        .about-image img { width: 100%; border-radius: 20px; border: 1px solid var(--glass-border); }

        .tech-stack { display: grid; grid-template-columns: repeat(auto-fit, minmax(80px, 1fr)); gap: 1.5rem; margin-top: 2rem; }

        .tech-item {
            background: var(--bg-card);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 12px; padding: 1.5rem 1rem;
            text-align: center; transition: all 0.3s ease;
        }

        .tech-item:hover { transform: translateY(-5px); border-color: var(--accent-cyan); box-shadow: var(--shadow-glow); }
        .tech-item img { width: 40px; height: 40px; margin-bottom: 0.8rem; }
        .tech-name { font-size: 0.85rem; color: var(--text-secondary); font-weight: 600; }

        /* ═══════════════════════════════════════════
           VIDEO SHOWCASE SECTION
        ═══════════════════════════════════════════ */

        #video-showcase {
            padding: 6rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }

        .video-showcase-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        @media (max-width: 968px) {
            .video-showcase-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
        }

        /* ── TV Monitor Mockup ── */
        .tv-mockup {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .tv-frame {
            background: linear-gradient(160deg, #1a1a2e 0%, #0d0d1a 60%, #12121f 100%);
            border: 3px solid #2a2a40;
            border-radius: 16px;
            padding: 18px 18px 12px;
            position: relative;
            width: 100%;
            box-shadow:
                0 0 0 1px rgba(0,240,255,0.15),
                0 25px 60px rgba(0,0,0,0.7),
                inset 0 1px 0 rgba(255,255,255,0.08);
        }

        /* TV bezel highlight */
        .tv-frame::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 50%;
            border-radius: 14px 14px 0 0;
            background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, transparent 100%);
            pointer-events: none;
        }

        /* TV glow */
        .tv-frame::after {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: 18px;
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple), var(--accent-pink));
            z-index: -1;
            opacity: 0.4;
            filter: blur(8px);
            animation: tvGlow 3s ease-in-out infinite alternate;
        }

        @keyframes tvGlow {
            from { opacity: 0.3; filter: blur(8px); }
            to   { opacity: 0.6; filter: blur(15px); }
        }

        .tv-screen {
            background: #000;
            border-radius: 8px;
            overflow: hidden;
            aspect-ratio: 16/9;
            position: relative;
        }

        .tv-screen video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Screen scanlines overlay */
        .tv-screen::after {
            content: '';
            position: absolute;
            inset: 0;
            background: repeating-linear-gradient(
                0deg,
                transparent,
                transparent 2px,
                rgba(0, 0, 0, 0.03) 2px,
                rgba(0, 0, 0, 0.03) 4px
            );
            pointer-events: none;
            z-index: 2;
        }

        /* Screen reflection */
        .tv-screen::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 35%;
            background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, transparent 100%);
            z-index: 3;
            pointer-events: none;
            border-radius: 8px 8px 0 0;
        }

        /* No-video placeholder */
        .tv-placeholder {
            width: 100%; height: 100%;
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #0a0a1a, #141428);
            color: var(--text-secondary);
            gap: 0.8rem;
            position: absolute;
            inset: 0;
        }

        .tv-placeholder-icon { font-size: 3rem; opacity: 0.4; }
        .tv-placeholder-text { font-size: 0.8rem; text-align: center; opacity: 0.5; line-height: 1.5; max-width: 160px; }

        .tv-stand-neck {
            width: 60px; height: 24px;
            background: linear-gradient(180deg, #1e1e30 0%, #141420 100%);
            clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
            margin-top: -1px;
            border: 1px solid rgba(255,255,255,0.05);
            border-top: none;
        }

        .tv-stand-base {
            width: 140px; height: 12px;
            background: linear-gradient(180deg, #1e1e30, #141420);
            border-radius: 6px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.5);
            border: 1px solid rgba(255,255,255,0.05);
        }

        /* TV brand dot */
        .tv-brand-dot {
            position: absolute;
            bottom: 18px;
            left: 50%;
            transform: translateX(-50%);
            width: 6px; height: 6px;
            border-radius: 50%;
            background: var(--accent-cyan);
            box-shadow: 0 0 8px var(--accent-cyan);
            animation: ledBlink 2s ease-in-out infinite;
        }

        @keyframes ledBlink {
            0%, 90%, 100% { opacity: 1; }
            95% { opacity: 0.3; }
        }

        /* TV label ribbon */
        .tv-label {
            position: absolute;
            top: -12px; left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
            color: white;
            font-size: 0.65rem;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
            padding: 3px 12px;
            border-radius: 20px;
            white-space: nowrap;
            box-shadow: 0 0 15px rgba(0,240,255,0.4);
            z-index: 5;
        }

        /* ── Tablet Mockup ── */
        .tablet-mockup {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .tablet-frame {
            background: linear-gradient(160deg, #1c1c2e 0%, #0e0e1c 100%);
            border: 4px solid #252535;
            border-radius: 24px;
            padding: 20px 14px;
            position: relative;
            width: 80%;
            max-width: 380px;
            box-shadow:
                0 0 0 1px rgba(168,85,247,0.15),
                0 30px 70px rgba(0,0,0,0.65),
                inset 0 1px 0 rgba(255,255,255,0.06);
        }

        .tablet-frame::after {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: 26px;
            background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink), var(--accent-cyan));
            z-index: -1;
            opacity: 0.35;
            filter: blur(10px);
            animation: tabletGlow 4s ease-in-out infinite alternate;
        }

        @keyframes tabletGlow {
            from { opacity: 0.25; filter: blur(10px); }
            to   { opacity: 0.5; filter: blur(18px); }
        }

        .tablet-camera {
            width: 8px; height: 8px;
            background: #111;
            border-radius: 50%;
            border: 1px solid #333;
            margin: 0 auto 10px;
            position: relative;
        }

        .tablet-camera::after {
            content: '';
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            width: 4px; height: 4px;
            background: #0a0a14;
            border-radius: 50%;
            box-shadow: 0 0 4px rgba(0,240,255,0.3);
        }

        .tablet-screen {
            background: #000;
            border-radius: 10px;
            overflow: hidden;
            aspect-ratio: 16/10;
            position: relative;
        }

        .tablet-screen video {
            width: 100%; height: 100%;
            object-fit: cover; display: block;
        }

        .tablet-screen::after {
            content: '';
            position: absolute; inset: 0;
            background: repeating-linear-gradient(
                0deg,
                transparent, transparent 2px,
                rgba(0, 0, 0, 0.02) 2px, rgba(0, 0, 0, 0.02) 4px
            );
            pointer-events: none; z-index: 2;
        }

        .tablet-screen::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 30%;
            background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, transparent 100%);
            z-index: 3; pointer-events: none;
            border-radius: 10px 10px 0 0;
        }

        .tablet-home-bar {
            width: 80px; height: 4px;
            background: rgba(255,255,255,0.15);
            border-radius: 2px;
            margin: 10px auto 0;
        }

        .tablet-label {
            position: absolute;
            top: -12px; left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
            color: white; font-size: 0.65rem;
            font-weight: 800; letter-spacing: 2px;
            text-transform: uppercase;
            padding: 3px 12px; border-radius: 20px;
            white-space: nowrap;
            box-shadow: 0 0 15px rgba(168,85,247,0.4);
            z-index: 5;
        }

        /* Video section text side */
        .video-text {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .video-text .section-label { text-align: left; }

        .video-text h2 {
            font-size: clamp(1.8rem, 3.5vw, 2.8rem);
            font-weight: 800;
            line-height: 1.2;
        }

        .video-text p {
            color: var(--text-secondary);
            line-height: 1.8;
            font-size: 1.05rem;
        }

        .video-feature-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .video-feature-list li {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

        .video-feature-list li::before {
            content: '';
            width: 8px; height: 8px;
            border-radius: 50%;
            background: var(--accent-cyan);
            flex-shrink: 0;
            box-shadow: 0 0 8px var(--accent-cyan);
        }

        /* ═══ CONTACT ═══ */
        .contact-container {
            background: var(--bg-card);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 30px; padding: 4rem;
            max-width: 800px; margin: 0 auto; text-align: center;
        }

        .contact-form { display: grid; gap: 1.5rem; margin-top: 3rem; }
        .form-group { text-align: left; }

        .form-group label { display: block; margin-bottom: 0.5rem; color: var(--text-secondary); font-weight: 600; }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%; padding: 1rem 1.5rem;
            background: var(--bg-secondary);
            border: 1px solid var(--glass-border);
            border-radius: 10px; color: var(--text-primary);
            font-family: 'Outfit', sans-serif; font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none; border-color: var(--accent-cyan);
            box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.1);
        }

        .form-group textarea { resize: vertical; min-height: 150px; }

        .trust-badge {
            display: inline-block; padding: 1rem 2rem;
            background: rgba(0, 240, 255, 0.1);
            border: 1px solid rgba(0, 240, 255, 0.3);
            border-radius: 50px; margin-top: 2rem;
            color: var(--accent-cyan); font-weight: 600;
        }

        /* ═══ FOOTER ═══ */
        footer { background: var(--bg-secondary); border-top: 1px solid var(--glass-border); padding: 3rem 2rem 2rem; }

        .footer-container {
            max-width: 1400px; margin: 0 auto;
            display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem;
        }

        .footer-section h3 { margin-bottom: 1.5rem; font-size: 1.2rem; }
        .footer-section ul { list-style: none; }
        .footer-section ul li { margin-bottom: 0.8rem; }
        .footer-section a { color: var(--text-secondary); text-decoration: none; transition: color 0.3s ease; }
        .footer-section a:hover { color: var(--accent-cyan); }

        .social-links { display: flex; gap: 0.7rem; margin-top: 1rem; flex-wrap: wrap; }

        .social-link.sl-x:hover {
            background: #000000; border-color: #333333;
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }

        .social-link {
            width: 42px; height: 42px;
            background: var(--bg-card);
            border: 1px solid var(--glass-border);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            color: var(--text-primary); text-decoration: none;
            font-size: 1.15rem; transition: all 0.3s ease; flex-shrink: 0;
        }

        .social-link.sl-instagram:hover { background: #e1306c; border-color: #e1306c; box-shadow: 0 0 20px rgba(225,48,108,0.4); transform: translateY(-3px); }
        .social-link.sl-discord:hover   { background: #5865f2; border-color: #5865f2; box-shadow: 0 0 20px rgba(88,101,242,0.4); transform: translateY(-3px); }
        .social-link.sl-github:hover    { background: #6e40c9; border-color: #6e40c9; box-shadow: 0 0 20px rgba(110,64,201,0.4); transform: translateY(-3px); }
        .social-link.sl-tiktok:hover    { background: #010101; border-color: #69c9d0;  box-shadow: 0 0 20px rgba(105,201,208,0.4); transform: translateY(-3px); }
        .social-link.sl-youtube:hover   { background: #ff0000; border-color: #ff0000; box-shadow: 0 0 20px rgba(255,0,0,0.4); transform: translateY(-3px); }

        .footer-bottom {
            text-align: center; margin-top: 3rem; padding-top: 2rem;
            border-top: 1px solid var(--glass-border); color: var(--text-secondary);
        }

        /* ═══════════════════════════════════════
           WHATSAPP FLOATING BUTTON
        ═══════════════════════════════════════ */

        .whatsapp-float {
            position: fixed;
            bottom: 28px;
            right: 28px;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 10px;
        }

        /* Chat bubble popup */
        .wa-bubble {
            background: #1f1f2e;
            border: 1px solid rgba(37, 211, 102, 0.3);
            border-radius: 16px;
            padding: 12px 16px;
            max-width: 220px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.4);
            transform: translateY(8px) scale(0.95);
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
            transform-origin: bottom right;
        }

        .wa-bubble.visible {
            transform: translateY(0) scale(1);
            opacity: 1;
            pointer-events: all;
        }

        .wa-bubble-title {
            font-size: 0.75rem;
            font-weight: 700;
            color: #25d366;
            margin-bottom: 4px;
        }

        .wa-bubble-text {
            font-size: 0.8rem;
            color: var(--text-secondary);
            line-height: 1.4;
        }

        /* Triangle pointer — points down-right toward the button */
        .wa-bubble::after {
            content: '';
            position: absolute;
            bottom: -8px;
            right: 20px;
            width: 0; height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-top: 8px solid #1f1f2e;
        }

        /* Main WhatsApp button */
        .wa-btn {
            width: 58px; height: 58px;
            border-radius: 50%;
            background: linear-gradient(135deg, #25d366, #128c7e);
            display: flex; align-items: center; justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 20px rgba(37,211,102,0.45);
            transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
            position: relative;
            cursor: pointer;
            border: none;
        }

        .wa-btn:hover {
            transform: scale(1.12) translateY(-3px);
            box-shadow: 0 8px 35px rgba(37,211,102,0.6);
        }

        .wa-btn:active { transform: scale(0.96); }

        .wa-btn svg { width: 30px; height: 30px; fill: white; }

        /* Ping animation ring */
        .wa-btn::before {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            border: 2px solid rgba(37,211,102,0.5);
            animation: waPing 2.5s ease-out infinite;
        }

        .wa-btn::after {
            content: '';
            position: absolute;
            inset: -8px;
            border-radius: 50%;
            border: 2px solid rgba(37,211,102,0.25);
            animation: waPing 2.5s ease-out infinite 0.5s;
        }

        @keyframes waPing {
            0%   { transform: scale(1);   opacity: 1; }
            100% { transform: scale(1.5); opacity: 0; }
        }

        /* Online indicator dot */
        .wa-online {
            position: absolute;
            top: 2px; right: 2px;
            width: 14px; height: 14px;
            background: #25d366;
            border-radius: 50%;
            border: 2px solid var(--bg-primary);
            animation: waPulse 2s ease-in-out infinite;
            z-index: 1;
        }

        @keyframes waPulse {
            0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
            50% { transform: scale(1.1); box-shadow: 0 0 0 5px rgba(37,211,102,0); }
        }

        /* ═══ RESPONSIVE ═══ */
        @media (max-width: 1200px) {
            .hero-container { gap: 2.5rem; }
            .services-grid { grid-template-columns: repeat(2, 1fr); }
            .projects-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 968px) {
            .nav-links {
                display: flex; position: fixed;
                top: 0; left: 0; right: 0;
                transform: translateY(-110%);
                flex-direction: column;
                align-items: stretch; justify-content: flex-start;
                gap: 0; z-index: 998;
                padding: 80px 0 2rem;
                background: rgba(10, 10, 15, 0.98);
                backdrop-filter: blur(24px);
                -webkit-backdrop-filter: blur(24px);
                border-bottom: 1px solid rgba(168,85,247,0.25);
                box-shadow: 0 20px 60px rgba(0,0,0,0.6);
                transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            }
            .nav-links.mobile-open { transform: translateY(0); }
            .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.06); }
            .nav-links li:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
            .nav-links a {
                display: flex; align-items: center;
                padding: 1.1rem 2rem; font-size: 1.05rem;
                font-weight: 600; color: var(--text-secondary);
                width: 100%; transition: all 0.25s ease;
            }
            .nav-links a:hover, .nav-links a:active {
                color: var(--accent-cyan);
                background: rgba(0,240,255,0.06);
                padding-left: 2.5rem;
            }
            .nav-links a::after { display: none; }
            .mobile-menu-btn { display: flex; z-index: 1001; position: relative; }
            .cta-nav { display: none; }
            .hero { padding: 7rem 1.5rem 3rem; }
            .hero-container { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
            .hero-cta { justify-content: center; flex-wrap: wrap; }
            .hero-content h1 { font-size: clamp(2rem, 7vw, 3rem); }
            .stats-grid { grid-template-columns: repeat(4, 1fr); }
            section { padding: 4rem 1.5rem; }
            .services-grid { grid-template-columns: 1fr; }
            .projects-grid { grid-template-columns: 1fr; }
            .about-container { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
            .tech-stack { justify-items: center; }
            .contact-container { padding: 2rem 1.5rem; }
            .games-grid { gap: 1rem; }
            .tournament-banner { padding: 2.5rem 2rem; }
            .tournament-meta { gap: 1rem; justify-content: center; }
            .video-text .section-label { text-align: center; }
            .video-text h2 { text-align: center; }
            .tablet-frame { width: 65%; }
        }

        @media (max-width: 768px) {
            .hero { padding: 6rem 1.2rem 2.5rem; min-height: auto; }
            .hero-content h1 { font-size: clamp(1.8rem, 8vw, 2.6rem); }
            .hero-content .subtitle { font-size: 1.05rem; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .stat-number { font-size: 2rem; }
            .section-title { font-size: clamp(1.6rem, 6vw, 2.5rem); }
            .section-subtitle { font-size: 1rem; }
            .service-card { padding: 2rem 1.5rem; }
            .project-image { height: 200px; }
            .project-content { padding: 1.5rem; }
            .tournament-banner { padding: 2rem 1.2rem; }
            .tournament-banner h3 { font-size: 1.6rem; }
            .tournament-meta { flex-direction: row; flex-wrap: wrap; gap: 0.8rem; }
            .t-meta-item { padding: 0.8rem 1.2rem; min-width: 100px; flex: 1 1 120px; }
            .footer-container { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
            .trust-badge { font-size: 0.85rem; padding: 0.8rem 1.2rem; text-align: center; line-height: 1.6; }
            .whatsapp-float { bottom: 20px; right: 16px; }
            .wa-btn { width: 52px; height: 52px; }
            .wa-btn svg { width: 26px; height: 26px; }
        }

        @media (max-width: 600px) {
            .nav-container { padding: 0 1rem; }
            .logo { font-size: 1.2rem; }
            .hero { padding: 5.5rem 1rem 2rem; }
            .hero-cta { flex-direction: column; width: 100%; gap: 1rem; }
            .btn-primary, .btn-secondary { width: 100%; text-align: center; padding: 1rem 1.5rem; font-size: 1rem; min-height: 52px; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
            section { padding: 3rem 1rem; }
            .section-label { font-size: 0.8rem; }
            .service-card { padding: 1.8rem 1.2rem; border-radius: 16px; }
            .service-title { font-size: 1.3rem; }
            .service-price { font-size: 1.6rem; }
            .service-icon { width: 50px; height: 50px; font-size: 1.4rem; }
            .project-image { height: 180px; }
            .about-image img { max-height: 280px; object-fit: cover; }
            .tech-stack { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
            .tech-item { padding: 1rem 0.6rem; }
            .contact-container { padding: 1.8rem 1rem; border-radius: 20px; }
            .form-group input, .form-group select, .form-group textarea { padding: 0.85rem 1rem; font-size: 0.95rem; min-height: 48px; }
            .gamer-profile { padding: 1.5rem 1rem; gap: 1.1rem; }
            .games-grid { gap: 0.75rem; }
            .game-desc { display: none; }
            .tournament-banner { padding: 1.8rem 1rem; border-radius: 20px; }
            .btn-tournament { width: 100%; padding: 1rem; font-size: 1rem; min-height: 52px; }
            .modal { padding: 2rem 1.2rem; border-radius: 20px; max-height: 95vh; }
            .modal-header h3 { font-size: 1.4rem; }
            .modal-form input, .modal-form select { padding: 0.8rem 1rem; min-height: 48px; }
            .modal-submit { min-height: 52px; font-size: 1rem; }
            .footer-container { grid-template-columns: 1fr; gap: 1.5rem; }
            footer { padding: 2.5rem 1rem 1.5rem; }
            .video-showcase-grid { gap: 2rem; }
            .tablet-frame { width: 70%; }
        }

        @media (max-width: 400px) {
            .hero-content h1 { font-size: clamp(1.6rem, 9vw, 2rem); }
            .games-grid { gap: 0.6rem; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .tech-stack { grid-template-columns: repeat(2, 1fr); }
            .tournament-meta { flex-direction: column; align-items: center; }
            .t-meta-item { width: 100%; max-width: 240px; }
            .gamer-profile { padding: 1.2rem 0.9rem; gap: 1rem; }
            .gamer-badge { font-size: 0.68rem; padding: 0.25rem 0.65rem; }
            .gamer-stat-mini { padding: 0.5rem 0.8rem; min-width: 60px; }
            .gamer-stat-mini .num { font-size: 1.1rem; }
        }

        /* Scroll Reveal */
        .reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
        .reveal.active { opacity: 1; transform: translateY(0); }

        /* ═══ GAMING SECTION ═══ */
        #gaming-wrapper {
            position: relative;
            background: linear-gradient(180deg, var(--bg-primary) 0%, #0d0a1a 50%, var(--bg-primary) 100%);
            overflow: hidden;
        }

        #gaming-wrapper::before {
            content: '';
            position: absolute; inset: 0;
            background-image:
                radial-gradient(circle at 15% 40%, rgba(168,85,247,0.18) 0%, transparent 45%),
                radial-gradient(circle at 85% 60%, rgba(0,240,255,0.14) 0%, transparent 45%),
                radial-gradient(circle at 50% 10%,  rgba(236,72,153,0.10) 0%, transparent 40%);
            pointer-events: none;
            animation: gamingBg 12s ease-in-out infinite alternate;
        }

        @keyframes gamingBg {
            from { opacity: 0.6; transform: scale(1); }
            to   { opacity: 1.0; transform: scale(1.05); }
        }

        #gaming { position: relative; z-index: 1; }

        .gamer-profile {
            display: flex; flex-direction: column;
            align-items: center; text-align: center;
            gap: 1.6rem; background: var(--bg-card);
            backdrop-filter: blur(24px);
            border: 1px solid rgba(168,85,247,0.35);
            border-radius: 24px; padding: 2rem 1.2rem;
            margin-bottom: 4rem; position: relative;
            overflow: hidden;
            box-shadow: 0 0 40px rgba(168,85,247,0.15);
            width: 100%; box-sizing: border-box;
        }

        @media (min-width: 900px) {
            .gamer-profile { flex-direction: row; align-items: center; text-align: left; padding: 2.5rem 3rem; gap: 2.5rem; }
        }

        .gamer-profile::before {
            content: '';
            position: absolute;
            top: -2px; left: -2px; right: -2px; bottom: -2px;
            border-radius: 25px;
            background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan), var(--accent-pink));
            z-index: -1;
            animation: borderRotate 4s linear infinite;
            opacity: 0.5;
        }

        @keyframes borderRotate {
            0% { filter: hue-rotate(0deg); }
            100% { filter: hue-rotate(360deg); }
        }

        .gamer-avatar {
            width: 100px; height: 100px; border-radius: 50%;
            background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
            display: flex; align-items: center; justify-content: center;
            font-size: 2.6rem; flex-shrink: 0;
            box-shadow: 0 0 30px rgba(168,85,247,0.5);
            animation: avatarFloat 3s ease-in-out infinite;
            margin: 0 auto;
        }

        @media (min-width: 900px) {
            .gamer-avatar { width: 110px; height: 110px; font-size: 3rem; margin: 0; }
        }

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

        .gamer-info { flex: 1; min-width: 0; width: 100%; }

        .gamer-info h3 {
            font-size: 1.6rem; font-weight: 800;
            background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text; margin-bottom: 0.4rem; word-break: break-word;
        }

        @media (min-width: 900px) { .gamer-info h3 { font-size: 1.9rem; } }

        .gamer-info p { color: var(--text-secondary); margin-bottom: 1rem; }

        .gamer-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; }
        @media (min-width: 900px) { .gamer-badges { justify-content: flex-start; } }

        .gamer-badge { padding: 0.3rem 0.9rem; border-radius: 20px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.5px; }
        .gamer-badge.purple { background: rgba(168,85,247,0.2); border: 1px solid rgba(168,85,247,0.5); color: #c084fc; }
        .gamer-badge.cyan   { background: rgba(0,240,255,0.15); border: 1px solid rgba(0,240,255,0.4); color: var(--accent-cyan); }
        .gamer-badge.orange { background: rgba(249,115,22,0.2); border: 1px solid rgba(249,115,22,0.5); color: #fb923c; }
        .gamer-badge.pink   { background: rgba(236,72,153,0.2); border: 1px solid rgba(236,72,153,0.5); color: #f472b6; }

        .gamer-stats-mini { display: flex; flex-direction: row; justify-content: center; align-items: center; gap: 0.8rem; flex-wrap: wrap; width: 100%; }

        .gamer-stat-mini { background: rgba(255,255,255,0.04); border: 1px solid var(--glass-border); border-radius: 12px; padding: 0.7rem 1.2rem; text-align: center; flex: 1; min-width: 70px; }

        @media (min-width: 900px) {
            .gamer-stats-mini { flex-direction: column; justify-content: center; width: auto; flex-shrink: 0; }
            .gamer-stat-mini { padding: 0.8rem 1.5rem; flex: none; }
        }

        .gamer-stat-mini .num {
            font-size: 1.5rem; font-weight: 800;
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .gamer-stat-mini .lbl { font-size: 0.75rem; color: var(--text-secondary); }

        .games-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 4rem; }
        @media (min-width: 640px) { .games-grid { grid-template-columns: repeat(3, 1fr); gap: 1.4rem; } }
        @media (min-width: 1024px) { .games-grid { grid-template-columns: repeat(3, 1fr); gap: 1.8rem; } }

        .game-card {
            background: var(--bg-card); backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border); border-radius: 20px;
            padding: 0; overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
            position: relative; cursor: pointer;
        }

        .game-card:hover { transform: translateY(-12px) scale(1.02); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
        .game-card.active-game { border-color: var(--accent-cyan); box-shadow: var(--shadow-glow); }
        .game-card.coming-soon { border-color: rgba(249,115,22,0.4); }

        .game-banner {
            height: 80px; display: flex;
            align-items: center; justify-content: center;
            font-size: 2.6rem; position: relative; overflow: hidden;
        }

        @media (min-width: 640px) { .game-banner { height: 100px; font-size: 3.2rem; } }
        @media (min-width: 1024px) { .game-banner { height: 120px; font-size: 4rem; } }

        .game-banner::after {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(to bottom, transparent 50%, var(--bg-card));
        }

        .banner-ff   { background: linear-gradient(135deg, #ff4500 0%, #ff8c00 50%, #1a0000 100%); }
        .banner-gd   { background: linear-gradient(135deg, #0a1628 0%, #1565c0 50%, #42a5f5 100%); }
        .banner-codm { background: linear-gradient(135deg, #0d0d0d 0%, #2d5a27 50%, #4a7c3f 100%); }
        .banner-bs   { background: linear-gradient(135deg, #1a0033 0%, #6a1b9a 50%, #9c27b0 100%); }
        .banner-ef   { background: linear-gradient(135deg, #003087 0%, #00285a 50%, #00a651 100%); }
        .banner-fn   { background: linear-gradient(135deg, #0d1b2a 0%, #1b3a5c 50%, #00d4ff 100%); }

        .game-info { padding: 0.9rem 1rem 1.1rem; }
        @media (min-width: 640px) { .game-info { padding: 1.2rem 1.4rem 1.5rem; } }

        .game-name { font-size: 0.95rem; font-weight: 800; margin-bottom: 0.25rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        @media (min-width: 640px) { .game-name { font-size: 1.1rem; white-space: normal; } }
        @media (min-width: 1024px) { .game-name { font-size: 1.25rem; } }

        .game-platform { font-size: 0.72rem; color: var(--text-secondary); margin-bottom: 0.6rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        @media (min-width: 640px) { .game-platform { font-size: 0.8rem; margin-bottom: 0.8rem; white-space: normal; } }

        .game-status { display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.28rem 0.65rem; border-radius: 20px; font-size: 0.68rem; font-weight: 700; }
        @media (min-width: 640px) { .game-status { padding: 0.35rem 0.9rem; font-size: 0.75rem; } }

        .status-active { background: rgba(0,240,255,0.15); color: var(--accent-cyan); border: 1px solid rgba(0,240,255,0.3); }
        .status-soon   { background: rgba(249,115,22,0.15); color: #fb923c; border: 1px solid rgba(249,115,22,0.35); }

        .status-dot { width: 6px; height: 6px; border-radius: 50%; animation: blink 1.4s ease-in-out infinite; }
        .status-active .status-dot { background: var(--accent-cyan); }
        .status-soon   .status-dot { background: #fb923c; animation: none; }

        @keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }

        .game-desc { color: var(--text-secondary); font-size: 0.8rem; line-height: 1.55; margin-top: 0.6rem; display: none; }
        @media (min-width: 640px) { .game-desc { display: block; font-size: 0.85rem; margin-top: 0.8rem; } }

        /* ── Tournament ── */
        .tournament-banner {
            background: linear-gradient(135deg, rgba(168,85,247,0.15) 0%, rgba(0,240,255,0.1) 100%);
            border: 1px solid rgba(168,85,247,0.4);
            border-radius: 28px; padding: 3.5rem;
            text-align: center; position: relative; overflow: hidden;
        }

        .tournament-banner::before {
            content: '🏆';
            position: absolute; font-size: 18rem;
            top: 50%; left: 50%;
            transform: translate(-50%,-50%);
            opacity: 0.03; pointer-events: none;
        }

        .tournament-status-pill {
            display: inline-flex; align-items: center; gap: 0.5rem;
            padding: 0.5rem 1.4rem;
            background: rgba(239,68,68,0.15);
            border: 1px solid rgba(239,68,68,0.4);
            border-radius: 50px; font-size: 0.8rem;
            font-weight: 700; color: #f87171;
            margin-bottom: 1.5rem; letter-spacing: 0.5px;
        }

        .live-dot { width: 8px; height: 8px; border-radius: 50%; background: #ef4444; animation: livePulse 1s ease-in-out infinite; }
        @keyframes livePulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: 0.5; } }

        .tournament-banner h3 {
            font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--text-primary), var(--accent-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .tournament-banner p { color: var(--text-secondary); font-size: 1.05rem; max-width: 560px; margin: 0 auto 2rem; line-height: 1.7; }

        .tournament-meta { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

        .t-meta-item { background: rgba(255,255,255,0.04); border: 1px solid var(--glass-border); border-radius: 12px; padding: 1rem 1.8rem; text-align: center; min-width: 120px; }
        .t-meta-icon { font-size: 1.5rem; margin-bottom: 0.3rem; }
        .t-meta-val  { font-size: 1.1rem; font-weight: 700; color: var(--accent-cyan); }
        .t-meta-key  { font-size: 0.75rem; color: var(--text-secondary); margin-top: 0.2rem; }

        .btn-tournament {
            padding: 1.1rem 3rem;
            background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
            border: none; border-radius: 12px; color: white;
            font-family: 'Outfit', sans-serif;
            font-weight: 700; font-size: 1.15rem;
            cursor: pointer; transition: all 0.3s ease;
            position: relative; overflow: hidden; letter-spacing: 0.3px;
        }

        .btn-tournament::before {
            content: ''; position: absolute; top: 0; left: -100%;
            width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
            transition: left 0.5s;
        }

        .btn-tournament:hover::before { left: 100%; }
        .btn-tournament:hover { transform: translateY(-4px); box-shadow: 0 0 35px rgba(168,85,247,0.5); }

        /* ── Modal ── */
        .modal-overlay {
            position: fixed; inset: 0;
            background: rgba(0,0,0,0.85);
            backdrop-filter: blur(8px);
            z-index: 9000; display: flex;
            align-items: center; justify-content: center;
            padding: 1.5rem;
            opacity: 0; pointer-events: none;
            transition: opacity 0.35s ease;
        }

        .modal-overlay.open { opacity: 1; pointer-events: all; }

        .modal {
            background: #13131f;
            border: 1px solid rgba(168,85,247,0.4);
            border-radius: 24px; padding: 3rem;
            width: 100%; max-width: 560px;
            max-height: 90vh; overflow-y: auto;
            transform: translateY(40px) scale(0.96);
            transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
            position: relative;
        }

        .modal-overlay.open .modal { transform: translateY(0) scale(1); }

        .modal-close {
            position: absolute; top: 1.2rem; right: 1.4rem;
            background: rgba(255,255,255,0.07);
            border: 1px solid var(--glass-border);
            border-radius: 50%; width: 36px; height: 36px;
            color: var(--text-primary); font-size: 1.2rem;
            cursor: pointer; display: flex;
            align-items: center; justify-content: center;
            transition: all 0.3s;
        }

        .modal-close:hover { background: rgba(239,68,68,0.25); border-color: #ef4444; }

        .modal-header { text-align: center; margin-bottom: 2rem; }
        .modal-icon { font-size: 3.5rem; margin-bottom: 0.5rem; }

        .modal-header h3 {
            font-size: 1.8rem; font-weight: 800;
            background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text; margin-bottom: 0.4rem;
        }

        .modal-header p { color: var(--text-secondary); font-size: 0.95rem; }

        .modal-form { display: grid; gap: 1.2rem; }

        .modal-form label { display: block; margin-bottom: 0.45rem; color: var(--text-secondary); font-weight: 600; font-size: 0.9rem; }

        .modal-form input,
        .modal-form select {
            width: 100%; padding: 0.9rem 1.2rem;
            background: rgba(255,255,255,0.05);
            border: 1px solid var(--glass-border);
            border-radius: 10px; color: var(--text-primary);
            font-family: 'Outfit', sans-serif;
            font-size: 0.95rem; transition: all 0.3s;
        }

        .modal-form input:focus,
        .modal-form select:focus {
            outline: none; border-color: var(--accent-purple);
            box-shadow: 0 0 0 3px rgba(168,85,247,0.15);
        }

        .modal-form select option { background: #13131f; }

        .modal-submit {
            margin-top: 0.5rem; width: 100%; padding: 1rem;
            background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
            border: none; border-radius: 10px; color: white;
            font-family: 'Outfit', sans-serif; font-weight: 700;
            font-size: 1.05rem; cursor: pointer; transition: all 0.3s;
        }

        .modal-submit:hover { transform: translateY(-2px); box-shadow: 0 0 25px rgba(168,85,247,0.4); }

        .modal-success { text-align: center; padding: 2rem 0; display: none; }
        .modal-success .check { font-size: 4rem; margin-bottom: 1rem; }
        .modal-success h4 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.7rem; color: var(--accent-cyan); }
        .modal-success p { color: var(--text-secondary); line-height: 1.6; }

        /* ── Typing Cursor ── */
        .typing-cursor::after {
            content: '|'; color: var(--accent-cyan);
            font-weight: 400; animation: blink-cursor 0.8s infinite; margin-left: 2px;
        }

        @keyframes blink-cursor { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }

        .hero-content h1, .hero-content .subtitle, .section-subtitle { min-height: 1.2em; display: block; }

        /* ═══ ENHANCED DECORATIVE ELEMENTS ═══ */

        /* Glowing horizontal dividers between sections */
        .section-divider {
            width: 100%; max-width: 1400px;
            margin: 0 auto;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(0,240,255,0.3), rgba(168,85,247,0.3), transparent);
            position: relative;
        }

        .section-divider::after {
            content: '';
            position: absolute;
            left: 50%; top: 50%;
            transform: translate(-50%, -50%);
            width: 6px; height: 6px;
            border-radius: 50%;
            background: var(--accent-cyan);
            box-shadow: 0 0 12px var(--accent-cyan);
        }


        /* ═══════════════════════════════════════════════════════
           ENHANCED PRO DECORATIONS
        ═══════════════════════════════════════════════════════ */

        /* ── Corner bracket accents on ALL service cards ── */
        .service-card::after {
            content: '';
            position: absolute;
            top: 12px; right: 12px;
            width: 24px; height: 24px;
            border-top: 1.5px solid rgba(0,240,255,0.2);
            border-right: 1.5px solid rgba(0,240,255,0.2);
            border-radius: 0 6px 0 0;
            transition: all 0.4s ease;
        }
        .service-card::before {
            content: '';
            position: absolute;
            bottom: 12px; left: 12px;
            width: 24px; height: 24px;
            border-bottom: 1.5px solid rgba(168,85,247,0.2);
            border-left: 1.5px solid rgba(168,85,247,0.2);
            border-radius: 0 0 0 6px;
            transition: all 0.4s ease;
            opacity: 1;
            background: none;
        }
        .service-card:hover::after {
            border-color: var(--accent-cyan);
            width: 32px; height: 32px;
        }
        .service-card:hover::before {
            border-color: var(--accent-purple);
            width: 32px; height: 32px;
        }
        /* Quick-fix card keeps its gradient overlay before, so we override */
        .service-card.quick-fix::after {
            border-top-color: rgba(245,158,11,0.4);
            border-right-color: rgba(245,158,11,0.4);
        }
        .service-card.quick-fix:hover::after {
            border-color: #f59e0b;
        }

        /* ── Neon tag accent for section labels ── */
        .section-label {
            position: relative;
        }
        .section-label::before {
            content: '< ';
            color: rgba(0,240,255,0.35);
            font-family: 'Space Mono', monospace;
            font-size: 0.75rem;
        }
        .section-label::after {
            content: ' />';
            color: rgba(0,240,255,0.35);
            font-family: 'Space Mono', monospace;
            font-size: 0.75rem;
        }

        /* ── Animated hero code ticker ── */
        .hero-code-ticker {
            position: absolute;
            bottom: 2.5rem;
            left: 0; right: 0;
            overflow: hidden;
            height: 28px;
            pointer-events: none;
        }
        .hero-code-ticker-inner {
            display: flex;
            gap: 3rem;
            animation: tickerScroll 28s linear infinite;
            white-space: nowrap;
        }
        .hero-code-ticker-inner span {
            font-family: 'Space Mono', monospace;
            font-size: 0.7rem;
            color: rgba(0,240,255,0.18);
            flex-shrink: 0;
        }
        @keyframes tickerScroll {
            from { transform: translateX(0); }
            to   { transform: translateX(-50%); }
        }

        /* ── Floating orbs decoration (injected via JS) ── */
        .deco-orb {
            position: fixed;
            border-radius: 50%;
            pointer-events: none;
            z-index: -1;
            filter: blur(80px);
            opacity: 0;
            animation: orbDrift linear infinite;
        }
        @keyframes orbDrift {
            0%   { transform: translate(0, 0) scale(1); opacity: 0; }
            10%  { opacity: 1; }
            90%  { opacity: 1; }
            100% { transform: translate(var(--dx), var(--dy)) scale(0.8); opacity: 0; }
        }

        /* ── Section number watermarks ── */
        .section-watermark {
            position: absolute;
            top: 1rem;
            right: 2rem;
            font-family: 'Space Mono', monospace;
            font-size: clamp(4rem, 10vw, 9rem);
            font-weight: 700;
            color: rgba(255,255,255,0.025);
            line-height: 1;
            pointer-events: none;
            user-select: none;
            letter-spacing: -0.05em;
        }

        /* ── Glowing line decoration above section titles ── */
        .section-header { position: relative; }
        .section-header::before {
            content: '';
            display: block;
            width: 60px; height: 2px;
            background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
            margin: 0 auto 1.5rem;
            border-radius: 2px;
            box-shadow: 0 0 12px rgba(0,240,255,0.5);
        }

        /* ── Project card corner brackets ── */
        .project-card::before {
            content: '';
            position: absolute;
            top: 12px; left: 12px;
            width: 20px; height: 20px;
            border-top: 1.5px solid rgba(0,240,255,0.15);
            border-left: 1.5px solid rgba(0,240,255,0.15);
            border-radius: 4px 0 0 0;
            transition: all 0.4s ease;
            z-index: 2;
        }
        .project-card:hover::before {
            border-color: var(--accent-purple);
            width: 28px; height: 28px;
        }

        /* ── Scanline overlay on hero ── */
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: repeating-linear-gradient(
                0deg,
                transparent,
                transparent 3px,
                rgba(0,0,0,0.03) 3px,
                rgba(0,0,0,0.03) 4px
            );
            pointer-events: none;
            z-index: 0;
        }
        .hero-container { position: relative; z-index: 1; }

        /* ── Glowing stat numbers ── */
        .stat-number {
            text-shadow: 0 0 20px rgba(0,240,255,0.4);
        }

        /* ── Tech item inner glow ring ── */
        .tech-item:hover {
            background: rgba(0,240,255,0.05);
        }
        .tech-item::after {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: 13px;
            background: linear-gradient(135deg, rgba(0,240,255,0.1), rgba(168,85,247,0.1));
            opacity: 0;
            transition: opacity 0.3s;
            z-index: -1;
        }
        .tech-item { position: relative; }
        .tech-item:hover::after { opacity: 1; }

        /* ── About section decorative line ── */
        .about-content {
            position: relative;
        }
        .about-content::before {
            content: '';
            position: absolute;
            top: 0; left: -2rem;
            width: 2px; height: 100%;
            background: linear-gradient(180deg, transparent, var(--accent-cyan), var(--accent-purple), transparent);
            opacity: 0.3;
        }

        /* ── Glow ring on floating card ── */
        .floating-card {
            position: relative;
        }
        .floating-card::before {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: 21px;
            background: linear-gradient(135deg, rgba(0,240,255,0.15), rgba(168,85,247,0.15), rgba(236,72,153,0.1));
            z-index: -1;
            animation: cardRingRotate 6s linear infinite;
        }
        @keyframes cardRingRotate {
            0%   { filter: hue-rotate(0deg); opacity: 0.5; }
            50%  { opacity: 1; }
            100% { filter: hue-rotate(360deg); opacity: 0.5; }
        }

        /* ── Contact section glowing border ── */
        .contact-container {
            position: relative;
        }
        .contact-container::before {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: 31px;
            background: linear-gradient(135deg, rgba(0,240,255,0.12), rgba(168,85,247,0.12), rgba(236,72,153,0.08));
            z-index: -1;
            animation: contactGlow 5s ease-in-out infinite alternate;
        }
        @keyframes contactGlow {
            from { opacity: 0.4; }
            to   { opacity: 1; }
        }

        /* ── Noise texture overlay (subtle grain) ── */
        .noise-overlay {
            position: fixed;
            inset: 0;
            opacity: 0.025;
            z-index: 0;
            pointer-events: none;
            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)'/%3E%3C/svg%3E");
            background-size: 200px 200px;
        }

        /* ── Stat item hover glow ── */
        .stat-item {
            transition: transform 0.3s ease;
            padding: 0.5rem;
            border-radius: 10px;
        }
        .stat-item:hover {
            transform: scale(1.08);
            background: rgba(0,240,255,0.04);
        }

        /* ── Service price glow ── */
        .service-price {
            text-shadow: 0 0 25px rgba(0,240,255,0.3);
        }
        .service-card.quick-fix .service-price {
            text-shadow: 0 0 25px rgba(245,158,11,0.4);
        }

        /* ── Nav logo subtle pulse ── */
        .logo {
            animation: logoPulse 4s ease-in-out infinite;
        }
        @keyframes logoPulse {
            0%, 100% { filter: drop-shadow(0 0 4px rgba(0,240,255,0.2)); }
            50%       { filter: drop-shadow(0 0 12px rgba(0,240,255,0.5)); }
        }

        /* ── CTA button shimmer ── */
        .cta-nav {
            position: relative;
            overflow: hidden;
        }
        .cta-nav::after {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 60px; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            animation: navShimmer 3s ease-in-out infinite 1s;
        }
        @keyframes navShimmer {
            0%   { left: -100%; }
            50%, 100% { left: 150%; }
        }

        /* ── Footer brand glow ── */
        .footer-section h3 {
            background: linear-gradient(135deg, var(--text-primary), var(--accent-cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* ── Horizontal scan line accent on section dividers ── */
        .section-divider {
            width: 100%; max-width: 1400px; margin: 0 auto;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(0,240,255,0.3), rgba(168,85,247,0.3), transparent);
            position: relative;
        }
        .section-divider::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 100%;
            height: 1px;
            background: linear-gradient(90deg, rgba(0,240,255,0.8), rgba(168,85,247,0.8));
            animation: scanLine 4s ease-in-out infinite;
        }
        @keyframes scanLine {
            0%   { left: 0%; right: 100%; opacity: 1; }
            50%  { left: 0%; right: 0%; opacity: 1; }
            75%  { left: 100%; right: 0%; opacity: 0.5; }
            100% { left: 100%; right: 0%; opacity: 0; }
        }
        .section-divider::after {
            content: '◆';
            position: absolute;
            left: 50%; top: 50%;
            transform: translate(-50%, -50%);
            font-size: 0.5rem;
            color: var(--accent-cyan);
            text-shadow: 0 0 10px var(--accent-cyan);
            animation: diamondPulse 2s ease-in-out infinite;
        }
        @keyframes diamondPulse {
            0%, 100% { opacity: 0.6; transform: translate(-50%,-50%) rotate(0deg) scale(1); }
            50%       { opacity: 1;   transform: translate(-50%,-50%) rotate(45deg) scale(1.3); }
        }

        /* ── Gaming section extra neon lines ── */
        #gaming-wrapper::after {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(168,85,247,0.6), rgba(0,240,255,0.6), transparent);
        }

        /* ── Game card shine effect ── */
        .game-card::after {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
            transition: left 0.6s ease;
        }
        .game-card:hover::after {
            left: 150%;
        }

        /* ── Video section decorative floating badge ── */
        .tv-mockup, .tablet-mockup {
            filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
        }

        /* ── Reveal animation variants for stagger effect ── */
        .reveal:nth-child(2) { transition-delay: 0.1s; }
        .reveal:nth-child(3) { transition-delay: 0.2s; }
        .reveal:nth-child(4) { transition-delay: 0.3s; }
        .reveal:nth-child(5) { transition-delay: 0.4s; }
        .reveal:nth-child(6) { transition-delay: 0.5s; }

        /* ── Gamer profile extra inner shimmer ── */
        .gamer-profile::after {
            content: '';
            position: absolute;
            top: 0; left: -60%;
            width: 40%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.02), transparent);
            animation: profileShimmer 5s ease-in-out infinite 2s;
        }
        @keyframes profileShimmer {
            0%   { left: -60%; }
            100% { left: 120%; }
        }

        /* ── Tournament banner top highlight ── */
        .tournament-banner::after {
            content: '';
            position: absolute;
            top: 0; left: 10%; right: 10%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(168,85,247,0.6), rgba(0,240,255,0.6), transparent);
        }

        /* ═══════════════════════════════════════════════════════
           LIVE STREAM SECTION
        ═══════════════════════════════════════════════════════ */

        /* ── Wrapper background ── */
        #live-wrapper {
            position: relative;
            background: linear-gradient(180deg,
                var(--bg-primary) 0%,
                #0a0014 40%,
                #080010 60%,
                var(--bg-primary) 100%);
            overflow: hidden;
        }

        /* Top/bottom atmospheric lines */
        #live-wrapper::before,
        #live-wrapper::after {
            content: '';
            position: absolute;
            left: 0; right: 0;
            height: 1px;
        }
        #live-wrapper::before {
            top: 0;
            background: linear-gradient(90deg, transparent, rgba(239,68,68,0.5), rgba(168,85,247,0.5), transparent);
        }
        #live-wrapper::after {
            bottom: 0;
            background: linear-gradient(90deg, transparent, rgba(168,85,247,0.4), rgba(239,68,68,0.4), transparent);
        }

        /* Subtle radial glow behind section */
        #live-wrapper .live-bg-glow {
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse at 50% 50%, rgba(239,68,68,0.07) 0%, transparent 60%),
                radial-gradient(circle at 80% 20%, rgba(168,85,247,0.08) 0%, transparent 40%),
                radial-gradient(circle at 20% 80%, rgba(0,240,255,0.06) 0%, transparent 40%);
            pointer-events: none;
        }

        #live { position: relative; z-index: 1; }

        /* ── Title gradient ── */
        .live-title-gradient {
            background: linear-gradient(135deg, #ef4444, #a855f7, #00f0ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: liveGradientShift 4s ease infinite;
            background-size: 200% 200%;
        }
        @keyframes liveGradientShift {
            0%   { background-position: 0% 50%; }
            50%  { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* ── Nav live indicator ── */
        #nav-live-link { transition: all 0.3s ease; }
        #nav-live-link.nav-live-active {
            color: #ef4444 !important;
            text-shadow: 0 0 10px rgba(239,68,68,0.6);
            animation: navLivePulse 1.5s ease-in-out infinite;
        }
        @keyframes navLivePulse {
            0%, 100% { opacity: 1; }
            50%       { opacity: 0.6; }
        }

        /* ── Status bar ── */
        .live-status-bar {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.2rem;
            margin-bottom: 2.5rem;
            flex-wrap: wrap;
        }

        /* Online badge */
        .live-badge-online {
            display: none;
            align-items: center;
            gap: 0.6rem;
            position: relative;
            padding: 0.55rem 1.4rem 0.55rem 2.2rem;
            background: rgba(239,68,68,0.15);
            border: 1px solid rgba(239,68,68,0.5);
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 800;
            color: #f87171;
            letter-spacing: 1px;
            box-shadow: 0 0 20px rgba(239,68,68,0.25), inset 0 0 20px rgba(239,68,68,0.05);
            overflow: hidden;
        }

        /* Ripple rings on live badge */
        .live-ring {
            position: absolute;
            left: 0.75rem;
            top: 50%;
            transform: translateY(-50%);
            width: 10px; height: 10px;
            border-radius: 50%;
            border: 2px solid rgba(239,68,68,0.7);
            animation: liveRipple 1.8s ease-out infinite;
        }
        .live-ring-2 { animation-delay: 0.6s; }
        @keyframes liveRipple {
            0%   { transform: translateY(-50%) scale(1);   opacity: 1; }
            100% { transform: translateY(-50%) scale(2.5); opacity: 0; }
        }
        .live-dot-center {
            position: absolute;
            left: 0.75rem;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 8px; height: 8px;
            border-radius: 50%;
            background: #ef4444;
            box-shadow: 0 0 8px #ef4444;
            margin-left: 0.25rem;
        }
        /* Shimmer sweep on live badge */
        .live-badge-online::after {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 60%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
            animation: liveSweep 2.5s ease-in-out infinite;
        }
        @keyframes liveSweep {
            0%   { left: -100%; }
            100% { left: 150%; }
        }

        /* Offline badge */
        .live-badge-offline {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.55rem 1.4rem;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-secondary);
        }

        /* Mode pills */
        .live-mode-pills {
            display: none;
            gap: 0.6rem;
        }
        .live-mode-pill {
            padding: 0.35rem 1rem;
            border-radius: 20px;
            font-size: 0.78rem;
            font-weight: 700;
        }
        .pill-coding { background: rgba(0,240,255,0.12); border: 1px solid rgba(0,240,255,0.3); color: var(--accent-cyan); }
        .pill-gaming { background: rgba(168,85,247,0.12); border: 1px solid rgba(168,85,247,0.3); color: #c084fc; }
        .live-mode-pill.active {
            box-shadow: 0 0 14px currentColor;
        }

        /* ── Stream container layout ── */
        .stream-container {
            display: grid;
            grid-template-columns: 1fr 340px;
            gap: 2rem;
            align-items: start;
            margin-bottom: 3rem;
        }
        @media (max-width: 1100px) {
            .stream-container { grid-template-columns: 1fr; }
        }

        /* ── Stream player wrap ── */
        .stream-player-wrap { position: relative; }

        /* ── Shared frame styles ── */
        .stream-frame {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            aspect-ratio: 16/9;
            background: #000;
        }

        /* Animated corner brackets on frames */
        .stream-corner {
            position: absolute;
            width: 22px; height: 22px;
            z-index: 10;
            pointer-events: none;
            transition: all 0.4s ease;
        }
        .sc-tl { top: 10px; left: 10px;  border-top: 2px solid rgba(239,68,68,0.7); border-left: 2px solid rgba(239,68,68,0.7);  border-radius: 4px 0 0 0; }
        .sc-tr { top: 10px; right: 10px; border-top: 2px solid rgba(239,68,68,0.7); border-right: 2px solid rgba(239,68,68,0.7); border-radius: 0 4px 0 0; }
        .sc-bl { bottom: 10px; left: 10px;  border-bottom: 2px solid rgba(239,68,68,0.7); border-left: 2px solid rgba(239,68,68,0.7);  border-radius: 0 0 0 4px; }
        .sc-br { bottom: 10px; right: 10px; border-bottom: 2px solid rgba(239,68,68,0.7); border-right: 2px solid rgba(239,68,68,0.7); border-radius: 0 0 4px 0; }

        /* LIVE frame extras */
        .live-frame {
            border: 1px solid rgba(239,68,68,0.4);
            box-shadow:
                0 0 0 1px rgba(239,68,68,0.15),
                0 0 40px rgba(239,68,68,0.2),
                0 25px 60px rgba(0,0,0,0.6);
            animation: liveFramePulse 2s ease-in-out infinite;
        }
        @keyframes liveFramePulse {
            0%, 100% { box-shadow: 0 0 0 1px rgba(239,68,68,0.15), 0 0 30px rgba(239,68,68,0.15), 0 25px 60px rgba(0,0,0,0.6); }
            50%       { box-shadow: 0 0 0 1px rgba(239,68,68,0.3),  0 0 50px rgba(239,68,68,0.3),  0 25px 60px rgba(0,0,0,0.6); }
        }

        .live-frame iframe {
            position: absolute;
            inset: 0;
            width: 100%; height: 100%;
            border: none;
        }

        /* Scanline overlay */
        .stream-scanline {
            position: absolute;
            inset: 0;
            background: repeating-linear-gradient(
                0deg,
                transparent, transparent 2px,
                rgba(0,0,0,0.04) 2px, rgba(0,0,0,0.04) 4px
            );
            pointer-events: none;
            z-index: 3;
        }

        /* LIVE tag */
        .stream-live-tag {
            position: absolute;
            top: 14px; left: 14px;
            display: flex; align-items: center; gap: 6px;
            background: #ef4444;
            color: white;
            font-size: 0.7rem;
            font-weight: 800;
            letter-spacing: 1.5px;
            padding: 4px 10px;
            border-radius: 4px;
            z-index: 10;
            box-shadow: 0 0 15px rgba(239,68,68,0.6);
        }
        .stream-live-dot {
            width: 7px; height: 7px;
            background: white;
            border-radius: 50%;
            animation: liveDotBlink 1s ease-in-out infinite;
        }
        @keyframes liveDotBlink {
            0%, 100% { opacity: 1; }
            50%       { opacity: 0.3; }
        }

        /* ── OFFLINE frame ── */
        .offline-frame {
            display: none;
            border: 1px solid rgba(255,255,255,0.08);
            box-shadow: 0 25px 60px rgba(0,0,0,0.6);
        }

        /* TV static noise lines */
        .tv-static-lines {
            position: absolute;
            inset: 0;
            background:
                repeating-linear-gradient(
                    0deg,
                    transparent,
                    transparent 3px,
                    rgba(255,255,255,0.015) 3px,
                    rgba(255,255,255,0.015) 4px
                ),
                repeating-linear-gradient(
                    90deg,
                    transparent,
                    transparent 8px,
                    rgba(255,255,255,0.008) 8px,
                    rgba(255,255,255,0.008) 9px
                );
            animation: staticShift 0.15s steps(1) infinite;
            z-index: 1;
        }
        @keyframes staticShift {
            0%   { background-position: 0 0, 0 0; }
            25%  { background-position: 0 3px, 4px 0; }
            50%  { background-position: 0 1px, -2px 0; }
            75%  { background-position: 0 5px, 2px 0; }
            100% { background-position: 0 0, 0 0; }
        }

        .offline-screen-content {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
            padding: 2rem;
            background: linear-gradient(135deg, #0a0010 0%, #080014 50%, #0a000a 100%);
            z-index: 2;
        }

        .offline-avatar {
            font-size: 3.5rem;
            animation: offlineFloat 4s ease-in-out infinite;
            filter: grayscale(0.3);
        }
        @keyframes offlineFloat {
            0%, 100% { transform: translateY(0);    }
            50%       { transform: translateY(-10px); }
        }

        .offline-title {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--text-secondary);
        }
        .offline-sub {
            font-size: 0.9rem;
            color: rgba(148,163,184,0.5);
            margin-bottom: 0.5rem;
        }

        .offline-schedule {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 10px;
            padding: 0.7rem 1.4rem;
            text-align: center;
            margin-top: 0.5rem;
        }
        .offline-schedule-label { font-size: 0.7rem; color: var(--text-secondary); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 0.2rem; }
        .offline-schedule-val   { font-size: 0.9rem; font-weight: 700; color: var(--accent-cyan); }

        /* ── Info panel ── */
        .stream-info-panel {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }

        /* Mode selector */
        .stream-mode-selector {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.6rem;
        }
        .stream-mode-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.2rem;
            padding: 1rem 0.5rem;
            background: rgba(255,255,255,0.03);
            border: 1px solid var(--glass-border);
            border-radius: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Outfit', sans-serif;
        }
        .stream-mode-btn:hover {
            border-color: var(--accent-cyan);
            background: rgba(0,240,255,0.05);
            transform: translateY(-2px);
        }
        .stream-mode-btn.active {
            border-color: #ef4444;
            background: rgba(239,68,68,0.1);
            box-shadow: 0 0 20px rgba(239,68,68,0.2);
        }
        .mode-icon  { font-size: 1.5rem; }
        .mode-label { font-size: 0.9rem; font-weight: 700; color: var(--text-primary); }
        .mode-sub   { font-size: 0.7rem; color: var(--text-secondary); }

        /* Stats row */
        .stream-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.6rem;
        }
        .stream-stat {
            background: rgba(255,255,255,0.03);
            border: 1px solid var(--glass-border);
            border-radius: 12px;
            padding: 0.8rem 0.5rem;
            text-align: center;
        }
        .stream-stat-icon { font-size: 1rem; margin-bottom: 0.2rem; }
        .stream-stat-val  { font-size: 1.1rem; font-weight: 800; color: var(--accent-cyan); }
        .stream-stat-key  { font-size: 0.65rem; color: var(--text-secondary); margin-top: 0.1rem; }

        /* Description box */
        .stream-desc-box {
            background: rgba(255,255,255,0.03);
            border: 1px solid var(--glass-border);
            border-radius: 14px;
            padding: 1.2rem;
        }
        .stream-desc-title {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
        }
        .stream-desc-body {
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* Action buttons */
        .stream-actions {
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }
        .stream-subscribe-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
            padding: 0.85rem;
            background: #ef4444;
            border-radius: 10px;
            color: white;
            font-weight: 700;
            font-size: 0.9rem;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .stream-subscribe-btn::before {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }
        .stream-subscribe-btn:hover::before { left: 100%; }
        .stream-subscribe-btn:hover {
            background: #dc2626;
            transform: translateY(-2px);
            box-shadow: 0 0 25px rgba(239,68,68,0.5);
        }
        .stream-channel-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem;
            background: transparent;
            border: 1px solid var(--glass-border);
            border-radius: 10px;
            color: var(--text-secondary);
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .stream-channel-btn:hover {
            border-color: var(--accent-cyan);
            color: var(--accent-cyan);
            background: rgba(0,240,255,0.05);
        }

        /* Notify box */
        .stream-notify-box {
            display: flex;
            align-items: flex-start;
            gap: 0.8rem;
            background: rgba(168,85,247,0.08);
            border: 1px solid rgba(168,85,247,0.25);
            border-radius: 14px;
            padding: 1rem 1.2rem;
        }
        .stream-notify-icon { font-size: 1.3rem; flex-shrink: 0; }
        .stream-notify-text { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; }
        .stream-notify-text strong { color: var(--text-primary); }

        /* ── Latest videos ── */
        .latest-videos-section {
            margin-top: 2rem;
        }
        .latest-videos-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1.2rem;
        }
        .latest-videos-label {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-primary);
        }
        .latest-videos-more {
            color: var(--accent-cyan);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            transition: gap 0.3s;
        }
        .latest-videos-more:hover { text-decoration: underline; }

        .latest-videos-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.2rem;
        }
        @media (max-width: 768px) {
            .latest-videos-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 968px) and (min-width: 600px) {
            .latest-videos-grid { grid-template-columns: repeat(2, 1fr); }
        }

        .latest-video-card {
            background: var(--bg-card);
            border: 1px solid var(--glass-border);
            border-radius: 14px;
            overflow: hidden;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .latest-video-card:hover {
            transform: translateY(-5px);
            border-color: rgba(239,68,68,0.4);
            box-shadow: 0 10px 30px rgba(0,0,0,0.4);
        }
        .lv-thumb {
            aspect-ratio: 16/9;
            background: linear-gradient(135deg, #0d0d1a, #1a0014);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        .lv-thumb-placeholder {
            font-size: 2rem;
            opacity: 0.3;
            color: white;
        }
        .lv-duration {
            position: absolute;
            bottom: 6px; right: 8px;
            background: rgba(0,0,0,0.8);
            color: white;
            font-size: 0.7rem;
            padding: 2px 6px;
            border-radius: 4px;
            font-family: 'Space Mono', monospace;
        }
        .lv-info { padding: 0.8rem 1rem; }
        .lv-title { font-size: 0.9rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.3rem; }
        .lv-meta  { font-size: 0.75rem; color: var(--text-secondary); }

        /* ── Responsive ── */
        @media (max-width: 968px) {
            .stream-container { gap: 1.5rem; }
            .stream-info-panel { gap: 1rem; }
        }
        @media (max-width: 600px) {
            .live-status-bar { gap: 0.7rem; }
            .stream-mode-selector { grid-template-columns: 1fr 1fr; }
            .stream-stats { grid-template-columns: repeat(3, 1fr); }
            .stream-subscribe-btn, .stream-channel-btn { font-size: 0.82rem; }
        }

        /* ═══════════════════════════════════════════════════════
           LOW DETAILS MODE (LDM)
        ═══════════════════════════════════════════════════════ */

        /* ── LDM Toggle Button — fixed bottom-LEFT, never overlaps WhatsApp ── */
        .ldm-toggle {
            position: fixed;
            bottom: 28px;
            left: 28px;
            z-index: 9998;
            display: flex;
            align-items: center;
            gap: 0.45rem;
            background: rgba(10,10,20,0.92);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 50px;
            padding: 0.5rem 0.9rem 0.5rem 0.75rem;
            cursor: pointer;
            font-family: 'Outfit', sans-serif;
            transition: all 0.3s ease;
            color: var(--text-secondary);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.5);
        }
        .ldm-toggle:hover {
            border-color: rgba(234,179,8,0.5);
            background: rgba(20,18,5,0.95);
            color: #fbbf24;
            box-shadow: 0 4px 20px rgba(234,179,8,0.2);
        }
        .ldm-toggle.ldm-on {
            border-color: rgba(234,179,8,0.7);
            background: rgba(25,20,5,0.95);
            color: #fbbf24;
            box-shadow: 0 0 20px rgba(234,179,8,0.3), 0 4px 20px rgba(0,0,0,0.4);
        }
        .ldm-icon  { font-size: 0.85rem; }
        .ldm-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.5px; }

        /* Mini switch inside button */
        .ldm-switch {
            width: 28px; height: 15px;
            background: rgba(255,255,255,0.1);
            border-radius: 10px;
            position: relative;
            transition: background 0.3s ease;
            flex-shrink: 0;
            border: 1px solid rgba(255,255,255,0.1);
        }
        .ldm-knob {
            position: absolute;
            top: 1px; left: 1px;
            width: 11px; height: 11px;
            background: var(--text-secondary);
            border-radius: 50%;
            transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
        }
        .ldm-on .ldm-switch {
            background: rgba(234,179,8,0.3);
            border-color: rgba(234,179,8,0.4);
        }
        .ldm-on .ldm-knob {
            left: 14px;
            background: #fbbf24;
            box-shadow: 0 0 6px rgba(234,179,8,0.6);
        }

        @media (max-width: 600px) {
            .ldm-toggle { left: 16px; bottom: 28px; }
        }

        /* ── Toast animation ── */
        @keyframes toastIn  { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }
        @keyframes toastOut { from { opacity:1; transform:translateY(0);    } to { opacity:0; transform:translateY(10px); } }

        /* ════════════════════════════════════════════════════════
           LDM ACTIVE — what gets turned off on :root.ldm
           Everything here only applies when LDM is ON.
           The decorations still EXIST, they're just paused/simplified.
        ════════════════════════════════════════════════════════ */

        /* Stop all background animations */
        :root.ldm body::before,
        :root.ldm body::after              { animation: none !important; }

        /* Kill floating orbs */
        :root.ldm .deco-orb               { display: none !important; }

        /* Kill grid overlay (subtle but saves repaints) */
        :root.ldm .grid-overlay           { display: none !important; }

        /* Kill noise texture */
        :root.ldm .noise-overlay          { display: none !important; }

        /* Stop background pulse */
        :root.ldm #gaming-wrapper::before { animation: none !important; }
        :root.ldm #live-wrapper           { background: var(--bg-primary) !important; }

        /* Stop all card hover transforms (still hover-able, just no movement) */
        :root.ldm .service-card:hover,
        :root.ldm .project-card:hover,
        :root.ldm .game-card:hover,
        :root.ldm .tech-item:hover        { transform: none !important; }

        /* Kill glow box-shadows */
        :root.ldm .service-card:hover,
        :root.ldm .tech-item:hover        { box-shadow: none !important; }

        /* Stop TV/tablet glow animations */
        :root.ldm .tv-frame::after,
        :root.ldm .tablet-frame::after    { animation: none !important; opacity: 0.2 !important; }

        /* Stop hero floating orb */
        :root.ldm .hero::after            { animation: none !important; }

        /* Stop gamer avatar float */
        :root.ldm .gamer-avatar           { animation: none !important; }

        /* Stop gamer profile border rotate */
        :root.ldm .gamer-profile::before  { animation: none !important; }

        /* Stop floating card ring */
        :root.ldm .floating-card::before  { animation: none !important; }

        /* Stop live frame pulse */
        :root.ldm .live-frame             { animation: none !important; }

        /* Stop live badge ripples */
        :root.ldm .live-ring              { animation: none !important; }
        :root.ldm .live-badge-online::after { animation: none !important; }

        /* Stop TV static noise (heavy animation) */
        :root.ldm .tv-static-lines        { animation: none !important; }

        /* Stop section divider scan line */
        :root.ldm .section-divider::before { animation: none !important; }
        :root.ldm .section-divider::after  { animation: none !important; }

        /* Stop logo pulse */
        :root.ldm .logo                   { animation: none !important; }

        /* Stop nav shimmer */
        :root.ldm .cta-nav::after         { animation: none !important; }

        /* Stop card ring rotate */
        :root.ldm .floating-card::before  { animation: none !important; }

        /* Stop contact glow */
        :root.ldm .contact-container::before { animation: none !important; }

        /* Stop hero code ticker */
        :root.ldm .hero-code-ticker-inner { animation-play-state: paused !important; }

        /* Stop live title gradient shift */
        :root.ldm .live-title-gradient    { animation: none !important; background: var(--accent-purple) !important; -webkit-background-clip: text; background-clip: text; }

        /* Stop avatar float on offline screen */
        :root.ldm .offline-avatar         { animation: none !important; }

        /* Disable backdrop-filter blurs (very expensive on low-end) */
        :root.ldm nav,
        :root.ldm .service-card,
        :root.ldm .project-card,
        :root.ldm .game-card,
        :root.ldm .tech-item,
        :root.ldm .floating-card,
        :root.ldm .contact-container,
        :root.ldm .modal,
        :root.ldm .gamer-profile          { backdrop-filter: none !important; -webkit-backdrop-filter: none !important; }

        /* Simplify backgrounds for blurred cards */
        :root.ldm .service-card,
        :root.ldm .project-card,
        :root.ldm .floating-card,
        :root.ldm .gamer-profile          { background: rgba(20,20,30,0.95) !important; }

        /* Stop reveal animations mid-page (already triggered ones stay visible) */
        :root.ldm .reveal                 { transition: none !important; }

        /* Stop status dot blink */
        :root.ldm .status-dot,
        :root.ldm .stream-live-dot,
        :root.ldm .live-dot,
        :root.ldm .wa-online              { animation: none !important; }

        /* Stop WhatsApp ping rings */
        :root.ldm .wa-btn::before,
        :root.ldm .wa-btn::after          { animation: none !important; display: none !important; }

        /* Stop tournament live dot */
        :root.ldm .live-dot               { animation: none !important; }

        /* LDM button indicator text update */
        :root.ldm .ldm-label::after       { content: ''; }
