        :root {
            --lime-green: #ccff00;
            --lime-light: #e6ff80;
            --bright-green: #00ff88;
            --dark-green: #1a2e05;
            --black: #0a0a0a;
            --near-black: #111111;
            --dark-charcoal: #1a1a1a;
            --gray: #888888;
            --white: #ffffff;
            --font-primary: 'Inter', sans-serif;
            --font-display: 'Space Grotesk', sans-serif;
            --navbar-height: 70px;
            --disclaimer-height: 52px;
            --section-padding: 80px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-font-smoothing: antialiased;
        }

        html,
        body {
            font-family: var(--font-primary);
            background-color: var(--black);
            color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: var(--font-display);
            line-height: 1.2;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
        }

        .disclaimer-bar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 52px;
            background: rgba(26, 26, 26, 0.95);
            color: #FFD700;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1001;
            font-size: 13px;
            font-weight: 700;
            line-height: 1.5;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            padding: 0 20px;
            text-align: center;
            border-bottom: 1px solid rgba(255, 215, 0, 0.3);
            backdrop-filter: blur(5px);
        }

        @media (max-width: 480px) {
            .disclaimer-bar {
                font-size: 10px;
                line-height: 1.2;
            }
        }

        #nav-menu {
            display: flex !important;
            flex-direction: row !important;
            visibility: visible !important;
            opacity: 1 !important;
            list-style: none !important;
            margin: 0 !important;
            padding: 0 !important;
            position: static !important;
        }

        #nav-menu li a {
            color: #ffffff !important;
            font-weight: 700 !important;
            text-decoration: none !important;
            padding: 0 15px !important;
            display: inline-block !important;
            transition: color 0.3s ease !important;
            white-space: nowrap !important;
            font-size: 14px;
        }

        #nav-menu li a:hover,
        #nav-menu li a.active {
            color: #ccff00 !important;
        }



        @media (max-width: 1280px) {
            #nav-menu {
                display: none !important;
                position: fixed !important;
                top: 106px;
                left: 0;
                width: 100%;
                background: #000;
                flex-direction: column !important;
                padding: 20px 0 !important;
                border-bottom: 1px solid var(--lime-green);
            }

            #nav-menu.active {
                display: flex !important;
            }



            .nav-cta,
            .dynamic-ref-link {
                display: none !important;
            }
        }

        .page-hero {
            padding-top: calc(var(--navbar-height) + var(--disclaimer-height) + 80px);
            padding-bottom: 80px;
            text-align: center;
            background: radial-gradient(circle at center, rgba(204, 255, 0, 0.1) 0%, transparent 60%);
        }

        .page-title {
            font-size: clamp(40px, 5vw, 64px);
            font-weight: 700 !important;
            margin-bottom: 24px;
            color: var(--white);
        }

        .highlight {
            color: var(--lime-green);
        }

        .page-subtitle {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.7);
            max-width: 800px;
            margin: 0 auto;
        }

        /* Tutorial Grid */
        .tutorials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px 80px;
        }

        @media (min-width: 1024px) {
            .tutorials-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .tutorial-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            padding: 20px;
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .tutorial-card:hover {
            border-color: rgba(199, 241, 96, 0.4);
            background: rgba(255, 255, 255, 0.06);
            transform: translateY(-4px);
        }

        .tutorial-video {
            position: relative;
            width: 100%;
            aspect-ratio: 1 / 1;
            background: linear-gradient(135deg, #1A1A1A, #000000);
            border-radius: 20px;
            overflow: hidden;
            margin-bottom: 20px;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(199, 241, 96, 0.1);
            transition: all 0.3s ease;
        }

        .tutorial-video:hover {
            box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4), inset 0 0 0 2px rgba(199, 241, 96, 0.3);
            transform: scale(1.03);
        }

        .thumbnail-background {
            position: absolute;
            inset: 0;
            z-index: 1;
            background: linear-gradient(135deg, #000000 0%, #1A1A1A 100%);
        }

        .thumbnail-content-overlay {
            position: absolute;
            inset: 0;
            z-index: 2;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            padding: 20px 15px;
            text-align: center;
        }

        .title-text-thumbnail {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700 !important;
            line-height: 1.2;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
            position: relative;
            z-index: 3;
            margin: 0;
            font-size: 25px;
            color: #FFFFFF;
        }

        .tutorial-number-badge {
            display: none;
            position: absolute;
            top: 20px;
            left: 20px;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(10px);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 700 !important;
            color: var(--lime-green);
            z-index: 5;
            border: 1px solid rgba(199, 241, 96, 0.3);
        }

        .play-button-overlay {
            position: absolute;
            top: auto;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 80px;
            background: transparent;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 4;
            transition: all 0.3s ease;
            border: 3px solid rgba(199, 241, 96, 0.9);
            animation: subtlePulse 3s ease-in-out infinite;
        }

        .play-icon {
            width: 0;
            height: 0;
            border-left: 22px solid rgba(199, 241, 96, 0.95);
            border-top: 13px solid transparent;
            border-bottom: 13px solid transparent;
            margin-left: 5px;
        }

        @keyframes subtlePulse {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(199, 241, 96, 0.6);
                transform: translateX(-50%) scale(1);
            }

            50% {
                box-shadow: 0 0 20px 10px rgba(199, 241, 96, 0.4);
                transform: translateX(-50%) scale(1.05);
            }
        }

        .tutorial-video:hover .play-button-overlay {
            border-color: rgba(199, 241, 96, 1);
            box-shadow: 0 0 30px 12px rgba(199, 241, 96, 0.5);
            transform: translateX(-50%) scale(1.1);
            animation: none;
        }

        .tutorial-content {
            padding: 0 10px;
        }

        .tutorial-title {
            font-size: 20px;
            font-weight: 700 !important;
            color: var(--white);
            margin-bottom: 12px;
            line-height: 1.3;
            font-family: "Space Grotesk", sans-serif;
            text-align: center;
        }

        .tutorial-description {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .play-button-overlay {
            position: absolute;
            top: auto;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 80px;
            background: transparent;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 4;
            transition: all 0.3s ease;
            border: 3px solid rgba(199, 241, 96, 0.9);
            animation: subtlePulse 3s ease-in-out infinite;
        }

        .play-icon {
            width: 0;
            height: 0;
            border-left: 22px solid rgba(199, 241, 96, 0.95);
            border-top: 13px solid transparent;
            border-bottom: 13px solid transparent;
            margin-left: 5px;
        }

        @keyframes subtlePulse {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(199, 241, 96, 0.6);
                transform: translateX(-50%) scale(1);
            }

            50% {
                box-shadow: 0 0 20px 10px rgba(199, 241, 96, 0.4);
                transform: translateX(-50%) scale(1.05);
            }
        }

        .tutorial-video:hover .play-button-overlay {
            border-color: rgba(199, 241, 96, 1);
            box-shadow: 0 0 30px 12px rgba(199, 241, 96, 0.5);
            transform: translateX(-50%) scale(1.1);
            animation: none;
        }

        /* Footer */
        .footer {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 80px 40px 40px;
            background: var(--near-black);
            margin-top: 80px;
        }

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

        .footer-section h3 {
            color: var(--lime-green) !important;
            margin-bottom: 24px;
            font-size: 18px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
        }

        .footer-links a:hover {
            color: var(--lime-green);
        }

        .footer-bottom {
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
            color: rgba(255, 255, 255, 0.4);
            font-size: 14px;
        }

        .disclaimer {
            background: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: 8px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.6;
            margin-bottom: 10px;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Tap overlay — hidden on desktop, enabled on mobile via media query */
        .video-tap-overlay {
            display: none;
            position: absolute;
            inset: 0;
            bottom: 50px;
            z-index: 3;
            cursor: pointer;
        }

        /* Video Modal */
        .video-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 10000;
            opacity: 0;
            transition: opacity 0.4s ease;
            backdrop-filter: blur(10px);
            align-items: center;
            justify-content: center;
        }

        .video-modal.active {
            display: flex;
            opacity: 1;
        }

        .close-modal-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(0, 0, 0, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
            font-size: 20px;
            cursor: pointer;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 20;
            transition: all 0.3s;
        }

        .close-modal-btn:hover {
            background: var(--lime-green);
            color: black;
            border-color: transparent;
        }

        .video-container {
            position: relative;
            height: 85vh;
            aspect-ratio: 9 / 16;
            width: auto;
            max-width: 90vw;
            background: #000;
            border-radius: 20px;
            padding: 0;
            box-shadow: 0 0 50px rgba(204, 255, 0, 0.2);
            border: 1px solid rgba(204, 255, 0, 0.3);
            margin: auto;
            display: flex;
            justify-content: center;
            overflow: hidden;
        }

        .video-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
            max-height: none;
            background: #000;
            border-radius: 20px;
        }

        .video-wrapper video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        @media (max-width: 768px) {
            .title-text-thumbnail {
                font-size: 28px !important;
            }

            .play-button-overlay {
                width: 60px;
                height: 60px;
                top: auto;
                bottom: 20px;
                transform: translateX(-50%);
            }

            .tutorial-card {
                padding: 15px;
            }

            .thumbnail-content-overlay {
                justify-content: flex-start;
                padding-top: 25px;
            }

            .video-container {
                width: 100%;
                max-width: 100%;
                height: 100vh;
                aspect-ratio: unset;
                border-radius: 0;
                padding: 0;
                margin: 0;
            }

            .video-wrapper {
                width: 100%;
                height: 100%;
                max-height: unset;
                border-radius: 0;
                padding-bottom: 0 !important;
                aspect-ratio: unset !important;
            }

            .video-wrapper video {
                max-height: unset;
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            .video-tap-overlay {
                display: block;
            }
        }

        /* ===== DUAL-NAVIGATION BYPASS CONTROLLER ===== */
        @media (min-width: 1024px) {
            .mobile-nav-container {
                display: none !important;
            }

            .desktop-nav-container {
                display: flex !important;
            }

            .mobile-menu-btn {
                display: none !important;
            }
        }

        @media (max-width: 1023px) {
            .desktop-nav-container {
                display: none !important;
            }

            .mobile-nav-container {
                display: none;
                /* hidden until toggled by JS */
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(0, 0, 0, 0.98);
                flex-direction: column;
                padding: 20px 0;
                margin: 0;
                list-style: none;
                z-index: 99998;
                border-bottom: 2px solid var(--lime-green);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
            }

            .navbar {
                overflow: visible !important;
            }

            .mobile-nav-container.active {
                display: flex !important;
            }

            .mobile-nav-container li {
                text-align: center;
                padding: 12px 0;
            }

            .mobile-nav-container li a.mobile-nav-link {
                color: #ffffff;
                font-weight: 600;
                text-decoration: none;
                font-size: 16px;
                letter-spacing: 0.5px;
            }

            .mobile-nav-container.active {
                display: flex !important;
            }

            .mobile-nav-container li a.mobile-nav-link:hover,
            .mobile-nav-container li a.mobile-nav-link.active {
                color: var(--lime-green);
            }

            .mobile-menu-btn {
                display: flex !important;
                /* Force hamburger visibility */
            }
        }

        @media (min-width: 992px) {

            #wefi-isolated-btn,
            #mobile-language-flags {
                display: none !important;
            }
        }

        @media (max-width: 991px) {
            #wefi-isolated-btn {
                display: flex !important;
            }
        }

        /* Global Mobile Overflow Fix */
        html,
        body {
            overflow-x: hidden !important;
            position: relative !important;
        }

        .video-container,
        .youtube-video-container {
            max-width: 100%;
            overflow: hidden;
        }

        .redirect-content {
            max-width: 90vw;
            padding: 20px;
        }