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

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            font-family: 'Red Hat Display', sans-serif;
            background: #0a0118;
            min-height: 100vh;
            min-height: 100svh;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }

        /* Performance Optimizations - Scroll Performance */
        .console-section,
        .comparison-section,
        .upcoming-consoles-section,
        .newsletter-section,
        .vertical-testimonials-section,
        .testimonials-section,
        .story-sections-wrapper,
        .video-carousel-section,
        .game-search-section,
        .payment-options-section {
            contain: layout style paint;
            content-visibility: auto;
        }

        /* GPU Acceleration for animated elements */
        [class*="cta"],
        [class*="button"],
        [class*="btn"],
        .marquee-content,
        .console-card,
        .game-card,
        .testimonial-card {
            transform: translateZ(0);
            backface-visibility: hidden;
        }

        /* Optimize scroll performance */
        * {
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }


        /* Respect reduced motion preference */
        @media (prefers-reduced-motion: reduce) {

            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }

        /* Screen reader only - visually hidden but accessible */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        .hero {
            width: 100%;
            position: relative;
            overflow-x: hidden;
            overflow-y: visible;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: linear-gradient(180deg,
                    #1a0a2e 0%,
                    #2d1548 30%,
                    #1a0a2e 60%,
                    #0a0118 100%);
            padding-top: 65px;
            padding-bottom: 0;
        }

        .hero-switcher {
            position: relative;
            width: 100%;
            min-height: 100vh;
            min-height: 100svh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-view {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            opacity: 0;
            visibility: hidden;
            transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .hero-view.active {
            opacity: 1;
            visibility: visible;
            position: relative;
        }

        .video-carousel-hero-view {
            padding: 60px 40px;
        }

        .back-to-hero-btn {
            margin-top: 30px;
            padding: 14px 32px;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.8) 0%, rgba(139, 92, 246, 0.6) 100%);
            border: 2px solid rgba(139, 92, 246, 0.8);
            border-radius: 12px;
            color: white;
            font-family: 'Oxanium', sans-serif;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
        }

        .back-to-hero-btn:hover {
            background: linear-gradient(135deg, rgba(139, 92, 246, 1) 0%, rgba(139, 92, 246, 0.8) 100%);
            transform: translateY(-4px) scale(1.03);
            box-shadow: 0 10px 30px rgba(139, 92, 246, 0.7), 0 0 40px rgba(139, 92, 246, 0.3);
        }

        @media (max-width: 768px) {
            .video-carousel-hero-view {
                padding: 40px 20px;
            }

            .video-carousel-hero-view .video-carousel-title {
                font-size: 32px;
            }

            .video-carousel-hero-view .video-carousel-desc {
                font-size: 16px;
            }

            .back-to-hero-btn {
                padding: 12px 24px;
                font-size: 14px;
            }
        }

        .hero-background {
            display: none;
        }

        .hero-background img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
        }

        .hero-side-gradient {
            display: none;
        }

        @media (min-width: 768px) {
            .hero-background img {
                object-fit: contain;
                object-position: center top;
            }

            .hero-side-gradient {
                display: none;
            }
        }

        .hero-background::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top,
                    transparent 0%,
                    transparent 78%,
                    rgba(0, 0, 0, 0.2) 83%,
                    rgba(0, 0, 0, 0.38) 88%,
                    rgba(0, 0, 0, 0.54) 93%,
                    rgba(0, 0, 0, 0.64) 98%,
                    rgba(0, 0, 0, 0.64) 100%);
            pointer-events: none;
            z-index: 1;
        }

        .hero-background::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom,
                    transparent 0%,
                    transparent 50%,
                    rgba(0, 0, 0, 0.3) 65%,
                    rgba(0, 0, 0, 0.6) 80%,
                    rgba(0, 0, 0, 0.9) 95%,
                    rgba(0, 0, 0, 1) 100%);
            pointer-events: none;
            z-index: 1;
        }

        /* Hero Video Container - New Layout */
        .hero-video-container {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 40px 20px 20px;
            z-index: 2;
        }

        /* GameBro Logo at Top */
        .hero-logo-top {
            position: absolute;
            top: 36px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            max-width: 90%;
        }

        .hero-logo-image {
            width: 100%;
            max-width: 500px;
            height: auto;
            filter: drop-shadow(0 0 40px rgba(251, 191, 36, 0.7)) drop-shadow(0 0 70px rgba(251, 191, 36, 0.4));
            transform: translateZ(0);
        }

        /* NOTE: Removed logo-glow filter animation. Animating filter (drop-shadow) is expensive
           as it forces repaint every frame. The static drop-shadow provides the glow effect. */

        /* Frog - Default mobile: centered under logo */
        .hero-frog-peek {
            display: block;
            pointer-events: none;
            z-index: 15;
            position: relative;
            width: 350px;
            margin: 20px auto 20px;
            text-align: center;
            left: 0;
        }

        .frog-image {
            width: 100%;
            height: auto;
            position: relative;
            filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.6));
        }

        /* Desktop: Frog absolutely positioned on video carousel */
        @media (min-width: 769px) {
            .hero-video-container {
                position: relative;
            }

            .hero-frog-peek {
                position: absolute;
                left: 50%;
                top: 50%;
                width: 240px;
                margin: 0;
                transform: translate(calc(-50% - 380px), calc(-110% - 50px)) rotate(-10deg);
                transform-origin: center center;
            }
        }

        /* Larger desktop screens - bigger frog */
        @media (min-width: 1200px) {
            .hero-frog-peek {
                width: 280px;
                transform: translate(calc(-50% - 450px), calc(-110% - 70px)) rotate(-10deg);
            }
        }

        @keyframes frog-peek {

            0%,
            100% {
                transform: translateY(0) rotate(-8deg);
            }

            50% {
                transform: translateY(-14px) rotate(-6deg);
            }
        }

        /* Video Carousel as Main Hero */
        .hero-video-carousel {
            position: relative;
            width: 100%;
            max-width: 1400px;
            margin-top: 60px;
            z-index: 3;
        }

        /* Video Hero Game Counter - Smaller Version */
        .video-hero-stat {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-top: 15px;
            margin-bottom: 15px;
        }

        .video-hero-stat-row {
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 0;
        }

        .video-hero-stat-number {
            font-family: 'Oxanium', sans-serif;
            font-size: clamp(40px, 7vw, 64px);
            font-weight: 800;
            color: #ffffff;
            line-height: 1;
            text-align: center;
            text-shadow: 0 0 30px rgba(255, 215, 0, 1),
                0 0 60px rgba(255, 215, 0, 0.8),
                0 0 90px rgba(255, 215, 0, 0.5);
            transition: text-shadow 0.3s ease;
            font-variant-numeric: tabular-nums;
            transform: scale(1);
            display: inline-block;
            padding: 10px 5px;
            border-radius: 15px;
            background: transparent;
        }

        .video-hero-stat-number.counting {
            animation: counter-pulse 0.15s ease-in-out infinite;
        }

        .video-hero-stat-number.boom {
            animation: boom-scale 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
        }

        .video-hero-stat-number.glow-boom {
            animation: glow-boom-counter 0.8s ease-out forwards;
        }

        .video-hero-stat-number.shine {
            background: linear-gradient(90deg, #ffffff 0%, #ffffff 35%, #ffd700 50%, #ffffff 65%, #ffffff 100%);
            background-size: 200% 100%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: shine-sweep 0.8s ease-in-out;
        }

        .video-hero-stat-number.infinite-glow {
            animation: infinite-glow-pulse 2s ease-in-out infinite;
        }

        .video-hero-stat-plus {
            font-family: 'Oxanium', sans-serif;
            font-size: clamp(28px, 5vw, 48px);
            font-weight: 800;
            color: #fbbf24;
            text-shadow: 0 0 20px rgba(251, 191, 36, 0.8),
                0 0 30px rgba(251, 191, 36, 0.6);
            -webkit-text-stroke: 2px #000000;
            paint-order: stroke fill;
            vertical-align: top;
            display: inline-block;
            opacity: 0;
            transform: scale(0);
        }

        .video-hero-stat-plus.pop-in {
            opacity: 1 !important;
            transform: scale(1) !important;
        }

        .video-hero-stat-plus.glow-boom {
            animation: glow-boom-plus 0.8s ease-out forwards;
        }

        .video-hero-stat-label {
            font-family: 'Oxanium', sans-serif;
            font-size: clamp(14px, 2.5vw, 20px);
            font-weight: 600;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: clamp(1px, 0.2vw, 2px);
            margin: -5px 0 15px 0;
            width: 100%;
            text-align: center;
            text-shadow: 0 0 15px rgba(139, 92, 246, 0.8);
        }

        .video-hero-title {
            font-family: 'Oxanium', sans-serif;
            font-size: 56px;
            font-weight: 800;
            text-align: center;
            color: #ffffff;
            margin: 0 0 20px 0;
            text-shadow: 0 0 20px rgba(139, 92, 246, 0.8),
                0 0 30px rgba(251, 191, 36, 0.7),
                0 0 40px rgba(139, 92, 246, 0.6);
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .video-hero-desc {
            font-size: 22px;
            text-align: center;
            color: rgba(255, 255, 255, 0.85);
            margin: 0 0 50px 0;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Hero Video CTA Button - Loot Box Style */
        .hero-video-cta {
            margin: 40px auto 0;
            padding: 16px 28px;
            width: 50%;
            background: linear-gradient(180deg, #fcd34d 0%, #fbbf24 50%, #f59e0b 100%);
            color: #1a1a1a;
            border: none;
            border-radius: 10px;
            font-family: 'Oxanium', sans-serif;
            font-size: 24px;
            font-weight: 800;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 12px;
            text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
            position: relative;
            z-index: 99997;
            overflow: hidden;
            animation: lootbox-glow 6s ease-in-out infinite, lootbox-shake 5s ease-in-out infinite;
            transition: background 0.2s ease, filter 0.2s ease,
                padding 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                font-size 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                border-radius 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .hero-video-cta::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 25%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0.15) 75%, transparent 100%);
            animation: lootbox-shine 4s ease-in-out infinite;
            pointer-events: none;
            will-change: transform;
        }

        .hero-video-cta.sticky-mode {
            position: fixed;
            bottom: 20px;
            bottom: calc(20px + env(safe-area-inset-bottom, 0px));
            right: 20px;
            margin: 0;
            padding: 12px 20px;
            width: auto;
            height: auto;
            font-size: 14px;
            border-radius: 10px;
            background: linear-gradient(180deg, #fcd34d 0%, #fbbf24 50%, #f59e0b 100%);
            border: none;
            box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4), 0 0 30px rgba(251, 191, 36, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
            animation: none;
            filter: none;
            transform: scale(1) translateZ(0);
            display: flex !important;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            -webkit-transform: translateZ(0);
            visibility: visible !important;
            opacity: 1 !important;
            cursor: pointer;
            z-index: 999998;
            pointer-events: auto;
        }

        .hero-video-cta.sticky-mode:hover {
            background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
            box-shadow: 0 10px 30px rgba(251, 191, 36, 0.7), 0 0 60px rgba(251, 191, 36, 0.45), 0 0 100px rgba(251, 191, 36, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3);
            transform: translateY(-3px) scale(1.05) translateZ(0);
        }

        .hero-video-cta.sticky-mode::after {
            display: none;
        }

        .hero-video-cta.sticky-mode.attention-pulse {
            animation: attention-glow 1s ease-in-out;
        }

        @keyframes attention-glow {
            0% {
                transform: scale(1);
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5), 0 0 25px rgba(251, 191, 36, 0.5);
                background: rgba(251, 191, 36, 0.8);
            }
            25% {
                transform: scale(1.2);
                box-shadow: 0 0 40px rgba(251, 191, 36, 1), 0 0 70px rgba(251, 191, 36, 0.8), 0 0 100px rgba(251, 191, 36, 0.6);
                background: rgba(251, 191, 36, 1);
            }
            50% {
                transform: scale(1.15);
                box-shadow: 0 0 50px rgba(251, 191, 36, 1), 0 0 90px rgba(251, 191, 36, 0.9), 0 0 130px rgba(251, 191, 36, 0.6);
                background: rgba(251, 191, 36, 1);
            }
            75% {
                transform: scale(1.18);
                box-shadow: 0 0 35px rgba(251, 191, 36, 0.9), 0 0 70px rgba(251, 191, 36, 0.7);
                background: rgba(251, 191, 36, 0.95);
            }
            100% {
                transform: scale(1);
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5), 0 0 25px rgba(251, 191, 36, 0.5);
                background: rgba(251, 191, 36, 0.8);
            }
        }

        .hero-video-cta .cta-icon {
            display: none;
        }

        .hero-video-cta .cta-icon-sticky {
            display: none;
        }

        .hero-video-cta .cta-text {
            transition: font-size 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .hero-video-cta.sticky-mode .cta-icon {
            display: none;
        }

        .hero-video-cta.sticky-mode .cta-icon-sticky {
            display: block;
            font-size: 14px;
            font-weight: 800;
            color: #000;
            letter-spacing: 1px;
            text-transform: uppercase;
            text-align: center;
            line-height: 1.2;
        }

        .hero-video-cta.sticky-mode .cta-text {
            display: none;
        }

        .hero-video-cta:hover {
            background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
            filter: brightness(1.15);
            animation: lootbox-glow 3s ease-in-out infinite, lootbox-shake 1.5s ease-in-out infinite;
        }

        .hero-video-cta:active {
            transform: translateY(0);
        }

        .cta-icon {
            font-size: 28px;
            animation: icon-bounce 2s ease-in-out infinite;
        }

        @keyframes icon-bounce {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-8px);
            }
        }

        /* Responsive Adjustments */

        @media (max-width: 1200px) {}

        @media (max-width: 992px) {
            .hero-logo-image {
                max-width: 400px;
            }

            .video-hero-stat-number {
                font-size: clamp(36px, 6vw, 56px);
            }

            .video-hero-stat-plus {
                font-size: clamp(24px, 4.5vw, 42px);
            }

            .hero-video-cta {
                font-size: 20px;
                padding: 18px 40px;
            }
        }

        @media (max-width: 768px) {
            .hero {
                justify-content: flex-start;
            }

            .hero-video-container {
                padding: 35px 0 20px 0;
                justify-content: flex-start;
            }

            .hero-logo-top {
                position: relative;
                top: 0;
                left: 0;
                transform: none;
                margin: 0 auto 15px;
            }

            .hero-logo-image {
                max-width: 280px;
                margin-top: 20px;
            }

            .frog-image {
                width: 100%;
            }

            .hero-video-carousel {
                margin-top: 10px;
            }

            .video-hero-stat {
                margin-top: 10px;
                margin-bottom: 10px;
            }

            .video-hero-stat-number {
                font-size: clamp(32px, 8vw, 48px);
            }

            .video-hero-stat-plus {
                font-size: clamp(22px, 6vw, 36px);
            }

            .video-hero-stat-label {
                font-size: clamp(12px, 3vw, 18px);
            }

            .hero-video-cta {
                font-size: 18px;
                padding: 16px 20px;
                width: 80%;
                flex-wrap: wrap;
                gap: 8px;
                justify-content: center;
                align-items: center;
            }

            .hero-video-cta .cta-subtext {
                display: none !important;
            }

            /* Mobile sticky button - ensure visibility */
            .hero-video-cta.sticky-mode {
                position: fixed !important;
                bottom: 20px !important;
                bottom: calc(20px + env(safe-area-inset-bottom, 0px)) !important;
                right: 16px !important;
                left: auto !important;
                width: auto !important;
                min-width: 120px;
                z-index: 999999 !important;
                transform: none !important;
                display: flex !important;
                visibility: visible !important;
                opacity: 1 !important;
            }
        }

        @media (max-width: 600px) {}

        @media (max-width: 480px) {
            .hero-video-container {
                padding: 30px 0 20px 0;
            }

            .hero-logo-top {
                margin: 0 auto 10px;
            }

            .hero-logo-image {
                max-width: 180px;
            }

            .hero-frog-peek {
                width: 200px;
                margin: 15px auto 15px;
                left: 0;
            }

            .hero-video-carousel {
                margin-top: 0;
            }

            .video-hero-stat {
                margin-top: 5px;
                margin-bottom: 5px;
            }

            .video-hero-stat-number {
                font-size: clamp(28px, 9vw, 40px);
                padding: 8px 4px;
            }

            .video-hero-stat-plus {
                font-size: clamp(20px, 7vw, 32px);
            }

            .video-hero-stat-label {
                font-size: clamp(11px, 3.5vw, 16px);
            }

            .hero-video-cta {
                font-size: 16px;
                padding: 14px 20px;
                width: 85%;
            }

            .hero-primary-cta {
                padding: 12px 24px !important;
                font-size: 16px !important;
            }

            .cta-icon {
                font-size: 22px;
            }

            .hero-middle {
                gap: 15px;
            }

            .hero-stat {
                margin-top: 10px;
            }
        }

        .hero-content {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            padding-top: 0;
            width: 100%;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        @media (min-width: 768px) and (max-width: 1024px) {
            .container {
                max-width: 900px;
            }
        }

        .logo-banner {
            width: 100%;
            background: rgb(43, 17, 64);
            padding: 20px 0;
            position: relative;
            z-index: 2;
            margin: 0;
            min-height: 100vh;
            min-height: 100svh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-sizing: border-box;
            gap: clamp(20px, 5vh, 60px);
        }

        .logo-banner-link {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Hero Top - Logo Title */
        .hero-top {
            width: 100vw;
            display: flex;
            justify-content: center;
            padding: 0 20px;
            position: relative;
            z-index: 10;
            flex-shrink: 0;
        }

        .hero-top .logo-wording {
            max-width: clamp(280px, 40vw, 500px);
            width: 100%;
            height: auto;
            border: none;
            background: transparent;
        }

        /* Hero Middle - Main content group */
        .hero-middle {
            width: 100vw;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: clamp(20px, 4vh, 40px);
            padding: 0 20px;
            justify-content: center;
            flex-shrink: 0;
        }

        .hero-middle .logo-image {
            max-width: clamp(250px, 35vw, 396px);
            width: 88%;
            height: auto;
        }

        .hero-stat {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            cursor: pointer;
            transition: transform 0.2s ease;
            transform: translateX(-20px);
            flex-shrink: 0;
        }

        .hero-stat:hover {
            transform: translateX(-20px) scale(1.02);
        }

        .hero-cta-group {
            position: fixed;
            bottom: 0;
            left: 0;
            display: flex;
            flex-direction: column;
            align-items: stretch;
            justify-content: center;
            gap: 0;
            padding: 12px 15px;
            background: rgba(0, 0, 0, 0.85);
            z-index: 99999;
            border-top-right-radius: 10px;
            opacity: 0;
            transition: opacity 0.5s ease-in, transform 1s ease-in-out;
        }

        .hero-cta-row {
            display: flex;
            flex-direction: row;
            gap: 5px;
        }

        .hero-cta-group.visible {
            opacity: 0.75;
        }

        .hero-cta-group:hover {
            opacity: 1;
        }

        .hero-cta-group.expanded {
            transform: scale(5);
            transform-origin: bottom left;
        }

        @media (max-width: 768px) {
            .logo-banner {
                gap: clamp(15px, 3vh, 30px);
                padding: 15px 0;
                min-height: 100vh;
            min-height: 100svh;
            }

            .hero {
                padding: 80px 0 0 0;
            }

            .hero-top {
                padding: 0 20px;
            }

            .hero-top .logo-wording {
                max-width: clamp(250px, 70vw, 350px);
            }

            .hero-middle {
                gap: clamp(15px, 3vh, 30px);
                padding: 0 20px;
            }

            .hero-middle .logo-image {
                max-width: clamp(200px, 60vw, 282px);
            }

            .hero-stat {
                transform: translateX(-20px);
            }

            .hero-stat-number {
                font-size: clamp(48px, 12vw, 72px);
            }

            .hero-stat-label {
                font-size: clamp(16px, 4vw, 20px);
            }

            .shop-now-btn,
            .features-btn {
                padding: 6.8px 11.9px;
                font-size: 12.2px;
                margin: 0;
            }

            .hero-cta-group {
                gap: 0;
                flex-direction: column;
                padding: 10px 10px;
                left: 0;
                right: auto;
                transform: none;
                border-top-right-radius: 10px;
                border-top-left-radius: 0;
                opacity: 0.75;
            }

            .scroll-arrows {
                bottom: 12px;
            }

            .scroll-arrows svg {
                width: 38px;
                height: 38px;
            }

            /* Ensure minimum touch target size (44x44px) for mobile */
            .hero-nav-link {
                min-height: 44px;
                display: flex;
                align-items: center;
                justify-content: center;
            }
        }

        /* Extra small devices - improve readability */
        @media (max-width: 480px) {
            .logo-banner {
                gap: clamp(10px, 2vh, 20px);
                padding: 10px 0;
                min-height: 100vh;
            min-height: 100svh;
            }

            .hero-top {
                padding: 0 15px;
            }

            .hero-top .logo-wording {
                max-width: clamp(200px, 80vw, 280px);
            }

            .hero-middle {
                gap: clamp(10px, 2vh, 20px);
            }

            .hero-middle .logo-image {
                max-width: clamp(150px, 70vw, 250px);
            }

            .hero-stat {
                transform: translateX(-20px);
            }

            .hero-stat-number {
                font-size: clamp(40px, 10vw, 60px);
            }

            .hero-stat-label {
                font-size: clamp(14px, 3.5vw, 18px);
            }

            .shop-now-btn,
            .features-btn {
                padding: 6px 9.4px;
                font-size: 11.05px;
            }

            .hero-cta-group {
                flex-direction: column;
                gap: 0;
                padding: 8px 8px;
                left: 0;
                right: auto;
                transform: none;
                border-top-right-radius: 10px;
                border-top-left-radius: 0;
                opacity: 0.75;
            }

            /* Improve text readability on small screens */
            .benefits-title {
                font-size: 22px !important;
                line-height: 1.2;
                word-wrap: break-word;
            }

            .story-title {
                font-size: 26px !important;
                line-height: 1.2;
            }

            .story-desc {
                font-size: 16px !important;
                line-height: 1.6;
            }

            /* Prevent horizontal overflow */
            body {
                overflow-x: hidden;
            }

            .hero,
            .product-story,
            .story-benefits {
                overflow-x: hidden;
            }
        }

        @media (min-width: 769px) {
            .logo-banner {
                gap: 50px;
                padding: 50px 0;
            }

            .hero-top {
                padding: 0 20px;
            }

            .hero-top .logo-wording {
                max-width: 600px;
            }

            .hero-middle .logo-image {
                max-width: 440px;
            }

            .hero-middle {
                gap: 50px;
            }

            .hero-stat {
                transform: translateX(-20px);
            }

            .hero-stat:hover {
                transform: translateX(-20px) scale(1.02);
            }
        }

        .shop-now-btn,
        .features-btn {
            display: inline-block;
            padding: 6.8px 14.5px;
            font-size: 14.3px;
            font-weight: 700;
            text-decoration: none;
            border-radius: 5px;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            font-family: 'Oxanium', sans-serif;
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
            min-width: 83px;
            text-align: center;
            opacity: 0.5;
        }

        .shop-now-btn {
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #eab308 100%);
            color: #000000;
            box-shadow: 0 4px 12px rgba(251, 191, 36, 0.6),
                0 0 30px rgba(251, 191, 36, 0.5),
                0 0 50px rgba(251, 191, 36, 0.3);
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
            border: 2px solid #fef3c7;
            opacity: 1;
            animation: cta-pulse 2s ease-in-out infinite;
            font-weight: 800;
            cursor: pointer;
        }

        @keyframes cta-pulse {

            0%,
            100% {
                box-shadow: 0 4px 12px rgba(251, 191, 36, 0.6),
                    0 0 30px rgba(251, 191, 36, 0.5),
                    0 0 50px rgba(251, 191, 36, 0.3);
                transform: scale(1);
            }

            50% {
                box-shadow: 0 6px 20px rgba(251, 191, 36, 0.9),
                    0 0 50px rgba(251, 191, 36, 0.8),
                    0 0 80px rgba(251, 191, 36, 0.5);
                transform: scale(1.04);
            }
        }

        .shop-now-btn:hover {
            background: linear-gradient(135deg, #fcd34d 0%, #fbbf24 50%, #f59e0b 100%);
            transform: translateY(-4px) scale(1.08);
            box-shadow: 0 10px 30px rgba(251, 191, 36, 0.9),
                0 0 60px rgba(251, 191, 36, 0.8),
                0 0 100px rgba(251, 191, 36, 0.5);
            animation: none;
        }

        .features-btn {
            background: #9333ea;
            color: #fff;
            box-shadow: 0 1.2px 3.6px rgba(147, 51, 234, 0.3);
            border: 0.85px solid #c084fc;
            opacity: 0.9;
        }

        .features-btn:hover {
            background: #7e22ce;
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 6px 15px rgba(147, 51, 234, 0.6),
                0 0 25px rgba(147, 51, 234, 0.7),
                0 0 45px rgba(147, 51, 234, 0.4);
            opacity: 1;
        }

        /* Hero Trust Line - card style with hover/glow */
        .hero-trust-line > span {
            background: rgba(15, 15, 25, 0.5);
            border: 1px solid rgba(34, 197, 94, 0.2);
            padding: 8px 14px;
            border-radius: 8px;
            transition: all 0.3s ease;
            cursor: default;
            box-shadow: 0 0 8px rgba(34, 197, 94, 0.05);
        }

        .hero-trust-line > span:hover {
            border-color: rgba(34, 197, 94, 0.5);
            box-shadow: 0 0 15px rgba(34, 197, 94, 0.2), 0 0 30px rgba(34, 197, 94, 0.1);
            background: rgba(15, 15, 25, 0.7);
            transform: translateY(-2px);
        }

        /* Social Proof Badges - glow cards */
        .social-proof-badges {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin-top: 1em;
            margin-bottom: 1em;
        }

        .social-proof-badge {
            display: flex;
            align-items: center;
            gap: 6px;
            background: rgba(15, 15, 25, 0.5);
            padding: 8px 14px;
            border-radius: 8px;
            border: 1px solid rgba(139, 92, 246, 0.2);
            transition: all 0.35s ease;
            cursor: default;
        }

        .social-proof-icon {
            font-size: 16px;
        }

        .social-proof-text {
            color: rgba(255, 255, 255, 0.85);
            font-size: 12px;
            font-weight: 600;
        }

        .social-proof-green {
            border-color: rgba(34, 197, 94, 0.3);
            box-shadow: 0 0 10px rgba(34, 197, 94, 0.1), 0 0 20px rgba(34, 197, 94, 0.05);
            animation: proof-pulse-green 3s ease-in-out infinite alternate;
        }

        .social-proof-green:hover {
            border-color: rgba(34, 197, 94, 0.6);
            box-shadow: 0 0 15px rgba(34, 197, 94, 0.3), 0 0 35px rgba(34, 197, 94, 0.15), 0 0 55px rgba(34, 197, 94, 0.08);
            background: rgba(15, 15, 25, 0.7);
            transform: translateY(-3px);
        }

        .social-proof-gold {
            border-color: rgba(251, 191, 36, 0.3);
            box-shadow: 0 0 10px rgba(251, 191, 36, 0.1), 0 0 20px rgba(251, 191, 36, 0.05);
            animation: proof-pulse-gold 3s ease-in-out infinite alternate;
        }

        .social-proof-gold:hover {
            border-color: rgba(251, 191, 36, 0.6);
            box-shadow: 0 0 15px rgba(251, 191, 36, 0.3), 0 0 35px rgba(251, 191, 36, 0.15), 0 0 55px rgba(251, 191, 36, 0.08);
            background: rgba(15, 15, 25, 0.7);
            transform: translateY(-3px);
        }

        .social-proof-purple {
            border-color: rgba(139, 92, 246, 0.3);
            box-shadow: 0 0 10px rgba(139, 92, 246, 0.1), 0 0 20px rgba(139, 92, 246, 0.05);
            animation: proof-pulse-purple 3s ease-in-out infinite alternate;
        }

        .social-proof-purple:hover {
            border-color: rgba(139, 92, 246, 0.6);
            box-shadow: 0 0 15px rgba(139, 92, 246, 0.3), 0 0 35px rgba(139, 92, 246, 0.15), 0 0 55px rgba(139, 92, 246, 0.08);
            background: rgba(15, 15, 25, 0.7);
            transform: translateY(-3px);
        }

        @keyframes proof-pulse-green {
            0% { box-shadow: 0 0 10px rgba(34, 197, 94, 0.1), 0 0 20px rgba(34, 197, 94, 0.05); }
            100% { box-shadow: 0 0 14px rgba(34, 197, 94, 0.18), 0 0 28px rgba(34, 197, 94, 0.08); }
        }

        @keyframes proof-pulse-gold {
            0% { box-shadow: 0 0 10px rgba(251, 191, 36, 0.1), 0 0 20px rgba(251, 191, 36, 0.05); }
            100% { box-shadow: 0 0 14px rgba(251, 191, 36, 0.18), 0 0 28px rgba(251, 191, 36, 0.08); }
        }

        @keyframes proof-pulse-purple {
            0% { box-shadow: 0 0 10px rgba(139, 92, 246, 0.1), 0 0 20px rgba(139, 92, 246, 0.05); }
            100% { box-shadow: 0 0 14px rgba(139, 92, 246, 0.18), 0 0 28px rgba(139, 92, 246, 0.08); }
        }

        @keyframes shine {
            0% {
                transform: skewX(-25deg) translateX(-300%);
            }

            100% {
                transform: skewX(-25deg) translateX(300%);
            }
        }

        @keyframes glow-pulse {

            0%,
            100% {
                box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
            }

            50% {
                box-shadow: 0 0 30px rgba(251, 191, 36, 0.8),
                    0 0 60px rgba(251, 191, 36, 0.6),
                    0 0 90px rgba(251, 191, 36, 0.4);
            }
        }

        .shop-now-btn::before,
        .features-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 50%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transform: skewX(-25deg) translateX(-300%);
            will-change: transform;
        }

        .shop-now-btn.shine::before,
        .features-btn.shine::before {
            animation: shine 0.8s;
        }

        @keyframes glow {

            0%,
            100% {
                box-shadow: 0 1.2px 3.6px rgba(251, 191, 36, 0.3);
            }

            50% {
                box-shadow: 0 0 20px rgba(251, 191, 36, 0.8),
                    0 0 30px rgba(251, 191, 36, 0.6),
                    0 0 40px rgba(251, 191, 36, 0.4);
            }
        }

        @keyframes glow-purple {

            0%,
            100% {
                box-shadow: 0 1.2px 3.6px rgba(147, 51, 234, 0.3);
            }

            50% {
                box-shadow: 0 0 20px rgba(147, 51, 234, 0.8),
                    0 0 30px rgba(147, 51, 234, 0.6),
                    0 0 40px rgba(147, 51, 234, 0.4);
            }
        }

        .shop-now-btn.glow {
            animation: glow 1.5s ease-in-out;
        }

        .features-btn.glow {
            animation: glow-purple 1.5s ease-in-out;
        }

        @keyframes glow-red {

            0%,
            100% {
                box-shadow: 0 1.2px 3.6px rgba(248, 113, 113, 0.3);
            }

            50% {
                box-shadow: 0 1.8px 4.8px rgba(248, 113, 113, 0.8),
                    0 0 12.8px rgba(248, 113, 113, 0.9),
                    0 0 21.3px rgba(248, 113, 113, 0.7);
            }
        }

        @keyframes glow-blue {

            0%,
            100% {
                box-shadow: 0 1.2px 3.6px rgba(6, 182, 212, 0.3);
            }

            50% {
                box-shadow: 0 1.8px 4.8px rgba(6, 182, 212, 0.8),
                    0 0 12.8px rgba(6, 182, 212, 0.9),
                    0 0 21.3px rgba(6, 182, 212, 0.7);
            }
        }

        .scroll-arrows {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: -10px;
            animation: bounce 2s infinite;
            pointer-events: auto;
            z-index: 10;
            text-decoration: none;
            cursor: pointer;
        }

        .scroll-arrows svg {
            width: 40px;
            height: 40px;
            fill: rgba(251, 191, 36, 0.5);
        }

        @keyframes bounce {

            0%,
            20%,
            50%,
            80%,
            100% {
                transform: translateX(-50%) translateY(0);
            }

            40% {
                transform: translateX(-50%) translateY(-16px);
            }

            60% {
                transform: translateX(-50%) translateY(-8px);
            }
        }

