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

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

        body {
            font-family: 'Red Hat Display', sans-serif;
            background: #000000;
            min-height: 100vh;
            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;
        }

        /* Remove expensive backdrop-filter for better performance */
        * {
            backdrop-filter: none !important;
            -webkit-backdrop-filter: none !important;
        }

        /* 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%;
            min-height: 100vh;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: linear-gradient(180deg,
                    #1a0a2e 0%,
                    #2d1548 30%,
                    #1a0a2e 60%,
                    #0a0118 100%);
            padding-bottom: 0;
        }

        .hero-switcher {
            position: relative;
            width: 100%;
            min-height: 100vh;
            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(-2px);
            box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
        }

        @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: 32px;
            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 35px rgba(251, 191, 36, 0.7));
            animation: logo-glow 4s ease-in-out infinite;
            will-change: filter;
            transform: translateZ(0);
        }

        @keyframes logo-glow {

            0%,
            100% {
                filter: drop-shadow(0 0 35px rgba(251, 191, 36, 0.7));
            }

            50% {
                filter: drop-shadow(0 0 45px rgba(251, 191, 36, 0.9));
            }
        }

        /* 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(-8px) rotate(-8deg);
            }
        }

        /* 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 */
        .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;
            transition: all 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);
            text-transform: uppercase;
            letter-spacing: 0.3px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
            position: relative;
            z-index: 99997;
        }

        .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), 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;
        }

        .hero-video-cta.sticky-mode:hover {
            background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
            box-shadow: 0 6px 16px rgba(251, 191, 36, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
            transform: translateY(-1px) 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 {
            transition: font-size 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .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;
        }

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

        .hero-video-cta:hover {
            background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(251, 191, 36, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }

        .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(-5px);
            }
        }

        /* 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: 100px;
            }

            .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: 75%;
                flex-direction: row;
                gap: 0;
            }

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

            /* 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: 75%;
            }

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

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

            .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;
            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;
            }

            .hero {
                padding: 0;
                min-height: 100vh;
            }

            .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;
            }

            .hero {
                min-height: 100vh;
            }

            .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 4px 15px rgba(251, 191, 36, 0.8),
                    0 0 40px rgba(251, 191, 36, 0.7),
                    0 0 70px rgba(251, 191, 36, 0.5);
                transform: scale(1.02);
            }
        }

        .shop-now-btn:hover {
            background: linear-gradient(135deg, #fcd34d 0%, #fbbf24 50%, #f59e0b 100%);
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 6px 20px rgba(251, 191, 36, 0.8),
                0 0 50px rgba(251, 191, 36, 0.7),
                0 0 80px 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(-0.6px);
            box-shadow: 0 1.8px 4.8px rgba(147, 51, 234, 0.5),
                0 0 12.8px rgba(147, 51, 234, 0.6),
                0 0 21.3px rgba(147, 51, 234, 0.4);
            opacity: 1;
        }

        @keyframes shine {
            0% {
                left: -100%;
            }

            100% {
                left: 100%;
            }
        }

        @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: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transform: skewX(-25deg);
        }

        .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(-10px);
            }

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

        /* Console Carousel Section - Modern Redesign */
        .console-section {
            width: 100vw;
            max-width: 100vw;
            background: linear-gradient(180deg,
                rgba(15, 10, 30, 0.95) 0%,
                rgba(25, 15, 45, 0.98) 50%,
                rgba(15, 10, 30, 0.95) 100%);
            padding: 120px 0 60px 0;
            overflow: hidden;
            position: relative;
            margin-left: calc(-50vw + 50%);
            margin-right: calc(-50vw + 50%);
        }

        /* Animated gradient orbs background */
        .console-section::before {
            content: '';
            position: absolute;
            top: 10%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
            filter: blur(80px);
            animation: orb-float-1 15s ease-in-out infinite;
        }

        .console-section::after {
            content: '';
            position: absolute;
            bottom: 10%;
            right: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(251, 191, 36, 0.12) 0%, transparent 70%);
            filter: blur(80px);
            animation: orb-float-2 18s ease-in-out infinite;
        }

        @keyframes orb-float-1 {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(50px, 30px); }
        }

        @keyframes orb-float-2 {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(-40px, -20px); }
        }

        .console-carousel-label {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            font-family: 'Oxanium', sans-serif;
            font-size: 48px;
            font-weight: 800;
            color: #ffffff;
            letter-spacing: 1px;
            margin-bottom: 40px;
            position: relative;
            padding: 0;
            text-transform: uppercase;
            text-shadow:
                0 0 20px rgba(255, 255, 255, 0.8),
                0 0 40px rgba(255, 255, 255, 0.6),
                0 0 60px rgba(255, 255, 255, 0.4);
        }

        .console-carousel-label span {
            position: relative;
            z-index: 1;
        }

        /* Subtle underline accent */
        .console-carousel-label span::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 3px;
            background: linear-gradient(90deg, transparent, #8b5cf6, #fbbf24, transparent);
            border-radius: 2px;
        }

        .console-label-icon {
            font-size: 28px;
            filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.6));
        }

        .console-section-description {
            max-width: 800px;
            margin: 0 auto 50px;
            text-align: center;
            font-size: 18px;
            line-height: 1.9;
            color: rgba(255, 255, 255, 0.85);
            padding: 0 40px;
            font-weight: 400;
            position: relative;
            z-index: 1;
        }

        .console-section-description strong {
            color: #fbbf24;
            font-weight: 600;
        }

        /* Modern glassmorphism card for content */
        .emulated-content-card {
            background: linear-gradient(135deg,
                rgba(255, 255, 255, 0.05) 0%,
                rgba(255, 255, 255, 0.02) 100%);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            padding: 50px 40px;
            max-width: 900px;
            margin: 0 auto 50px;
            position: relative;
            z-index: 1;
        }

        .emulated-content-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5), rgba(251, 191, 36, 0.5), transparent);
        }

        /* Stats highlight row */
        .emulated-stats-row {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .emulated-stat-item {
            text-align: center;
            padding: 20px 30px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
            min-width: 140px;
        }

        .emulated-stat-item:hover {
            transform: translateY(-4px);
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(139, 92, 246, 0.3);
        }

        .emulated-stat-number {
            font-family: 'Oxanium', sans-serif;
            font-size: 36px;
            font-weight: 800;
            color: #a78bfa;
            display: block;
            margin-bottom: 8px;
            text-shadow:
                0 0 20px rgba(139, 92, 246, 0.8),
                0 0 40px rgba(139, 92, 246, 0.6),
                0 0 60px rgba(139, 92, 246, 0.4);
        }

        .emulated-stat-number.gold {
            color: #fbbf24;
            text-shadow:
                0 0 20px rgba(251, 191, 36, 0.8),
                0 0 40px rgba(251, 191, 36, 0.6),
                0 0 60px rgba(251, 191, 36, 0.4);
        }

        .emulated-stat-number.green {
            color: #4ade80;
            text-shadow:
                0 0 20px rgba(34, 197, 94, 0.8),
                0 0 40px rgba(34, 197, 94, 0.6),
                0 0 60px rgba(34, 197, 94, 0.4);
        }

        .emulated-stat-label {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
        }

        /* "All in one" badge */
        .all-in-one-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(139, 92, 246, 0.1) 100%);
            border: 1px solid rgba(139, 92, 246, 0.3);
            border-radius: 50px;
            padding: 12px 28px;
            margin-bottom: 35px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: rgba(255, 255, 255, 0.9);
        }

        .all-in-one-badge span {
            color: #a78bfa;
            font-weight: 800;
        }

        /* Modern "and more" styling */
        .and-more-text {
            font-family: 'Oxanium', sans-serif;
            font-size: 42px;
            font-weight: 700;
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 50px 0;
            text-align: center;
            position: relative;
        }

        .and-more-text::before,
        .and-more-text::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.5));
        }

        .and-more-text::before {
            right: calc(50% + 120px);
            background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.5));
        }

        .and-more-text::after {
            left: calc(50% + 120px);
            background: linear-gradient(90deg, rgba(251, 191, 36, 0.5), transparent);
        }

        /* CTA wrapper */
        .emulated-cta-wrapper {
            text-align: center;
            padding-top: 20px;
        }

        .emulated-cta-tagline {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 8px;
        }

        .emulated-cta-highlight {
            font-size: 20px;
            color: #fbbf24;
            font-weight: 600;
            margin-bottom: 25px;
        }

        /* Modern divider */
        .emulated-divider {
            width: 100%;
            max-width: 200px;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.4), transparent);
            margin: 70px auto;
            position: relative;
        }

        .emulated-divider::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 8px;
            height: 8px;
            background: #8b5cf6;
            border-radius: 50%;
            box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
        }

        /* Consoles sub-section */
        .consoles-subsection-title {
            font-family: 'Oxanium', sans-serif;
            font-size: 28px;
            font-weight: 700;
            text-align: center;
            margin: 0 0 30px 0;
            position: relative;
            z-index: 1;
        }

        .consoles-subsection-title .purple {
            color: #a78bfa;
        }

        .consoles-subsection-title .gold {
            color: #fbbf24;
        }

        /* Benefits list modern style */
        .benefits-card {
            background: linear-gradient(135deg,
                rgba(255, 255, 255, 0.03) 0%,
                rgba(255, 255, 255, 0.01) 100%);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 35px 40px;
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .benefits-intro {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.8);
            text-align: center;
            line-height: 1.7;
            margin-bottom: 25px;
        }

        .benefits-intro strong {
            color: #fbbf24;
        }

        .benefits-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .benefits-list li {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 12px 0;
            font-size: 15px;
            color: rgba(255, 255, 255, 0.85);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .benefits-list li:last-child {
            border-bottom: none;
        }

        .benefits-list li strong {
            color: #ffffff;
        }

        .benefit-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(34, 197, 94, 0.1) 100%);
            border-radius: 50%;
            color: #22c55e;
            font-size: 12px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        /* Emulated CTA Button Shine Animation */
        .emulated-cta-button::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -100%;
            width: 50%;
            height: 200%;
            background: linear-gradient(90deg,
                    transparent,
                    rgba(255, 255, 255, 0.8),
                    transparent);
            transform: skewX(-25deg);
            animation: gloss-shine 1s ease-in-out;
            animation-delay: var(--shine-delay, 3s);
            animation-iteration-count: 1;
            pointer-events: none;
        }

        @keyframes gloss-shine {
            0% {
                left: -100%;
            }

            100% {
                left: 200%;
            }
        }

        .emulated-cta-button:hover {
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 2px 0 rgba(255, 255, 255, 0.7) inset,
                0 10px 25px rgba(251, 191, 36, 0.9),
                0 0 60px rgba(251, 191, 36, 0.7),
                0 0 90px rgba(251, 191, 36, 0.5);
            border-color: #fef3c7;
        }

        .console-carousel {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 100px;
        }

        .gamebro-best-title {
            font-family: 'Oxanium', sans-serif;
            font-size: 48px;
            font-weight: 800;
            text-align: center;
            color: #ffffff;
            margin-bottom: 40px;
            text-shadow: 0 0 20px rgba(251, 191, 36, 0.8),
                0 0 40px rgba(139, 92, 246, 0.6),
                0 0 60px rgba(34, 197, 94, 0.4);
            letter-spacing: 2px;
        }

        .console-track {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 30px;
            width: 100%;
        }

        .console-card {
            aspect-ratio: 1;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(251, 191, 36, 0.1) 50%, rgba(236, 72, 153, 0.1) 100%);
            border: 3px solid rgba(251, 191, 36, 0.6);
            border-radius: 16px;
            padding: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(15px);
            transition: all 0.4s ease;
            width: 100%;
            position: relative;
            text-decoration: none;
            color: inherit;
            cursor: pointer;
            overflow: visible;
            box-shadow: 0 4px 20px rgba(251, 191, 36, 0.3),
                0 0 30px rgba(139, 92, 246, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            animation: console-glow 3s ease-in-out infinite;
        }

        @keyframes console-glow {

            0%,
            100% {
                box-shadow: 0 4px 20px rgba(251, 191, 36, 0.3),
                    0 0 30px rgba(139, 92, 246, 0.2),
                    inset 0 1px 0 rgba(255, 255, 255, 0.2);
            }

            50% {
                box-shadow: 0 6px 25px rgba(251, 191, 36, 0.5),
                    0 0 45px rgba(139, 92, 246, 0.4),
                    0 0 60px rgba(236, 72, 153, 0.3),
                    inset 0 1px 0 rgba(255, 255, 255, 0.3);
            }
        }

        .console-card:hover {
            border-color: rgba(251, 191, 36, 1);
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.25) 0%, rgba(251, 191, 36, 0.2) 50%, rgba(236, 72, 153, 0.2) 100%);
            box-shadow: 0 10px 40px rgba(251, 191, 36, 0.6),
                0 0 60px rgba(139, 92, 246, 0.5),
                0 0 80px rgba(236, 72, 153, 0.4),
                inset 0 2px 0 rgba(255, 255, 255, 0.4);
            transform: translateY(-6px) scale(1.08);
            animation: none;
        }

        .console-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.5)) drop-shadow(0 0 30px rgba(139, 92, 246, 0.4)) drop-shadow(0 0 40px rgba(236, 72, 153, 0.3)) brightness(1.1) saturate(1.2);
            transition: filter 0.4s ease, transform 0.4s ease;
            transform: scale(1.8);
        }

        .console-card:hover .console-image {
            filter: drop-shadow(0 0 30px rgba(251, 191, 36, 0.8)) drop-shadow(0 0 45px rgba(139, 92, 246, 0.7)) drop-shadow(0 0 60px rgba(236, 72, 153, 0.6)) drop-shadow(0 0 80px rgba(34, 197, 94, 0.4)) brightness(1.3) saturate(1.4);
            transform: scale(1.85);
        }

        .console-name {
            position: absolute;
            bottom: 8px;
            left: 50%;
            transform: translateX(-50%);
            font-family: 'Oxanium', sans-serif;
            font-size: 32px;
            font-weight: 900;
            color: #ffffff;
            text-shadow: 0 0 8px rgba(0, 0, 0, 1),
                0 0 12px rgba(0, 0, 0, 1),
                0 0 16px rgba(0, 0, 0, 0.9),
                0 2px 6px rgba(0, 0, 0, 1),
                0 4px 8px rgba(0, 0, 0, 0.8),
                0 0 20px rgba(236, 72, 153, 0.6),
                0 0 25px rgba(139, 92, 246, 0.5),
                0 0 30px rgba(34, 197, 94, 0.4);
            letter-spacing: 1.5px;
            -webkit-text-stroke: 1px rgba(0, 0, 0, 0.5);
            text-transform: uppercase;
            pointer-events: none;
            white-space: nowrap;
        }

        /* Game Series Flip Card Styles */
        .game-flip-card {
            aspect-ratio: 1;
            perspective: 1000px;
            width: 100%;
            position: relative;
            min-height: 225px;
        }

        .game-flip-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            transform-style: preserve-3d;
        }

        .game-flip-card.flipping .game-flip-inner {
            transform: rotateY(180deg);
        }

        .game-flip-front,
        .game-flip-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(236, 72, 153, 0.12) 50%, rgba(139, 92, 246, 0.1) 100%);
            border: 3px solid rgba(251, 191, 36, 0.7);
            border-radius: 16px;
            padding: 15px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(15px);
            text-decoration: none;
            color: inherit;
            transition: all 0.4s ease;
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
            animation: game-card-glow 4s ease-in-out infinite;
        }

        @keyframes game-card-glow {

            0%,
            100% {
                box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2),
                    inset 0 1px 0 rgba(255, 255, 255, 0.1);
            }

            50% {
                box-shadow: 0 6px 20px rgba(139, 92, 246, 0.3),
                    inset 0 1px 0 rgba(255, 255, 255, 0.15);
            }
        }

        .game-flip-back {
            transform: rotateY(180deg);
        }

        .game-flip-card:hover .game-flip-front,
        .game-flip-card:hover .game-flip-back {
            border-color: rgba(251, 191, 36, 1);
            background: linear-gradient(135deg, rgba(251, 191, 36, 0.25) 0%, rgba(236, 72, 153, 0.2) 50%, rgba(139, 92, 246, 0.18) 100%);
            box-shadow: 0 8px 35px rgba(251, 191, 36, 0.8),
                0 0 55px rgba(236, 72, 153, 0.7),
                0 0 75px rgba(139, 92, 246, 0.6),
                0 0 100px rgba(34, 197, 94, 0.4),
                inset 0 2px 0 rgba(255, 255, 255, 0.4);
            animation: none;
        }

        .game-title {
            font-family: 'Oxanium', sans-serif;
            font-size: 18px;
            font-weight: 900;
            text-align: center;
            margin-top: 8px;
            color: #ffffff;
            text-shadow: 0 0 8px rgba(0, 0, 0, 1),
                0 0 12px rgba(0, 0, 0, 1),
                0 0 20px rgba(236, 72, 153, 0.6),
                0 0 25px rgba(139, 92, 246, 0.5);
            letter-spacing: 0.5px;
            text-transform: uppercase;
            line-height: 1.2;
        }

        .game-number {
            position: absolute;
            top: 8px;
            right: 8px;
            font-family: 'Oxanium', sans-serif;
            font-size: 14px;
            font-weight: 700;
            background: rgba(251, 191, 36, 0.9);
            color: #000;
            padding: 4px 8px;
            border-radius: 6px;
            box-shadow: 0 0 10px rgba(251, 191, 36, 0.6);
        }

        .game-icon {
            font-size: 48px;
            filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.6)) drop-shadow(0 0 30px rgba(236, 72, 153, 0.5)) drop-shadow(0 0 40px rgba(139, 92, 246, 0.4));
        }

        .game-icon img {
            width: 143px;
            height: 143px;
            object-fit: contain;
            border-radius: 12px;
            filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 20px rgba(139, 92, 246, 0.3));
        }

        .console-card-link {
            text-decoration: none;
            color: inherit;
            display: block;
            width: calc(33.333% - 10px);
            min-width: 250px;
            max-width: 300px;
        }

        .console-card-link:hover .classic-game-flip-card {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
        }

        .classic-game-flip-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .game-title {
            font-size: 16px;
            line-height: 1.2;
            text-align: center;
        }

        .game-title-long {
            font-size: 13px;
        }

        /* Classic Games Flip Card Styles */
        .classic-game-flip-card {
            perspective: 1000px;
            width: 100%;
            aspect-ratio: 1;
            position: relative;
            min-height: 150px;
        }

        .classic-game-flip-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            transform-style: preserve-3d;
        }

        .classic-game-flip-card.flipping .classic-game-flip-inner {
            transform: rotateY(180deg);
        }

        .classic-game-flip-front,
        .classic-game-flip-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            background: rgba(139, 92, 246, 0.1);
            border: 2px solid rgba(139, 92, 246, 0.3);
            border-radius: 16px;
            padding: 15px 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-evenly;
            gap: 5px;
            text-decoration: none;
            color: inherit;
            transition: all 0.4s ease;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
            animation: game-card-glow 4s ease-in-out infinite;
            overflow: hidden;
        }

        .classic-game-flip-front::before,
        .classic-game-flip-back::before {
            content: '';
            position: absolute;
            inset: 0;
            background: none;
            border-radius: 16px;
            z-index: 1;
        }

        .classic-game-flip-front>*,
        .classic-game-flip-back>* {
            position: relative;
            z-index: 2;
        }

        .classic-game-flip-back {
            transform: rotateY(180deg);
        }

        .classic-game-flip-card:hover .classic-game-flip-front,
        .classic-game-flip-card:hover .classic-game-flip-back {
            border-color: rgba(139, 92, 246, 0.6);
            background: rgba(139, 92, 246, 0.15);
            box-shadow: 0 10px 40px rgba(139, 92, 246, 0.3);
            animation: none;
            transform: translateY(-5px);
        }

        .classic-game-flip-card:hover .classic-game-flip-front::before,
        .classic-game-flip-card:hover .classic-game-flip-back::before {
            background: none;
        }

        .classic-game-flip-card:hover .classic-game-flip-back {
            transform: rotateY(180deg);
        }

        @media (max-width: 768px) {
            .console-section {
                padding: 80px 0;
            }

            .console-carousel {
                padding: 30px 20px;
            }

            .console-carousel-label {
                font-size: 28px;
                margin-bottom: 40px;
                padding: 0 20px;
                text-align: center;
            }

            .console-carousel-label span::after {
                width: 80px;
                bottom: -10px;
            }

            .console-section-description {
                font-size: 16px;
                padding: 0 20px;
                margin-bottom: 40px;
                line-height: 1.7;
                text-align: center;
            }

            .console-label-icon {
                font-size: 24px;
            }

            .gamebro-best-title {
                font-size: 36px;
                margin-bottom: 30px;
            }

            .console-track {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .console-card:nth-child(n+13) {
                display: none;
            }

            .console-card {
                padding: 15px;
            }

            .game-title {
                font-size: 14px;
            }

            .game-icon {
                font-size: 36px;
            }

            .game-icon img {
                width: 130px;
                height: 130px;
            }

            .game-number {
                font-size: 12px;
                padding: 3px 6px;
            }

            #classicGamesGrid {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 10px !important;
            }

            .classic-game-flip-card {
                min-height: 100px;
            }

            /* Modern section responsive */
            .emulated-content-card {
                padding: 30px 20px;
                margin: 0 15px 40px;
                border-radius: 18px;
            }

            .emulated-stats-row {
                gap: 15px;
            }

            .emulated-stat-item {
                padding: 15px 20px;
                min-width: 100px;
            }

            .emulated-stat-number {
                font-size: 28px;
            }

            .emulated-stat-label {
                font-size: 11px;
            }

            .all-in-one-badge {
                padding: 10px 20px;
                font-size: 12px;
            }

            .and-more-text {
                font-size: 32px;
            }

            .and-more-text::before,
            .and-more-text::after {
                display: none;
            }

            .emulated-cta-tagline {
                font-size: 16px;
            }

            .emulated-cta-highlight {
                font-size: 18px;
            }

            .consoles-subsection-title {
                font-size: 22px;
                padding: 0 20px;
            }

            .benefits-card {
                margin: 0 15px;
                padding: 25px 20px;
            }

            .benefits-intro {
                font-size: 14px;
            }

            .benefits-list li {
                font-size: 14px;
                padding: 10px 0;
            }
        }

        /* Extra small mobile devices */
        @media (max-width: 480px) {
            .gamebro-best-title {
                font-size: 32px;
                margin-bottom: 25px;
            }

            .console-track {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .console-card:nth-child(n+13) {
                display: none;
            }

            .console-card {
                padding: 12px;
            }

            .console-carousel-label {
                font-size: 22px;
                margin-bottom: 30px;
                padding: 0 15px;
                text-align: center;
            }

            .console-carousel-label span::after {
                width: 60px;
            }

            .console-section-description {
                font-size: 14px;
                padding: 0 15px;
                margin-bottom: 30px;
                line-height: 1.6;
                text-align: center;
            }

            .emulated-stats-row {
                flex-direction: column;
                align-items: center;
                gap: 12px;
            }

            .emulated-stat-item {
                width: 100%;
                max-width: 200px;
            }

            .and-more-text {
                font-size: 28px;
            }

            .consoles-subsection-title {
                font-size: 20px;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .console-carousel {
                padding: 40px 50px;
            }

            .console-track {
                grid-template-columns: repeat(4, 1fr);
                gap: 25px;
            }

            .console-card {
                padding: 30px;
            }
        }

        /* Product Comparison Section */
        .comparison-section {
            width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            margin-top: 100px;
            margin-bottom: 100px;
            padding: 80px 40px;
            background: linear-gradient(180deg, rgba(139, 92, 246, 0.1) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(251, 191, 36, 0.1) 100%);
            overflow: hidden;
        }

        .comparison-title {
            font-family: 'Oxanium', sans-serif;
            font-size: clamp(32px, 5vw, 48px);
            font-weight: 800;
            text-align: center;
            color: #ffffff;
            margin-bottom: 15px;
            text-shadow: 0 0 20px rgba(255, 255, 255, 0.8),
                0 0 40px rgba(255, 255, 255, 0.6);
            letter-spacing: 1px;
        }

        .comparison-subtitle {
            font-family: 'Red Hat Display', sans-serif;
            font-size: clamp(14px, 2vw, 18px);
            text-align: center;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 50px;
        }

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

        .comparison-table {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            align-items: stretch;
        }

        .comparison-card {
            background: rgba(139, 92, 246, 0.1);
            border: 2px solid rgba(139, 92, 246, 0.3);
            border-radius: 20px;
            padding: 30px;
            position: relative;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            box-shadow: 0 8px 120px rgba(139, 92, 246, 0.25), 0 0 180px rgba(139, 92, 246, 0.15);
        }

        .comparison-card:hover {
            transform: translateY(-5px);
            border-color: rgba(139, 92, 246, 0.6);
            box-shadow: 0 12px 150px rgba(139, 92, 246, 0.3), 0 0 240px rgba(139, 92, 246, 0.2);
        }

        .comparison-card-popular {
            border: 3px solid rgba(251, 191, 36, 0.6);
            background: rgba(251, 191, 36, 0.08);
            box-shadow: 0 8px 120px rgba(251, 191, 36, 0.25), 0 0 180px rgba(251, 191, 36, 0.175);
        }

        .comparison-card-popular:hover {
            border-color: rgba(251, 191, 36, 0.9);
            box-shadow: 0 12px 150px rgba(251, 191, 36, 0.325), 0 0 240px rgba(251, 191, 36, 0.225);
        }

        .comparison-card-image {
            width: 100%;
            height: 280px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            padding: 0 20px;
        }

        .comparison-card-image img {
            max-width: 100%;
            max-height: 260px;
            object-fit: contain;
            border-radius: 12px;
            filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 30px rgba(139, 92, 246, 0.5));
        }

        .comparison-card-popular .comparison-card-image img {
            filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 30px rgba(251, 191, 36, 0.5));
        }

        .popular-badge,
        .premium-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            padding: 8px 20px;
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            color: #000000;
            font-family: 'Oxanium', sans-serif;
            font-size: 14px;
            font-weight: 700;
            border-radius: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
            white-space: nowrap;
            box-shadow: 0 4px 15px rgba(251, 191, 36, 0.5);
        }

        .premium-badge {
            background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
            color: #ffffff;
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.5);
        }

        .comparison-header {
            text-align: center;
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 2px solid rgba(139, 92, 246, 0.2);
        }

        .comparison-model {
            font-family: 'Oxanium', sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 15px;
        }

        .comparison-price {
            margin-bottom: 10px;
        }

        .price-amount {
            font-family: 'Oxanium', sans-serif;
            font-size: 36px;
            font-weight: 800;
            color: #fbbf24;
            text-shadow: 0 0 20px rgba(251, 191, 36, 0.6);
        }

        /* Christmas Sale Styles */
        .price-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .old-price {
            font-family: 'Oxanium', sans-serif;
            font-size: 20px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.5);
            text-decoration: line-through;
            text-decoration-color: #ef4444;
            text-decoration-thickness: 2px;
        }

        .savings-badge {
            display: inline-block;
            background: #dc2626;
            color: #ffffff;
            padding: 6px 14px;
            border-radius: 20px;
            font-family: 'Red Hat Display', sans-serif;
            font-size: 14px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .sale-price {
            font-family: 'Oxanium', sans-serif;
            font-size: 32px;
            font-weight: 700;
            color: #fbbf24;
            text-shadow: 0 0 20px rgba(251, 191, 36, 0.6);
        }

        .savings-text {
            font-family: 'Oxanium', sans-serif;
            font-size: 16px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 4px;
        }

        .christmas-sale-banner {
            background: linear-gradient(135deg, #dc2626, #b91c1c);
            color: white;
            padding: 15px;
            text-align: center;
            font-family: 'Red Hat Display', sans-serif;
            font-size: 18px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            box-shadow: 0 4px 20px rgba(220, 38, 38, 0.5);
            border-radius: 12px;
            margin-bottom: 20px;
            animation: festive-glow 3s ease-in-out infinite;
        }

        @keyframes festive-glow {

            0%,
            100% {
                box-shadow: 0 4px 20px rgba(220, 38, 38, 0.5);
            }

            50% {
                box-shadow: 0 4px 30px rgba(220, 38, 38, 0.8);
            }
        }

        .hero-price-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .hero-old-price {
            font-family: 'Oxanium', sans-serif;
            font-size: clamp(20px, 3vw, 28px);
            font-weight: 600;
            color: rgba(255, 255, 255, 0.4);
            text-decoration: line-through;
            text-decoration-color: #ef4444;
            text-decoration-thickness: 3px;
        }

        /* Festive Top Banner */
        .festive-top-banner {
            width: 100%;
            background: linear-gradient(135deg, #16a34a, #15803d);
            color: white;
            padding: 8px 20px;
            text-align: center;
            font-family: 'Red Hat Display', sans-serif;
            box-shadow: 0 2px 12px rgba(22, 163, 74, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .festive-top-banner:hover {
            background: linear-gradient(135deg, #22c55e, #16a34a);
            box-shadow: 0 4px 20px rgba(22, 163, 74, 0.7);
        }

        .festive-banner-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .festive-banner-main {
            font-size: clamp(13px, 2.5vw, 16px);
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        @media (max-width: 768px) {
            .festive-top-banner {
                padding: 6px 12px;
            }

            .festive-banner-main {
                font-size: 12px;
            }
        }

        .comparison-tagline {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            font-style: italic;
        }

        .comparison-features {
            flex-grow: 1;
            margin-bottom: 25px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
            padding: 10px;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 10px;
            transition: all 0.2s ease;
        }

        .feature-item:hover {
            background: rgba(139, 92, 246, 0.2);
            transform: translateX(5px);
        }

        .feature-icon {
            font-size: 20px;
            min-width: 24px;
            text-align: center;
        }

        .feature-text {
            font-family: 'Red Hat Display', sans-serif;
            font-size: 15px;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
        }

        .comparison-cta {
            width: 100%;
            padding: 16px 24px;
            background: linear-gradient(180deg, #fcd34d 0%, #fbbf24 50%, #f59e0b 100%);
            color: #1a1a1a;
            border: none;
            border-radius: 10px;
            font-family: 'Oxanium', sans-serif;
            font-size: 16px;
            font-weight: 800;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.2s ease;
            box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
            letter-spacing: 0.3px;
        }

        @keyframes comparison-glow {

            0%,
            100% {
                box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset,
                    0 6px 18px rgba(251, 191, 36, 0.7),
                    0 0 40px rgba(251, 191, 36, 0.5),
                    0 0 60px rgba(251, 191, 36, 0.3);
            }

            50% {
                box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset,
                    0 8px 25px rgba(251, 191, 36, 0.9),
                    0 0 60px rgba(251, 191, 36, 0.7),
                    0 0 90px rgba(251, 191, 36, 0.5);
            }
        }

        .comparison-cta:hover {
            background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(251, 191, 36, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }

        .comparison-cta-secondary {
            background: linear-gradient(180deg, #fcd34d 0%, #fbbf24 50%, #f59e0b 100%);
            color: #1a1a1a;
            border: none;
            box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
            letter-spacing: 0.3px;
        }

        .comparison-cta-secondary:hover {
            background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(251, 191, 36, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }

        @media (max-width: 768px) {
            .comparison-section {
                padding: 60px 20px;
                margin-top: 60px;
                margin-bottom: 60px;
            }

            .comparison-table {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .comparison-card {
                padding: 25px;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .comparison-table {
                grid-template-columns: repeat(2, 1fr);
            }

            .comparison-card:nth-child(3) {
                grid-column: 1 / -1;
                max-width: 450px;
                margin: 0 auto;
            }
        }

        /* Upcoming Consoles Section */
        .upcoming-consoles-section {
            width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            margin-top: 135px;
            margin-bottom: 240px;
            padding: 80px 60px;
            background: #000000;
            overflow: hidden;
        }

        .upcoming-consoles-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120%;
            height: 120%;
            background: radial-gradient(ellipse at center,
                    rgba(139, 92, 246, 0.15) 0%,
                    rgba(236, 72, 153, 0.1) 30%,
                    rgba(251, 146, 60, 0.08) 50%,
                    transparent 70%);
            animation: pulse-glow-premium 6s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes pulse-glow-premium {

            0%,
            100% {
                opacity: 0.6;
                transform: translate(-50%, -50%) scale(1);
            }

            50% {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1.1);
            }
        }

        @keyframes float-sparkle-premium {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
                opacity: 0.6;
            }

            50% {
                transform: translateY(-15px) rotate(180deg);
                opacity: 1;
            }
        }

        .upcoming-consoles-title {
            font-size: 38px;
            font-weight: 800;
            text-align: center;
            margin-bottom: 60px;
            color: #f5f5f5;
            text-shadow: 0 0 20px rgba(255, 255, 255, 0.3),
                0 0 30px rgba(255, 255, 255, 0.2),
                0 0 40px rgba(255, 255, 255, 0.1);
            max-width: 1600px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 1;
        }

        .upcoming-consoles-title strong {
            text-decoration: underline;
            font-weight: 800;
        }

        .upcoming-consoles-subtitle {
            text-align: center;
            font-size: 18px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 50px;
            font-weight: 500;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .upcoming-consoles-subtitle a {
            color: #fbbf24;
            text-decoration: underline;
            transition: color 0.3s ease;
            font-weight: 600;
        }

        .upcoming-consoles-subtitle a:hover {
            color: #fcd34d;
            text-shadow: 0 0 10px rgba(251, 191, 36, 0.6);
        }

        .upcoming-consoles-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 40px;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
        }

        .upcoming-console-card {
            background: rgba(0, 0, 0, 0.5);
            border: 2px solid rgba(251, 146, 60, 0.4);
            border-radius: 16px;
            padding: 20px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 0 20px rgba(251, 146, 60, 0.15),
                0 0 40px rgba(139, 92, 246, 0.1);
        }

        .upcoming-console-card::before {
            content: 'DIRECT SHIP';
            position: absolute;
            top: 15px;
            right: -35px;
            background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
            color: white;
            padding: 6px 60px;
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 0.5px;
            transform: rotate(45deg);
            box-shadow: 0 2px 12px rgba(251, 146, 60, 0.6),
                0 0 20px rgba(251, 146, 60, 0.4);
            z-index: 10;
            white-space: nowrap;
        }

        .upcoming-console-card:hover {
            transform: translateY(-8px);
            border-color: rgba(251, 146, 60, 0.7);
            box-shadow: 0 0 40px rgba(251, 146, 60, 0.3),
                0 0 60px rgba(139, 92, 246, 0.2),
                0 0 80px rgba(236, 72, 153, 0.15);
        }

        .upcoming-console-image {
            width: 100%;
            height: auto;
            border-radius: 12px;
            margin-bottom: 20px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }

        .upcoming-console-name {
            font-size: 28px;
            font-weight: 700;
            color: #fbbf24;
            margin-bottom: 10px;
            text-transform: uppercase;
            text-shadow: 0 0 10px rgba(251, 191, 36, 0.6);
        }

        .upcoming-console-availability {
            font-size: 14px;
            color: #fb923c;
            font-weight: 600;
            margin-top: 10px;
            text-shadow: 0 0 10px rgba(251, 146, 60, 0.4);
        }

        .upcoming-console-buttons {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 20px;
        }

        .upcoming-notify-btn,
        .upcoming-buy-btn {
            padding: 14px 28px;
            font-size: 16px;
            font-weight: 700;
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.3s ease;
            text-align: center;
            cursor: pointer;
            border: 2px solid;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .upcoming-notify-btn {
            background: rgba(139, 92, 246, 0.15);
            color: #c084fc;
            border-color: rgba(139, 92, 246, 0.4);
        }

        .upcoming-notify-btn:hover {
            background: rgba(139, 92, 246, 0.25);
            border-color: rgba(139, 92, 246, 0.7);
            box-shadow: 0 0 20px rgba(139, 92, 246, 0.4),
                0 0 30px rgba(139, 92, 246, 0.2);
            transform: translateY(-2px);
        }

        .upcoming-buy-btn {
            background: rgba(251, 146, 60, 0.15);
            color: #fb923c;
            border-color: rgba(251, 146, 60, 0.4);
        }

        .upcoming-buy-btn:hover {
            background: rgba(251, 146, 60, 0.25);
            border-color: rgba(251, 146, 60, 0.7);
            box-shadow: 0 0 20px rgba(251, 146, 60, 0.5),
                0 0 30px rgba(251, 146, 60, 0.3);
            transform: translateY(-2px);
        }

        .upcoming-buy-btn.shine {
            animation: shine-glow 0.8s ease-in-out;
        }

        @media (max-width: 768px) {
            .upcoming-consoles-section {
                padding: 40px 20px;
                margin-top: 60px;
                margin-bottom: 60px;
                margin-left: -50vw;
                margin-right: -50vw;
            }

            .upcoming-consoles-title {
                font-size: 36px;
            }

            .upcoming-consoles-subtitle {
                font-size: 16px;
                padding: 0 10px;
            }

            .upcoming-consoles-grid {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 0 10px;
            }

            .upcoming-console-name {
                font-size: 24px;
            }

            .upcoming-notify-btn,
            .upcoming-buy-btn {
                padding: 12px 20px;
                font-size: 14px;
            }
        }

        /* Newsletter Section */
        .newsletter-section {
            width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            padding: 40px 40px;
            margin-top: 0;
            margin-bottom: 60px;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(168, 85, 247, 0.4) 100%);
            border-top: 3px solid rgba(139, 92, 246, 0.6);
            border-bottom: 3px solid rgba(139, 92, 246, 0.6);
            backdrop-filter: blur(10px);
            box-shadow: 0 0 40px rgba(139, 92, 246, 0.5),
                0 0 80px rgba(139, 92, 246, 0.4),
                0 0 120px rgba(139, 92, 246, 0.3),
                inset 0 0 60px rgba(139, 92, 246, 0.1);
            display: flex;
            align-items: center;
        }

        .newsletter-container {
            max-width: 800px;
            margin: 0 auto;
            width: 100%;
            text-align: center;
        }

        .newsletter-title {
            font-size: 32px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 12px;
            text-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
        }

        .newsletter-subtitle {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 30px;
            font-weight: 400;
        }

        .newsletter-form {
            display: flex;
            gap: 8px;
            max-width: 700px;
            margin: 0 auto;
        }

        .newsletter-input {
            flex: 1;
            padding: 16px 20px;
            font-size: 16px;
            background: rgba(0, 0, 0, 0.4);
            border: 2px solid rgba(139, 92, 246, 0.4);
            border-radius: 12px;
            color: #ffffff;
            outline: none;
            transition: all 0.3s ease;
        }

        .newsletter-input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        .newsletter-input:focus {
            border-color: rgba(139, 92, 246, 0.8);
            box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
            background: rgba(0, 0, 0, 0.5);
        }

        .newsletter-submit {
            padding: 16px 32px;
            font-size: 16px;
            font-weight: 700;
            background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
            color: #ffffff;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
        }

        .newsletter-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 25px rgba(139, 92, 246, 0.6),
                0 0 40px rgba(139, 92, 246, 0.4);
        }

        .newsletter-submit:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .newsletter-submit.shine {
            animation: shine-glow 0.8s ease-in-out;
        }

        .newsletter-message {
            margin-top: 16px;
            padding: 12px 20px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            display: none;
        }

        .newsletter-message.success {
            background: rgba(34, 197, 94, 0.2);
            border: 1px solid rgba(34, 197, 94, 0.5);
            color: #22c55e;
            display: block;
        }

        .newsletter-message.error {
            background: rgba(239, 68, 68, 0.2);
            border: 1px solid rgba(239, 68, 68, 0.5);
            color: #ef4444;
            display: block;
        }

        @media (max-width: 768px) {
            .newsletter-section {
                padding: 30px 20px;
                margin-top: 0;
                margin-bottom: 40px;
                margin-left: -50vw;
                margin-right: -50vw;
            }

            .newsletter-title {
                font-size: 24px;
            }

            .newsletter-subtitle {
                font-size: 14px;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-submit {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .upcoming-consoles-title {
                font-size: 28px;
            }

            .upcoming-consoles-subtitle {
                font-size: 14px;
            }

            .upcoming-console-card::before {
                font-size: 10px;
                padding: 5px 50px;
                right: -40px;
            }
        }

        /* Vertical Testimonials Carousel */
        .vertical-testimonials-section {
            width: 100%;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.5) 0%, rgba(139, 92, 246, 0.4) 50%, rgba(236, 72, 153, 0.35) 100%);
            padding: 120px 0;
            overflow: hidden;
            position: relative;
            box-shadow: 0 0 80px rgba(139, 92, 246, 0.6), 0 0 120px rgba(139, 92, 246, 0.4), inset 0 0 100px rgba(139, 92, 246, 0.2);
        }

        .vertical-testimonials-label {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            font-family: 'Oxanium', sans-serif;
            font-size: 52px;
            font-weight: 700;
            color: #fbbf24;
            letter-spacing: 2px;
            margin-bottom: 80px;
            text-shadow: 0 0 40px rgba(251, 191, 36, 0.8), 0 0 60px rgba(139, 92, 246, 0.6);
        }

        .vertical-testimonials-carousel {
            width: 90vw;
            max-width: 1200px;
            height: 800px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
            -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
        }

        .vertical-testimonials-track {
            display: flex;
            flex-direction: column;
            gap: 40px;
            animation: scrollVertical 60s linear infinite;
            will-change: transform;
        }

        .vertical-testimonials-track:hover {
            animation-play-state: paused;
        }

        @keyframes scrollVertical {
            0% {
                transform: translateY(0);
            }

            100% {
                transform: translateY(-50%);
            }
        }

        .vertical-testimonial-card {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.4) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(139, 92, 246, 0.35) 100%);
            border: 4px solid rgba(139, 92, 246, 0.6);
            border-radius: 40px;
            padding: 60px;
            min-height: 360px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: all 0.4s ease;
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6), 0 0 80px rgba(139, 92, 246, 0.5), 0 0 120px rgba(139, 92, 246, 0.3);
        }

        /* Color variants for testimonial cards */
        .vertical-testimonial-card.variant-purple {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.25) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(139, 92, 246, 0.2) 100%);
            border-color: rgba(139, 92, 246, 0.6);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6), 0 0 80px rgba(139, 92, 246, 0.5), 0 0 120px rgba(139, 92, 246, 0.3);
        }

        .vertical-testimonial-card.variant-pink {
            background: linear-gradient(135deg, rgba(236, 72, 153, 0.25) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(236, 72, 153, 0.2) 100%);
            border-color: rgba(236, 72, 153, 0.6);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6), 0 0 80px rgba(236, 72, 153, 0.5), 0 0 120px rgba(236, 72, 153, 0.3);
        }

        .vertical-testimonial-card.variant-green {
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.25) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(34, 197, 94, 0.2) 100%);
            border-color: rgba(34, 197, 94, 0.6);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6), 0 0 80px rgba(34, 197, 94, 0.5), 0 0 120px rgba(34, 197, 94, 0.3);
        }

        .vertical-testimonial-card.variant-blue {
            background: linear-gradient(135deg, rgba(96, 165, 250, 0.25) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(96, 165, 250, 0.2) 100%);
            border-color: rgba(96, 165, 250, 0.6);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6), 0 0 80px rgba(96, 165, 250, 0.5), 0 0 120px rgba(96, 165, 250, 0.3);
        }

        .vertical-testimonial-card.variant-amber {
            background: linear-gradient(135deg, rgba(251, 191, 36, 0.25) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(251, 191, 36, 0.2) 100%);
            border-color: rgba(251, 191, 36, 0.6);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6), 0 0 80px rgba(251, 191, 36, 0.5), 0 0 120px rgba(251, 191, 36, 0.3);
        }

        .vertical-testimonial-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .vertical-testimonial-card:hover::after {
            left: 100%;
        }

        .vertical-testimonial-card:hover {
            border-color: rgba(139, 92, 246, 0.9);
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.35) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(139, 92, 246, 0.25) 100%);
            box-shadow: 0 24px 80px rgba(139, 92, 246, 0.7), 0 0 100px rgba(139, 92, 246, 0.5);
            transform: scale(1.05) translateX(10px);
        }

        .vertical-testimonial-card.variant-purple:hover {
            border-color: rgba(139, 92, 246, 0.9);
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.35) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(139, 92, 246, 0.25) 100%);
            box-shadow: 0 24px 80px rgba(139, 92, 246, 0.7), 0 0 100px rgba(139, 92, 246, 0.5);
        }

        .vertical-testimonial-card.variant-pink:hover {
            border-color: rgba(236, 72, 153, 0.9);
            background: linear-gradient(135deg, rgba(236, 72, 153, 0.35) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(236, 72, 153, 0.25) 100%);
            box-shadow: 0 24px 80px rgba(236, 72, 153, 0.7), 0 0 100px rgba(236, 72, 153, 0.5);
        }

        .vertical-testimonial-card.variant-green:hover {
            border-color: rgba(34, 197, 94, 0.9);
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.35) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(34, 197, 94, 0.25) 100%);
            box-shadow: 0 24px 80px rgba(34, 197, 94, 0.7), 0 0 100px rgba(34, 197, 94, 0.5);
        }

        .vertical-testimonial-card.variant-blue:hover {
            border-color: rgba(96, 165, 250, 0.9);
            background: linear-gradient(135deg, rgba(96, 165, 250, 0.35) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(96, 165, 250, 0.25) 100%);
            box-shadow: 0 24px 80px rgba(96, 165, 250, 0.7), 0 0 100px rgba(96, 165, 250, 0.5);
        }

        .vertical-testimonial-card.variant-amber:hover {
            border-color: rgba(251, 191, 36, 0.9);
            background: linear-gradient(135deg, rgba(251, 191, 36, 0.35) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(251, 191, 36, 0.25) 100%);
            box-shadow: 0 24px 80px rgba(251, 191, 36, 0.7), 0 0 100px rgba(251, 191, 36, 0.5);
        }

        .vertical-testimonial-quote {
            font-size: 36px;
            font-style: italic;
            font-weight: 400;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.95);
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5),
                0 0 30px rgba(139, 92, 246, 0.5);
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
        }

        .vertical-testimonial-quote::before {
            content: '\201C';
            position: absolute;
            top: -30px;
            left: -20px;
            font-size: 100px;
            color: rgba(139, 92, 246, 0.3);
            font-family: Georgia, serif;
            z-index: -1;
        }

        .vertical-testimonial-author {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 15px;
        }

        .vertical-testimonial-profile {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .vertical-testimonial-avatar {
            width: 96px;
            height: 96px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid rgba(139, 92, 246, 0.6);
            box-shadow: 0 8px 24px rgba(139, 92, 246, 0.5);
            transition: all 0.3s ease;
        }

        .vertical-testimonial-card:hover .vertical-testimonial-avatar {
            border-color: rgba(139, 92, 246, 0.9);
            box-shadow: 0 12px 32px rgba(139, 92, 246, 0.8);
            transform: scale(1.05);
        }

        .vertical-testimonial-info {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .vertical-testimonial-name {
            font-family: 'Oxanium', sans-serif;
            font-size: 32px;
            font-weight: 700;
            color: #a78bfa;
            letter-spacing: 0.5px;
            text-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
        }

        .vertical-testimonial-location {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            text-shadow: 0 0 16px rgba(255, 255, 255, 0.35),
                0 0 30px rgba(139, 92, 246, 0.25);
        }

        .vertical-testimonial-stars {
            color: #fbbf24;
            font-size: 36px;
            letter-spacing: 4px;
            filter: drop-shadow(0 0 12px rgba(251, 191, 36, 0.8));
        }

        @media (max-width: 768px) {
            .vertical-testimonials-section {
                padding: 80px 0;
            }

            .vertical-testimonials-label {
                font-size: 40px;
                margin-bottom: 60px;
            }

            .vertical-testimonials-carousel {
                height: 700px;
            }

            .vertical-testimonial-card {
                padding: 40px;
                min-height: 320px;
            }

            .vertical-testimonial-quote {
                font-size: 32px;
            }

            .vertical-testimonial-name {
                font-size: 28px;
            }

            .vertical-testimonial-location {
                font-size: 12px;
            }

            .vertical-testimonial-stars {
                font-size: 32px;
            }

            .vertical-testimonial-avatar {
                width: 80px;
                height: 80px;
            }
        }

        .testimonials-disclaimer {
            text-align: center;
            padding: 20px 20px 40px 20px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
            font-style: italic;
            background: transparent;
            text-shadow: 0 0 8px rgba(255, 255, 255, 0.2),
                0 0 12px rgba(255, 255, 255, 0.1);
        }

        @media (max-width: 768px) {
            .testimonials-disclaimer {
                font-size: 12px;
                padding: 15px 15px 30px 15px;
            }
        }

        .profile {
            position: relative;
            text-align: center;
            padding: 20px 20px 40px;
            z-index: 2;
            max-width: 600px;
            width: 100%;
            margin: 0 auto;
        }

        .profile h1 {
            margin-bottom: 5px;
        }

        /* Hero Navigation Bar */
        .hero-nav {
            width: 100vw;
            margin-left: calc(-50vw + 50%);
            background: linear-gradient(135deg, rgba(26, 10, 46, 0.95) 0%, rgba(42, 23, 70, 0.95) 100%);
            border-top: 1px solid rgba(139, 92, 246, 0.2);
            border-bottom: 1px solid rgba(139, 92, 246, 0.2);
            backdrop-filter: blur(10px);
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }

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

        .hero-nav-link {
            flex: 1;
            text-align: center;
            padding: 24px 20px;
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-family: 'Oxanium', sans-serif;
            font-size: 15px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent;
            position: relative;
        }

        .hero-nav-link:hover {
            color: #ffffff;
            background: rgba(139, 92, 246, 0.1);
            border-bottom-color: #8b5cf6;
        }

        .hero-nav-link.active {
            color: #fbbf24;
            border-bottom-color: #fbbf24;
            background: rgba(251, 191, 36, 0.05);
        }

        @media (max-width: 768px) {
            .hero-nav-container {
                padding: 0 20px;
                flex-wrap: wrap;
            }

            .hero-nav-link {
                padding: 18px 12px;
                font-size: 13px;
                flex: 1 1 50%;
            }
        }

        @media (max-width: 480px) {
            .hero-nav-link {
                padding: 16px 8px;
                font-size: 11px;
                letter-spacing: 0.5px;
            }
        }

        /* Product Story Section */
        .product-story {
            margin: 48px auto;
            padding: 40px 0;
            display: flex;
            flex-direction: column;
            gap: 48px;
            width: 100%;
            max-width: 1200px;
        }

        .story-intro {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            padding: 80px 40px;
            width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            margin-top: 0;
            margin-bottom: 0;
            box-sizing: border-box;
            min-height: 70vh;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(168, 85, 247, 0.4) 100%);
            backdrop-filter: blur(10px);
            border-top: 3px solid rgba(139, 92, 246, 0.6);
            border-bottom: 3px solid rgba(139, 92, 246, 0.6);
        }

        .quick-pitch-image {
            width: 100%;
            max-width: 300px;
            height: auto;
            margin: 0 auto;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            animation: float-gentle 3s ease-in-out infinite;
        }

        @keyframes float-gentle {

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

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

        .quick-pitch-title {
            font-family: 'Oxanium', sans-serif;
            font-size: 20px;
            font-weight: 700;
            color: #22c55e;
            text-align: center;
            margin: 0 0 16px 0;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .quick-pitch-desc {
            font-size: 16px;
            line-height: 1.6;
            color: #ffffff;
            margin: 0 0 16px 0;
            text-align: center;
        }

        .quick-pitch-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .quick-pitch-features li {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: #d1d5db;
            padding: 8px;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 8px;
            border: 1px solid rgba(34, 197, 94, 0.2);
        }

        .quick-pitch-features li::before {
            content: "✓";
            color: #22c55e;
            font-weight: 700;
            font-size: 16px;
            flex-shrink: 0;
        }

        /* Testimonials Section */
        .testimonials-section {
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(22, 163, 74, 0.05) 100%);
            border: 2px solid rgba(34, 197, 94, 0.3);
            border-radius: 16px;
            padding: 32px 24px;
            margin: 32px auto;
            width: 90vw;
            margin-left: auto;
            margin-right: auto;
            box-shadow: 0 0 30px rgba(34, 197, 94, 0.2);
        }

        .testimonials-header {
            text-align: center;
            margin-bottom: 32px;
        }

        .testimonials-title {
            font-family: 'Oxanium', sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: #22c55e;
            margin: 0 0 8px 0;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 0 0 20px rgba(34, 197, 94, 0.8),
                0 0 40px rgba(34, 197, 94, 0.6),
                0 0 60px rgba(34, 197, 94, 0.4);
        }

        .testimonials-subtitle {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.3),
                0 0 20px rgba(255, 255, 255, 0.2);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes starPulse {

            0%,
            100% {
                transform: scale(1);
                filter: brightness(1);
            }

            50% {
                transform: scale(1.2);
                filter: brightness(1.5);
            }
        }

        .testimonial-card {
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.18) 0%, rgba(0, 0, 0, 0.5) 100%);
            border: 2px solid rgba(34, 197, 94, 0.4);
            border-radius: 16px;
            padding: 24px;
            display: flex;
            flex-direction: column;
            gap: 14px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            animation: fadeInUp 0.6s ease backwards;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 25px rgba(34, 197, 94, 0.2);
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 15px;
            font-size: 80px;
            color: rgba(34, 197, 94, 0.15);
            font-family: Georgia, serif;
            line-height: 1;
            pointer-events: none;
        }

        /* Purple variant */
        .testimonial-card:nth-child(6n+2) {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.18) 0%, rgba(0, 0, 0, 0.5) 100%);
            border-color: rgba(139, 92, 246, 0.4);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 25px rgba(139, 92, 246, 0.2);
        }

        .testimonial-card:nth-child(6n+2)::before {
            color: rgba(139, 92, 246, 0.15);
        }

        /* Pink variant */
        .testimonial-card:nth-child(6n+3) {
            background: linear-gradient(135deg, rgba(236, 72, 153, 0.18) 0%, rgba(0, 0, 0, 0.5) 100%);
            border-color: rgba(236, 72, 153, 0.4);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 25px rgba(236, 72, 153, 0.2);
        }

        .testimonial-card:nth-child(6n+3)::before {
            color: rgba(236, 72, 153, 0.15);
        }

        /* Blue variant */
        .testimonial-card:nth-child(6n+4) {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.18) 0%, rgba(0, 0, 0, 0.5) 100%);
            border-color: rgba(59, 130, 246, 0.4);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 25px rgba(59, 130, 246, 0.2);
        }

        .testimonial-card:nth-child(6n+4)::before {
            color: rgba(59, 130, 246, 0.15);
        }

        /* Orange variant */
        .testimonial-card:nth-child(6n+5) {
            background: linear-gradient(135deg, rgba(249, 115, 22, 0.18) 0%, rgba(0, 0, 0, 0.5) 100%);
            border-color: rgba(249, 115, 22, 0.4);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 25px rgba(249, 115, 22, 0.2);
        }

        .testimonial-card:nth-child(6n+5)::before {
            color: rgba(249, 115, 22, 0.15);
        }

        /* Amber variant */
        .testimonial-card:nth-child(6n+6) {
            background: linear-gradient(135deg, rgba(251, 191, 36, 0.18) 0%, rgba(0, 0, 0, 0.5) 100%);
            border-color: rgba(251, 191, 36, 0.4);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 25px rgba(251, 191, 36, 0.2);
        }

        .testimonial-card:nth-child(6n+6)::before {
            color: rgba(251, 191, 36, 0.15);
        }

        .testimonial-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .testimonial-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .testimonial-card:nth-child(3) {
            animation-delay: 0.3s;
        }

        .testimonial-card:nth-child(4) {
            animation-delay: 0.4s;
        }

        .testimonial-card:nth-child(5) {
            animation-delay: 0.5s;
        }

        .testimonial-card:nth-child(6) {
            animation-delay: 0.6s;
        }

        .testimonial-card:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 10px 30px rgba(34, 197, 94, 0.5), 0 0 30px rgba(34, 197, 94, 0.3);
            border-color: rgba(34, 197, 94, 0.7);
        }

        .testimonial-card:nth-child(6n+2):hover {
            box-shadow: 0 10px 30px rgba(139, 92, 246, 0.5), 0 0 30px rgba(139, 92, 246, 0.3);
            border-color: rgba(139, 92, 246, 0.7);
        }

        .testimonial-card:nth-child(6n+3):hover {
            box-shadow: 0 10px 30px rgba(236, 72, 153, 0.5), 0 0 30px rgba(236, 72, 153, 0.3);
            border-color: rgba(236, 72, 153, 0.7);
        }

        .testimonial-card:nth-child(6n+4):hover {
            box-shadow: 0 10px 30px rgba(59, 130, 246, 0.5), 0 0 30px rgba(59, 130, 246, 0.3);
            border-color: rgba(59, 130, 246, 0.7);
        }

        .testimonial-card:nth-child(6n+5):hover {
            box-shadow: 0 10px 30px rgba(249, 115, 22, 0.5), 0 0 30px rgba(249, 115, 22, 0.3);
            border-color: rgba(249, 115, 22, 0.7);
        }

        .testimonial-card:nth-child(6n+6):hover {
            box-shadow: 0 10px 30px rgba(251, 191, 36, 0.5), 0 0 30px rgba(251, 191, 36, 0.3);
            border-color: rgba(251, 191, 36, 0.7);
        }

        .testimonial-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .testimonial-name {
            font-weight: 700;
            color: #ffffff;
            font-size: 16px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .testimonial-rating {
            display: flex;
            gap: 3px;
            color: #fbbf24;
            font-size: 16px;
            filter: drop-shadow(0 0 5px rgba(251, 191, 36, 0.5));
        }

        .testimonial-card:hover .testimonial-rating {
            animation: starPulse 0.6s ease;
        }

        .testimonial-quote {
            font-size: 15px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.95);
            font-style: italic;
            position: relative;
            z-index: 1;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        }

        .testimonial-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.6);
            padding-top: 10px;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            position: relative;
            z-index: 1;
        }

        .testimonial-location {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 13px;
            font-weight: 500;
        }

        .testimonial-platform {
            display: inline-block;
            padding: 6px 12px;
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.3), rgba(34, 197, 94, 0.15));
            border: 1px solid rgba(34, 197, 94, 0.4);
            border-radius: 20px;
            font-size: 11px;
            font-weight: 700;
            color: #22c55e;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 2px 8px rgba(34, 197, 94, 0.2);
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .testimonial-card:nth-child(6n+2) .testimonial-platform {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(139, 92, 246, 0.15));
            border-color: rgba(139, 92, 246, 0.4);
            color: #a78bfa;
            box-shadow: 0 2px 8px rgba(139, 92, 246, 0.2);
        }

        .testimonial-card:nth-child(6n+3) .testimonial-platform {
            background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(236, 72, 153, 0.15));
            border-color: rgba(236, 72, 153, 0.4);
            color: #f472b6;
            box-shadow: 0 2px 8px rgba(236, 72, 153, 0.2);
        }

        .testimonial-card:nth-child(6n+4) .testimonial-platform {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(59, 130, 246, 0.15));
            border-color: rgba(59, 130, 246, 0.4);
            color: #60a5fa;
            box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
        }

        .testimonial-card:nth-child(6n+5) .testimonial-platform {
            background: linear-gradient(135deg, rgba(249, 115, 22, 0.3), rgba(249, 115, 22, 0.15));
            border-color: rgba(249, 115, 22, 0.4);
            color: #fb923c;
            box-shadow: 0 2px 8px rgba(249, 115, 22, 0.2);
        }

        .testimonial-card:nth-child(6n+6) .testimonial-platform {
            background: linear-gradient(135deg, rgba(251, 191, 36, 0.3), rgba(251, 191, 36, 0.15));
            border-color: rgba(251, 191, 36, 0.4);
            color: #fbbf24;
            box-shadow: 0 2px 8px rgba(251, 191, 36, 0.2);
        }

        .testimonial-platform:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
        }

        a.testimonial-platform {
            text-decoration: none;
            cursor: pointer;
        }

        a.testimonial-platform:hover {
            text-decoration: none;
        }

        @media (max-width: 480px) {
            .testimonials-section {
                padding: 24px 16px;
                margin: 24px auto;
                width: 90vw;
                margin-left: auto;
                margin-right: auto;
            }

            .testimonials-title {
                font-size: 22px;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
        }

        .story-image {
            width: 100%;
            max-width: 550px;
            height: auto;
            border-radius: 24px;
            box-shadow: 0 16px 50px rgba(251, 191, 36, 0.35), 0 10px 30px rgba(0, 0, 0, 0.5);
            animation: float-gentle 3s ease-in-out infinite;
            object-fit: contain;
            display: block;
            justify-self: center;
        }

        .story-content {
            display: flex;
            flex-direction: column;
            gap: 28px;
            justify-content: center;
            justify-self: center;
        }

        .story-title {
            font-family: 'Oxanium', sans-serif;
            font-size: 44px;
            font-weight: 800;
            color: #ffffff;
            margin: 0;
            line-height: 1.15;
            background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.6)) drop-shadow(0 0 40px rgba(139, 92, 246, 0.4)) drop-shadow(0 0 60px rgba(236, 72, 153, 0.3));
        }

        .story-desc {
            font-size: 20px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.95);
            margin: 0;
            font-style: italic;
        }

        .story-sections-wrapper {
            display: flex;
            flex-direction: column;
            gap: 0;
            margin: 0;
            width: 100vw;
            margin-left: calc(-50vw + 50%);
            padding: 0;
            box-sizing: border-box;
        }

        .story-benefits {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
            padding: 60px 40px;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(236, 72, 153, 0.05) 100%);
            border-radius: 0;
            border: none;
            border-top: 2px solid rgba(139, 92, 246, 0.2);
            border-bottom: 2px solid rgba(139, 92, 246, 0.2);
        }

        .benefits-content {
            order: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            justify-self: center;
            max-width: 700px;
            width: 100%;
            margin: 0 auto;
        }

        .benefits-image {
            order: 2;
            width: 100%;
            max-width: 500px;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
            justify-self: center;
            align-self: center;
        }

        .benefits-title {
            font-family: 'Oxanium', sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: #ffffff;
            text-align: center;
            margin: 0 0 40px 0;
            letter-spacing: -0.5px;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }

        .benefit-item {
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 12px;
            padding: 24px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            width: 100%;
            min-width: 0;
            box-sizing: border-box;
        }

        .benefit-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .benefit-item:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(139, 92, 246, 0.3);
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(139, 92, 246, 0.15);
        }

        .benefit-item:hover::before {
            opacity: 1;
        }

        .benefit-item:nth-child(1) { transition-delay: 0s; }
        .benefit-item:nth-child(2) { transition-delay: 0.05s; }
        .benefit-item:nth-child(3) { transition-delay: 0.1s; }
        .benefit-item:nth-child(4) { transition-delay: 0.15s; }

        .benefit-item:nth-child(1):hover { border-color: rgba(34, 197, 94, 0.4); box-shadow: 0 12px 40px rgba(34, 197, 94, 0.15); }
        .benefit-item:nth-child(1):hover::before { background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.6), transparent); }
        .benefit-item:nth-child(2):hover { border-color: rgba(251, 191, 36, 0.4); box-shadow: 0 12px 40px rgba(251, 191, 36, 0.15); }
        .benefit-item:nth-child(2):hover::before { background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.6), transparent); }
        .benefit-item:nth-child(3):hover { border-color: rgba(59, 130, 246, 0.4); box-shadow: 0 12px 40px rgba(59, 130, 246, 0.15); }
        .benefit-item:nth-child(3):hover::before { background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.6), transparent); }
        .benefit-item:nth-child(4):hover { border-color: rgba(236, 72, 153, 0.4); box-shadow: 0 12px 40px rgba(236, 72, 153, 0.15); }
        .benefit-item:nth-child(4):hover::before { background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.6), transparent); }

        .benefit-icon {
            font-size: 36px;
            line-height: 1;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
        }

        .benefit-text {
            display: flex;
            flex-direction: column;
            gap: 6px;
            min-width: 0;
            overflow: hidden;
        }

        .benefit-text strong {
            font-family: 'Oxanium', sans-serif;
            font-size: 15px;
            font-weight: 600;
            color: #ffffff;
            letter-spacing: 0.2px;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .benefit-text span {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.5;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .story-closer {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
            padding: 60px 40px;
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(22, 163, 74, 0.05) 100%);
            border-radius: 0;
            border: none;
            border-top: 2px solid rgba(34, 197, 94, 0.2);
            border-bottom: 2px solid rgba(34, 197, 94, 0.2);
        }

        .closer-content {
            order: 2;
            justify-self: center;
        }

        .closer-image {
            order: 1;
            width: 100%;
            max-width: 500px;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 12px 40px rgba(251, 191, 36, 0.3), 0 8px 24px rgba(0, 0, 0, 0.4);
            animation: float-gentle 3s ease-in-out infinite;
            justify-self: center;
        }

        .closer-title {
            font-family: 'Oxanium', sans-serif;
            font-size: 32px;
            font-weight: 800;
            color: #ffffff;
            margin: 0 0 20px 0;
            line-height: 1.2;
            text-shadow: 0 0 20px rgba(236, 72, 153, 0.8),
                0 0 30px rgba(139, 92, 246, 0.7),
                0 0 40px rgba(34, 197, 94, 0.6),
                0 0 60px rgba(251, 191, 36, 0.5),
                0 0 80px rgba(6, 182, 212, 0.4);
        }

        .closer-desc {
            font-size: 18px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.9);
            margin: 0 0 24px 0;
        }

        .closer-cta-button {
            display: inline-block;
            background: linear-gradient(180deg, #fcd34d 0%, #fbbf24 50%, #f59e0b 100%);
            color: #1a1a1a;
            font-size: 16px;
            font-weight: 800;
            padding: 14px 32px;
            border-radius: 10px;
            transition: all 0.2s ease;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            position: relative;
            overflow: hidden;
            text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
            text-decoration: none;
            margin-top: 8px;
            border: none;
            cursor: pointer;
        }

        @keyframes cta-glow {

            0%,
            100% {
                box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset,
                    0 6px 15px rgba(251, 191, 36, 0.7),
                    0 0 40px rgba(251, 191, 36, 0.5),
                    0 0 60px rgba(251, 191, 36, 0.3);
            }

            50% {
                box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset,
                    0 6px 20px rgba(251, 191, 36, 0.9),
                    0 0 60px rgba(251, 191, 36, 0.7),
                    0 0 90px rgba(251, 191, 36, 0.5);
            }
        }

        .closer-cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.8) 50%, transparent 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .closer-cta-button.shine::before {
            animation: button-shine 0.8s ease-in-out;
        }

        .closer-cta-button:hover {
            background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(251, 191, 36, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }

        .closer-cta-button:active {
            transform: translateY(0);
            box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }

        .emulated-cta-button {
            display: inline-block;
            background: linear-gradient(180deg, #fcd34d 0%, #fbbf24 50%, #f59e0b 100%);
            color: #1a1a1a;
            font-size: 24px;
            font-weight: 900;
            padding: 22px 50px;
            border-radius: 10px;
            transition: all 0.2s ease;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            position: relative;
            overflow: hidden;
            text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
            text-decoration: none;
            border: none;
            cursor: pointer;
        }

        @keyframes cta-mega-pulse {

            0%,
            100% {
                box-shadow: 0 2px 0 rgba(255, 255, 255, 0.6) inset,
                    0 8px 20px rgba(251, 191, 36, 0.8),
                    0 0 50px rgba(251, 191, 36, 0.6),
                    0 0 80px rgba(251, 191, 36, 0.4);
                transform: scale(1);
            }

            50% {
                box-shadow: 0 2px 0 rgba(255, 255, 255, 0.7) inset,
                    0 10px 30px rgba(251, 191, 36, 1),
                    0 0 70px rgba(251, 191, 36, 0.8),
                    0 0 120px rgba(251, 191, 36, 0.6);
                transform: scale(1.03);
            }
        }

        .emulated-cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .emulated-cta-button.shine::before {
            animation: button-shine 0.8s ease-in-out;
        }

        .emulated-cta-button:hover {
            background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(251, 191, 36, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }

        .emulated-cta-button:active {
            transform: translateY(0);
            box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }

        /* Video Carousel Section */
        .video-carousel-section {
            padding: 100px 40px;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(96, 165, 250, 0.05) 100%);
            border-top: 2px solid rgba(139, 92, 246, 0.3);
            border-bottom: 2px solid rgba(139, 92, 246, 0.3);
            margin: 0;
        }

        .video-carousel-title {
            font-family: 'Oxanium', sans-serif;
            font-size: 52px;
            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(96, 165, 250, 0.7),
                0 0 40px rgba(139, 92, 246, 0.6);
            letter-spacing: 2px;
        }

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

        .video-carousel-container {
            position: relative;
            width: 75vw;
            max-width: 1600px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .video-carousel-wrapper {
            flex: 1;
            overflow: hidden;
            border-radius: 20px;
            position: relative;
        }

        .video-carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .video-slide {
            min-width: 100%;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }

        .video-slide.active {
            opacity: 1;
        }

        .video-embed-container {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(139, 92, 246, 0.4),
                0 10px 30px rgba(0, 0, 0, 0.6),
                0 0 40px rgba(139, 92, 246, 0.2);
            border: 3px solid rgba(139, 92, 246, 0.3);
        }

        .video-embed-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 17px;
        }

        .video-nav-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(139, 92, 246, 0.2);
            border: 2px solid rgba(139, 92, 246, 0.5);
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            flex-shrink: 0;
        }

        .video-nav-btn:hover {
            background: rgba(139, 92, 246, 0.4);
            border-color: rgba(139, 92, 246, 0.8);
            transform: scale(1.1);
            box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
        }

        .video-nav-btn:active {
            transform: scale(0.95);
        }

        .video-nav-btn svg {
            width: 28px;
            height: 28px;
        }

        .video-nav-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }

        .video-nav-subtext {
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            font-weight: 500;
            color: rgba(160, 160, 160, 0.8);
            text-align: center;
            max-width: 80px;
            line-height: 1.2;
            transition: color 0.3s ease;
        }

        .video-nav-wrapper:hover .video-nav-subtext {
            color: rgba(139, 92, 246, 0.9);
        }

        /* Video Title and Navigation Hints */
        .video-title-container {
            text-align: center;
            margin-top: 25px;
            padding: 0 20px;
        }

        .video-title {
            font-family: 'Oxanium', sans-serif;
            font-size: 22px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 12px;
            text-shadow: 0 0 20px rgba(251, 191, 36, 0.6),
                0 0 30px rgba(139, 92, 246, 0.4);
            transition: opacity 0.3s ease;
        }

        .video-nav-hints {
            position: absolute;
            top: 50%;
            left: -120px;
            right: -120px;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0;
            z-index: 10;
            pointer-events: none;
        }

        .prev-hint,
        .next-hint {
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.9);
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 14px 20px;
            background: rgba(0, 0, 0, 0.8);
            border: 2px solid rgba(139, 92, 246, 0.4);
            backdrop-filter: blur(10px);
            pointer-events: auto;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            border-radius: 12px;
            max-width: 100px;
            text-align: center;
            line-height: 1.3;
        }

        .prev-hint {
            border-radius: 12px;
        }

        .next-hint {
            border-radius: 12px;
        }

        .prev-hint:hover,
        .next-hint:hover {
            color: rgba(255, 255, 255, 1);
            background: rgba(139, 92, 246, 0.9);
            border-color: rgba(139, 92, 246, 0.8);
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6),
                0 0 30px rgba(139, 92, 246, 0.4);
        }

        @media (max-width: 768px) {
            .video-title {
                font-size: 18px;
            }

            .video-nav-hints {
                left: -80px;
                right: -80px;
            }

            .prev-hint,
            .next-hint {
                font-size: 11px;
                padding: 10px 12px;
                max-width: 70px;
            }

            .video-nav-btn {
                width: 45px;
                height: 45px;
            }

            .video-nav-btn svg {
                width: 22px;
                height: 22px;
            }

            .video-nav-subtext {
                font-size: 9px;
                max-width: 60px;
            }
        }

        .video-carousel-dots {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 30px;
        }

        .video-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(139, 92, 246, 0.3);
            border: 2px solid rgba(139, 92, 246, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0;
        }

        .video-dot:hover {
            background: rgba(139, 92, 246, 0.5);
            border-color: rgba(139, 92, 246, 0.8);
            transform: scale(1.2);
        }

        .video-dot.active {
            background: rgba(139, 92, 246, 0.8);
            border-color: rgba(139, 92, 246, 1);
            box-shadow: 0 0 12px rgba(139, 92, 246, 0.8);
            transform: scale(1.3);
        }

        @media (max-width: 480px) {
            .quick-pitch {
                padding: 20px;
                margin: 24px 0;
                width: 100%;
                margin-left: 0;
                margin-right: 0;
            }

            .quick-pitch-title {
                font-size: 18px;
            }

            .quick-pitch-desc {
                font-size: 14px;
            }

            .quick-pitch-features {
                grid-template-columns: 1fr;
                gap: 8px;
            }

            .quick-pitch-features li {
                font-size: 13px;
            }

            .product-story {
                gap: 40px;
                margin: 40px 0;
                padding: 30px 0;
                width: 100%;
                max-width: 100%;
            }

            .story-intro {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 50px 20px;
                width: 100vw;
                margin-left: -50vw;
                margin-right: -50vw;
                min-height: auto;
            }

            .story-image {
                max-width: 100%;
            }

            .story-title {
                font-size: 30px;
                text-align: center;
                line-height: 1.3;
            }

            .story-desc {
                font-size: 18px;
                text-align: center;
                line-height: 1.7;
                padding: 0 10px;
            }

            .story-sections-wrapper {
                gap: 20px;
                width: 100%;
                margin-left: 0;
                margin-right: 0;
                left: auto;
                right: auto;
                position: relative;
                overflow-x: hidden;
            }

            .story-benefits {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 50px 20px 80px 20px;
                min-height: 700px;
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
                overflow-x: hidden;
            }

            .benefits-content {
                order: 1;
                display: flex;
                flex-direction: column;
                justify-content: center;
                padding-bottom: 30px;
                max-width: 100%;
                margin: 0 auto;
            }

            .benefits-image {
                order: 2;
                width: 100%;
                max-width: 100%;
                justify-self: center;
                align-self: center;
                box-sizing: border-box;
            }

            .story-closer {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 50px 20px;
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
                overflow-x: hidden;
            }

            .closer-content {
                order: 1;
            }

            .closer-image {
                order: 2;
                width: 100%;
                max-width: 100%;
                justify-self: center;
                box-sizing: border-box;
            }

            .closer-cta-button {
                padding: 16px 36px;
                font-size: 15px;
                width: 100%;
                max-width: 280px;
                text-align: center;
                margin: 20px auto 0;
                display: block;
                min-height: 48px;
            }

            .benefits-title {
                font-size: 22px;
                margin-bottom: 24px;
                line-height: 1.3;
            }

            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
                width: 100%;
                max-width: 100%;
            }

            .benefit-item {
                padding: 14px;
                gap: 8px;
                width: 100%;
                min-width: 0;
                box-sizing: border-box;
            }

            .benefit-item:hover {
                transform: none;
            }

            .benefit-icon {
                font-size: 24px;
            }

            .benefit-text strong {
                font-size: 12px;
                line-height: 1.3;
            }

            .benefit-text span {
                font-size: 10px;
                line-height: 1.4;
            }

            .closer-title {
                font-size: 26px;
                line-height: 1.3;
                margin-bottom: 20px;
            }

            .video-carousel-section {
                padding: 60px 15px;
            }
        }

        /* Tablet: 85vw video width */
        @media (min-width: 769px) and (max-width: 1024px) {
            .video-carousel-container {
                width: 85vw;
            }
        }

        @media (max-width: 768px) {
            .video-carousel-section {
                padding: 60px 15px;
            }

            .video-carousel-title {
                font-size: 32px;
                margin-bottom: 15px;
            }

            .video-carousel-desc {
                font-size: 16px;
                margin-bottom: 40px;
                padding: 0 10px;
            }

            .video-carousel-container {
                width: 100%;
                max-width: 100vw;
                gap: 0;
                position: relative;
                justify-content: center;
                overflow: hidden;
            }

            .video-nav-wrapper {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                z-index: 10;
            }

            .video-nav-wrapper:first-child {
                left: 5px;
            }

            .video-nav-wrapper:last-child {
                right: 5px;
            }

            .video-nav-subtext {
                display: none;
            }

            .video-nav-btn {
                width: 40px;
                height: 40px;
                background: rgba(0, 0, 0, 0.5);
            }

            .video-nav-btn svg {
                width: 20px;
                height: 20px;
            }

            .video-carousel-wrapper {
                width: 90%;
                max-width: 90%;
                margin: 0 auto;
            }

            .video-carousel-dots {
                gap: 8px;
                margin-top: 20px;
            }

            .video-dot {
                width: 10px;
                height: 10px;
            }

            .closer-desc {
                font-size: 17px;
                line-height: 1.7;
            }

            .closer-cta-button {
                font-size: 16px;
                padding: 14px 28px;
                width: 100%;
                text-align: center;
                margin-top: 30px;
            }
        }

        /* Tablet styles for story section */
        @media (min-width: 769px) and (max-width: 1200px) {
            .story-intro {
                gap: 40px;
                padding: 60px 40px;
                width: 100vw;
                margin-left: -50vw;
                margin-right: -50vw;
                min-height: 60vh;
            }

            .story-title {
                font-size: 36px;
            }

            .story-desc {
                font-size: 18px;
            }

            .story-image {
                max-width: 100%;
                height: auto;
                object-fit: contain;
            }
        }

        .profile h1 a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: filter 0.3s ease;
        }

        .profile h1 a .logo-image {
            max-width: 600px;
            height: auto;
            display: block;
            filter: none;
            object-fit: contain;
            object-position: center;
            margin: 0 auto;
        }

        .profile h1 a.glow-boom {
            animation: glow-boom-logo 0.8s ease-out forwards;
        }

        @keyframes glow-boom-logo {
            0% {
                text-shadow: 0 0 0px rgba(139, 92, 246, 0);
            }

            30% {
                text-shadow: 0 0 60px rgba(139, 92, 246, 1),
                    0 0 120px rgba(139, 92, 246, 1),
                    0 0 200px rgba(139, 92, 246, 0.8),
                    0 0 300px rgba(139, 92, 246, 0.6);
            }

            100% {
                text-shadow: 0 0 40px rgba(139, 92, 246, 1),
                    0 0 80px rgba(139, 92, 246, 0.8),
                    0 0 160px rgba(139, 92, 246, 0.6),
                    0 0 240px rgba(139, 92, 246, 0.4);
            }
        }

        .profile h1 a:visited {
            color: #22c55e;
        }

        .profile h1 a:hover .logo-image {
            filter: brightness(1.1);
        }

        /* Hero Stat Counter */
        .hero-stat {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 0;
            margin-bottom: 0;
            padding-bottom: 20px;
        }

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

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

        /* Initial grow animation as counter runs */
        .hero-stat-number.counting {
            animation: counter-pulse 0.15s ease-in-out infinite;
        }

        @keyframes counter-pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.02);
            }
        }

        /* Final boom effect when reaching 40,000 */
        .hero-stat-number.boom {
            animation: boom-scale 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
        }

        @keyframes boom-scale {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.15);
            }

            70% {
                transform: scale(0.95);
            }

            100% {
                transform: scale(1);
            }
        }

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

        @keyframes glow-boom-counter {
            0% {
                text-shadow: 0 0 0px rgba(255, 215, 0, 0);
            }

            30% {
                text-shadow: 0 0 60px rgba(255, 215, 0, 1),
                    0 0 120px rgba(255, 215, 0, 1),
                    0 0 180px rgba(255, 215, 0, 0.8);
            }

            100% {
                text-shadow: 0 0 40px rgba(255, 215, 0, 1),
                    0 0 80px rgba(255, 215, 0, 0.8),
                    0 0 120px rgba(255, 215, 0, 0.5);
            }
        }

        .hero-stat-plus {
            font-family: 'Oxanium', sans-serif;
            font-size: clamp(36px, 7vw, 60px);
            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);
            margin-left: 2px;
        }

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

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

        @keyframes glow-boom-plus {
            0% {
                text-shadow: 0 0 0px rgba(255, 215, 0, 0);
            }

            30% {
                text-shadow: 0 0 50px rgba(255, 215, 0, 1),
                    0 0 100px rgba(255, 215, 0, 1);
            }

            100% {
                text-shadow: 0 0 30px rgba(255, 215, 0, 1),
                    0 0 60px rgba(255, 215, 0, 0.8);
            }
        }

        .hero-stat-label {
            font-family: 'Oxanium', sans-serif;
            font-size: clamp(18px, 3.5vw, 28px);
            font-weight: 600;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: clamp(1px, 0.3vw, 3px);
            margin: -10px 0 0 0;
            width: 100%;
            text-align: center;
            text-shadow: 0 0 20px rgba(139, 92, 246, 0.8);
        }

        /* Counter shine effect */
        .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;
        }

        @keyframes shine-sweep {
            0% {
                background-position: 100% 0;
            }

            100% {
                background-position: -100% 0;
            }
        }

        /* Infinite glow pulse for counter */
        @keyframes counter-infinite-glow {

            0%,
            100% {
                text-shadow:
                    0 0 20px rgba(255, 215, 0, 0.4),
                    0 0 40px rgba(255, 215, 0, 0.3),
                    0 0 60px rgba(255, 165, 0, 0.2);
            }

            50% {
                text-shadow:
                    0 0 40px rgba(255, 215, 0, 1),
                    0 0 80px rgba(255, 215, 0, 0.8),
                    0 0 120px rgba(255, 165, 0, 0.6);
            }
        }

        .hero-stat-number.infinite-glow {
            animation: counter-infinite-glow 30s ease-in-out infinite;
        }

        /* Hero Price Display */
        .hero-price-display {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            margin-top: 20px;
        }

        .hero-price-main {
            font-family: 'Oxanium', sans-serif;
            font-size: clamp(36px, 6vw, 56px);
            font-weight: 800;
            color: #fbbf24;
            text-shadow: 0 0 30px rgba(251, 191, 36, 0.8),
                0 0 50px rgba(251, 191, 36, 0.6),
                0 0 70px rgba(251, 191, 36, 0.4);
            letter-spacing: 2px;
        }

        .hero-price-subtitle {
            font-family: 'Red Hat Display', sans-serif;
            font-size: clamp(16px, 2.5vw, 22px);
            font-weight: 600;
            color: #10b981;
            text-shadow: 0 0 20px rgba(16, 185, 129, 0.8);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Hero Trust Badges */
        .hero-trust-badges {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: clamp(12px, 2vw, 20px);
            margin-top: 25px;
            padding: 0 20px;
        }

        .trust-badge {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            background: rgba(139, 92, 246, 0.15);
            border: 1.5px solid rgba(139, 92, 246, 0.4);
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .trust-badge:hover {
            background: rgba(139, 92, 246, 0.25);
            border-color: rgba(139, 92, 246, 0.7);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
        }

        .trust-icon {
            font-size: clamp(16px, 2vw, 20px);
            filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.6));
        }

        .trust-text {
            font-family: 'Red Hat Display', sans-serif;
            font-size: clamp(13px, 1.8vw, 16px);
            font-weight: 600;
            color: rgba(255, 255, 255, 0.95);
            white-space: nowrap;
        }

        /* Hero Primary CTAs */
        .hero-primary-ctas {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            margin-top: 30px;
            padding: 0 20px;
        }

        .hero-primary-cta {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 18px 40px;
            font-family: 'Oxanium', sans-serif;
            font-size: clamp(18px, 2.5vw, 24px);
            font-weight: 700;
            color: #1a1a1a;
            background: linear-gradient(180deg, #fcd34d 0%, #fbbf24 50%, #f59e0b 100%);
            border: none;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.2s ease;
            box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            text-transform: uppercase;
            letter-spacing: 0.3px;
            text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
        }

        .hero-primary-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -100%;
            width: 50%;
            height: 200%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
            transform: skewX(-25deg);
            animation: hero-cta-shine 3s ease-in-out infinite;
        }

        @keyframes hero-cta-shine {

            0%,
            100% {
                left: -100%;
            }

            20%,
            80% {
                left: -100%;
            }

            50% {
                left: 200%;
            }
        }

        .hero-primary-cta:hover {
            background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(251, 191, 36, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }

        .hero-primary-cta .cta-icon {
            font-size: clamp(24px, 3vw, 32px);
        }

        .hero-primary-cta .cta-text {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 2px;
        }

        .hero-primary-cta .cta-main {
            font-size: clamp(18px, 2.5vw, 24px);
            line-height: 1;
        }

        .hero-primary-cta .cta-price {
            font-size: clamp(14px, 2vw, 18px);
            opacity: 0.85;
            font-weight: 600;
        }

        .hero-secondary-cta {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            font-family: 'Oxanium', sans-serif;
            font-size: clamp(16px, 2vw, 20px);
            font-weight: 600;
            color: #ffffff;
            background: rgba(139, 92, 246, 0.3);
            border: 2px solid rgba(139, 92, 246, 0.6);
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .hero-secondary-cta:hover {
            background: rgba(139, 92, 246, 0.5);
            border-color: rgba(139, 92, 246, 0.9);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
        }

        .hero-secondary-cta .cta-icon {
            font-size: clamp(18px, 2.5vw, 24px);
        }

        /* Hero Urgency Message */
        .hero-urgency {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
            padding: 12px 24px;
            background: rgba(239, 68, 68, 0.15);
            border: 1.5px solid rgba(239, 68, 68, 0.4);
            border-radius: 25px;
            animation: urgency-pulse 2s ease-in-out infinite;
        }

        @keyframes urgency-pulse {

            0%,
            100% {
                box-shadow: 0 0 10px rgba(239, 68, 68, 0.3);
            }

            50% {
                box-shadow: 0 0 20px rgba(239, 68, 68, 0.6),
                    0 0 30px rgba(239, 68, 68, 0.4);
            }
        }

        .urgency-icon {
            font-size: clamp(18px, 2.5vw, 24px);
            animation: urgency-fire 1s ease-in-out infinite;
        }

        @keyframes urgency-fire {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }
        }

        .urgency-text {
            font-family: 'Red Hat Display', sans-serif;
            font-size: clamp(13px, 1.8vw, 16px);
            font-weight: 600;
            color: #fca5a5;
            text-align: center;
        }

        /* Mobile responsive for new hero elements */
        @media (max-width: 768px) {
            .hero-trust-badges {
                gap: 8px;
            }

            .trust-badge {
                padding: 6px 12px;
            }

            .hero-primary-ctas {
                width: 100%;
                max-width: 300px;
            }

            .hero-primary-cta {
                padding: 16px 32px;
                width: 100%;
                justify-content: center;
            }

            .hero-secondary-cta {
                padding: 12px 24px;
            }
        }

        @media (min-width: 769px) {
            .hero-primary-ctas {
                flex-direction: row;
                gap: 20px;
            }
        }

        /* Game Search Section */
        .game-search-section {
            width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            margin-top: 0;
            padding-left: 40px;
            padding-right: 40px;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(168, 85, 247, 0.4) 100%);
            border-top: 3px solid rgba(139, 92, 246, 0.6);
            border-bottom: 3px solid rgba(139, 92, 246, 0.6);
            backdrop-filter: blur(10px);
            box-shadow: 0 0 40px rgba(139, 92, 246, 0.5),
                0 0 60px rgba(139, 92, 246, 0.3),
                0 0 80px rgba(139, 92, 246, 0.2),
                inset 0 0 60px rgba(139, 92, 246, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 350px;
        }

        /* Typing animation for placeholder */
        @keyframes typing {
            from {
                width: 0;
            }

            to {
                width: 100%;
            }
        }

        @keyframes blink-caret {

            from,
            to {
                border-color: transparent;
            }

            50% {
                border-color: rgba(139, 92, 246, 0.8);
            }
        }

        .game-search-container {
            max-width: 800px;
            margin: auto;
            width: 100%;
        }

        .game-search-title {
            font-family: 'Oxanium', sans-serif;
            font-size: 32px;
            font-weight: 700;
            color: #ffffff;
            text-align: center;
            margin: 0 0 10px 0;
            text-shadow: 0 0 20px rgba(139, 92, 246, 0.8);
            transition: opacity 0.5s ease;
        }

        .game-search-title.fade-text {
            opacity: 0;
        }

        .game-search-subtitle {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
            text-align: center;
            margin: 0 0 30px 0;
            transition: opacity 0.5s ease;
        }

        .game-search-subtitle.fade-text {
            opacity: 0;
        }

        .game-search-box {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .game-search-input {
            width: 100%;
            padding: 12px 20px;
            font-size: 16px;
            font-family: 'Inter', sans-serif;
            background: rgba(0, 0, 0, 0.4);
            border: 2px solid rgba(139, 92, 246, 0.3);
            border-radius: 12px;
            color: #ffffff;
            transition: all 0.3s ease;
            text-align: center;
            /* Static glow - always visible */
            box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
        }

        .game-search-input:focus {
            outline: none;
            border-color: rgba(139, 92, 246, 0.6);
            box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
        }

        .game-search-input::placeholder {
            color: rgba(255, 255, 255, 0.4);
            white-space: nowrap;
        }

        .game-search-btn {
            padding: 12px 32px;
            font-size: 16px;
            font-weight: 700;
            font-family: 'Oxanium', sans-serif;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.8) 0%, rgba(34, 197, 94, 0.6) 100%);
            color: #ffffff;
            border: 2px solid rgba(139, 92, 246, 0.5);
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            white-space: nowrap;
            width: 75%;
            margin: 0 auto;
        }

        .game-search-btn:hover {
            background: linear-gradient(135deg, rgba(139, 92, 246, 1) 0%, rgba(34, 197, 94, 0.8) 100%);
            box-shadow: 0 0 25px rgba(139, 92, 246, 0.5);
            transform: translateY(-2px);
        }

        .game-search-btn.shine {
            animation: shine-glow 0.8s ease-in-out;
        }

        /* Game Search Modal */
        .game-search-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            z-index: 10000;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease;
        }

        .game-search-modal.active {
            display: flex;
        }

        .game-search-modal-content {
            background: #000000;
            border: 3px solid rgba(251, 191, 36, 0.6);
            border-radius: 20px;
            max-width: 900px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            padding: 40px;
            position: relative;
            box-shadow: 0 0 50px rgba(251, 191, 36, 0.5),
                0 0 100px rgba(251, 191, 36, 0.3);
            animation: slideUp 0.4s ease;
        }

        .game-search-modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(239, 68, 68, 0.2);
            border: 2px solid rgba(239, 68, 68, 0.5);
            color: #ffffff;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .game-search-modal-close:hover {
            background: rgba(239, 68, 68, 0.4);
            border-color: rgba(239, 68, 68, 0.8);
            transform: rotate(90deg);
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes slideUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .game-search-result {
            min-height: 100px;
            padding: 20px;
            border-radius: 16px;
            text-align: center;
            font-size: 18px;
            line-height: 1.6;
        }

        .game-search-result.found {
            background: linear-gradient(145deg, rgba(251, 191, 36, 0.15) 0%, rgba(245, 158, 11, 0.1) 100%);
            border: 3px solid rgba(251, 191, 36, 0.6);
            color: #ffffff;
            animation: celebrate 0.6s ease-out;
        }

        .game-search-result.not-found {
            background: linear-gradient(145deg, rgba(251, 191, 36, 0.15) 0%, rgba(245, 158, 11, 0.1) 100%);
            border: 2px solid rgba(251, 191, 36, 0.4);
            color: #ffffff;
        }

        @keyframes celebrate {
            0% {
                transform: scale(0.95);
                opacity: 0;
            }

            50% {
                transform: scale(1.02);
            }

            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }
        }

        @keyframes rainbow-glow {
            0% {
                background-position: 0% 50%;
                filter: drop-shadow(0 0 20px #ff0080);
            }

            25% {
                background-position: 50% 50%;
                filter: drop-shadow(0 0 20px #ff8c00);
            }

            50% {
                background-position: 100% 50%;
                filter: drop-shadow(0 0 20px #40e0d0);
            }

            75% {
                background-position: 50% 50%;
                filter: drop-shadow(0 0 20px #ff8c00);
            }

            100% {
                background-position: 0% 50%;
                filter: drop-shadow(0 0 20px #ff0080);
            }
        }

        .game-search-result a {
            color: #fbbf24;
            text-decoration: underline;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .game-search-result a:hover {
            color: #fcd34d;
            text-shadow: 0 0 10px rgba(251, 191, 36, 0.6);
        }

        /* Fun Game Link Animations */
        .game-item-link {
            display: block;
            padding: 10px 15px;
            margin: 8px 0;
            background: rgba(255, 255, 255, 0.05);
            border-left: 3px solid #f59e0b;
            border-radius: 5px;
            color: #fff !important;
            font-size: 16px;
            text-decoration: none !important;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            position: relative;
            overflow: hidden;
        }

        .game-item-link::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(251, 191, 36, 0.3), transparent);
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .game-item-link:hover {
            background: rgba(251, 191, 36, 0.15);
            border-left-color: #fbbf24;
            box-shadow:
                0 0 20px rgba(251, 191, 36, 0.4),
                0 0 35px rgba(251, 191, 36, 0.2),
                0 8px 25px rgba(0, 0, 0, 0.3);
            margin-left: -10px;
            margin-right: -10px;
            padding-left: 25px;
            padding-right: 25px;
        }

        .game-item-link:hover::before {
            width: 300px;
            height: 300px;
        }

        .game-item-link:active {
            transform: scale(1.02) rotate(0deg);
        }

        .game-item-link .game-checkmark {
            color: #fbbf24;
            font-weight: bold;
            margin-right: 8px;
            display: inline-block;
            transition: transform 0.3s ease;
        }

        .game-item-link:hover .game-checkmark {
            transform: scale(1.3) rotate(360deg);
        }

        @keyframes game-bounce {

            0%,
            100% {
                transform: scale(1.08) rotate(-1deg) translateY(0);
            }

            25% {
                transform: scale(1.08) rotate(-1deg) translateY(-4px);
            }

            50% {
                transform: scale(1.08) rotate(-1deg) translateY(0);
            }

            75% {
                transform: scale(1.08) rotate(-1deg) translateY(-2px);
            }
        }

        .game-search-result .buy-btn {
            display: inline-block;
            margin-top: 20px;
            padding: 14px 32px;
            background: linear-gradient(135deg, #c89b1e 0%, #c9930d 50%, #b87507 100%);
            color: #ffffff;
            font-size: 16px;
            font-weight: 700;
            border-radius: 8px;
            border: 2px solid #fcd34d;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3),
                0 8px 16px rgba(251, 191, 36, 0.4);
            transition: all 0.3s ease;
        }

        .game-search-result .buy-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4),
                0 12px 24px rgba(251, 191, 36, 0.6);
        }

        /* Special hover effects for the big CTA button */
        .game-search-cta {
            background: linear-gradient(180deg, #fcd34d 0%, #fbbf24 50%, #f59e0b 100%) !important;
            box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
            border: none !important;
            border-radius: 10px !important;
            transition: all 0.2s ease !important;
        }

        .game-search-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.5s;
            z-index: 1;
        }

        .game-search-cta:hover {
            background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%) !important;
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(251, 191, 36, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
            filter: none;
        }

        .game-search-cta:hover::before {
            left: 100%;
        }

        .game-search-cta:active {
            transform: translateY(0);
        }

        @keyframes subtle-pulse {

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

            50% {
                box-shadow: 0 8px 25px rgba(251, 191, 36, 0.7),
                    0 0 50px rgba(251, 191, 36, 0.5);
            }
        }

        @media (max-width: 768px) {
            .game-search-box {
                flex-direction: column;
            }

            .game-search-title {
                font-size: 24px;
            }

            .game-search-subtitle {
                font-size: 14px;
            }

            .game-search-container {
                padding: 30px 20px;
            }
        }

        .profile p {
            font-family: 'Inter', sans-serif;
            color: #ffffff;
            font-size: 17px;
            font-style: italic;
            line-height: 1.5;
            max-width: 500px;
            margin: 5px auto 20px;
            text-align: center;
            text-shadow: 0 0 30px rgba(139, 92, 246, 0.9),
                0 0 60px rgba(139, 92, 246, 0.6);
            padding: 60px 20px;
        }

        .hero-actions {
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: center;
        }

        .cta-container-hero {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            padding-top: 20px;
        }

        .cta-label {
            color: #ffffff;
            font-size: 42px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 20px rgba(236, 72, 153, 0.8),
                0 0 30px rgba(139, 92, 246, 0.7),
                0 0 40px rgba(34, 197, 94, 0.6),
                0 0 60px rgba(251, 191, 36, 0.5),
                0 0 80px rgba(6, 182, 212, 0.4);
            margin-bottom: 20px;
        }

        .cta-cards-hero {
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            gap: 20px;
            width: 100%;
            max-width: 100%;
            margin: 0 auto;
            align-items: center;
            justify-content: center;
            padding: 60px 40px 40px 40px;
        }

        .cta-card-hero {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 16px;
            padding: 30px 35px;
            background: linear-gradient(145deg, rgba(26, 10, 46, 0.95) 0%, rgba(42, 23, 70, 0.97) 50%, rgba(26, 10, 46, 0.95) 100%),
                linear-gradient(145deg, rgba(139, 92, 246, 0.25) 0%, rgba(168, 85, 247, 0.15) 50%, rgba(139, 92, 246, 0.1) 100%);
            border: 2px solid rgba(139, 92, 246, 0.4);
            border-radius: 20px;
            color: #ffffff;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            flex: 0 1 250px;
            min-width: 200px;
            text-align: center;
            overflow: visible;
            box-shadow: 0 8px 30px rgba(139, 92, 246, 0.15),
                0 0 40px rgba(139, 92, 246, 0.1),
                0 0 80px rgba(139, 92, 246, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            margin: 0;
            z-index: 1;
            backdrop-filter: blur(10px);
        }

        .cta-card-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .cta-card-hero.shine::before {
            animation: cta-shine 1s ease-in-out;
        }

        @keyframes cta-shine {
            0% {
                left: -100%;
                opacity: 0;
            }

            50% {
                opacity: 1;
            }

            100% {
                left: 100%;
                opacity: 0;
            }
        }

        .cta-card-hero:hover {
            background: linear-gradient(145deg, rgba(26, 10, 46, 0.98) 0%, rgba(42, 23, 70, 0.99) 50%, rgba(26, 10, 46, 0.98) 100%),
                linear-gradient(145deg, rgba(139, 92, 246, 0.35) 0%, rgba(168, 85, 247, 0.25) 50%, rgba(139, 92, 246, 0.2) 100%);
            border-color: rgba(139, 92, 246, 0.7);
            transform: translateY(-8px);
            box-shadow: 0 12px 45px rgba(139, 92, 246, 0.25),
                0 0 60px rgba(139, 92, 246, 0.2),
                0 0 100px rgba(139, 92, 246, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            z-index: 10;
        }

        .cta-card-best {
            border: 3px solid rgba(34, 197, 94, 0.7);
            background: linear-gradient(145deg, rgba(26, 10, 46, 0.95) 0%, rgba(42, 23, 70, 0.97) 50%, rgba(26, 10, 46, 0.95) 100%),
                linear-gradient(145deg, rgba(34, 197, 94, 0.3) 0%, rgba(34, 197, 94, 0.2) 50%, rgba(34, 197, 94, 0.15) 100%);
            box-shadow: 0 10px 35px rgba(34, 197, 94, 0.25),
                0 0 50px rgba(34, 197, 94, 0.15),
                0 0 100px rgba(34, 197, 94, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
            padding: 60px 70px;
            transform: scale(1.12);
            order: 0;
            z-index: 5;
            animation: pulse-glow 3s ease-in-out infinite;
            backdrop-filter: blur(15px);
        }

        @keyframes pulse-glow {

            0%,
            100% {
                box-shadow: 0 10px 35px rgba(34, 197, 94, 0.25),
                    0 0 50px rgba(34, 197, 94, 0.15),
                    0 0 100px rgba(34, 197, 94, 0.08),
                    inset 0 1px 0 rgba(255, 255, 255, 0.15);
            }

            50% {
                box-shadow: 0 10px 35px rgba(34, 197, 94, 0.35),
                    0 0 50px rgba(34, 197, 94, 0.25),
                    0 0 100px rgba(34, 197, 94, 0.15),
                    inset 0 1px 0 rgba(255, 255, 255, 0.2);
            }
        }

        .cta-card-best:hover {
            border-color: rgba(34, 197, 94, 0.9);
            background: linear-gradient(145deg, rgba(26, 10, 46, 0.98) 0%, rgba(42, 23, 70, 0.99) 50%, rgba(26, 10, 46, 0.98) 100%),
                linear-gradient(145deg, rgba(34, 197, 94, 0.4) 0%, rgba(34, 197, 94, 0.3) 50%, rgba(34, 197, 94, 0.25) 100%);
            box-shadow: 0 15px 50px rgba(34, 197, 94, 0.35),
                0 0 70px rgba(34, 197, 94, 0.25),
                0 0 120px rgba(34, 197, 94, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            transform: translateY(-12px);
            z-index: 15;
        }

        /* Order cards: TikTok left, PayPal center, eBay right */
        .cta-cards-hero .cta-card-hero:nth-child(3) {
            order: -1;
        }

        .cta-card-hero.ebay-option {
            order: 1;
        }

        .cta-card-icon {
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(139, 92, 246, 0.3);
            border-radius: 14px;
            flex-shrink: 0;
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
        }

        .cta-card-best .cta-card-icon {
            background: rgba(34, 197, 94, 0.3);
            box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
        }

        .cta-card-icon svg {
            color: #a855f7;
        }

        .cta-card-best .cta-card-icon svg {
            color: #22c55e;
        }

        .cta-card-info {
            flex: 1;
            min-width: 0;
        }

        .cta-card-title {
            font-size: 17px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 4px;
            text-shadow: 0 0 15px rgba(255, 255, 255, 0.6),
                0 0 30px rgba(139, 92, 246, 0.4);
        }

        .cta-card-desc {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.4;
            text-shadow: 0 0 8px rgba(255, 255, 255, 0.25),
                0 0 15px rgba(255, 255, 255, 0.15);
        }

        .cta-card-badge {
            position: absolute;
            top: 16px;
            right: 20px;
            background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 2px 8px rgba(34, 197, 94, 0.4);
            animation: pulse-tag 2s ease-in-out infinite;
            z-index: 100;
        }

        .cta-card-arrow {
            background: linear-gradient(135deg, #c89b1e 0%, #c9930d 50%, #b87507 100%);
            color: #ffffff;
            font-size: 15px;
            font-weight: 700;
            padding: 12px 28px;
            border-radius: 8px;
            transition: all 0.3s ease;
            flex-shrink: 0;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow:
                0 1px 0 rgba(255, 255, 255, 0.4) inset,
                0 4px 8px rgba(0, 0, 0, 0.3),
                0 8px 16px rgba(251, 191, 36, 0.4),
                0 2px 4px rgba(0, 0, 0, 0.2);
            margin-top: 8px;
            position: relative;
            overflow: hidden;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            white-space: nowrap;
            border: 2px solid #fcd34d;
        }

        .cta-card-arrow::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .cta-card-arrow.shine::before {
            animation: button-shine 0.8s ease-in-out;
        }

        @keyframes button-shine {
            0% {
                left: -100%;
                opacity: 0;
            }

            50% {
                opacity: 1;
            }

            100% {
                left: 100%;
                opacity: 0;
            }
        }

        .cta-card-hero:hover .cta-card-arrow {
            background: linear-gradient(135deg, #d4a827 0%, #d4a019 50%, #c9930d 100%);
            transform: translateY(-2px);
            box-shadow:
                0 1px 0 rgba(255, 255, 255, 0.5) inset,
                0 6px 12px rgba(0, 0, 0, 0.3),
                0 10px 20px rgba(251, 191, 36, 0.5),
                0 3px 6px rgba(0, 0, 0, 0.2);
        }

        .cta-card-hero:active .cta-card-arrow {
            transform: translateY(0px);
            box-shadow:
                0 1px 0 rgba(255, 255, 255, 0.3) inset,
                0 2px 4px rgba(0, 0, 0, 0.3),
                0 4px 8px rgba(251, 191, 36, 0.3);
        }

        .cta-card-best:hover .cta-card-arrow {
            background: linear-gradient(135deg, #d4a827 0%, #d4a019 50%, #c9930d 100%);
        }

        /* Best Value tag for preferred payment option */
        .best-value-wrapper {
            position: relative;
            display: inline-flex;
        }

        .best-value-tag {
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
            color: #fff;
            font-size: 9px;
            font-weight: 700;
            padding: 2px 8px;
            border-radius: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            white-space: nowrap;
            box-shadow: 0 2px 8px rgba(34, 197, 94, 0.4);
            z-index: 10;
            animation: pulse-tag 2s ease-in-out infinite;
        }

        @keyframes pulse-tag {

            0%,
            100% {
                transform: translateX(-50%) scale(1);
            }

            50% {
                transform: translateX(-50%) scale(1.05);
            }
        }

        .cta-urgency {
            color: #ff6b6b;
            font-size: 13px;
            font-weight: 600;
            margin-top: 20px;
        }

        /* Buy Now Button Styles */
        .hero-buy-now-btn,
        .featured-buy-now-btn {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            padding: 28px 40px;
            background: linear-gradient(135deg, #22c55e 0%, #16a34a 50%, #15803d 100%);
            border: 3px solid #22c55e;
            border-radius: 20px;
            color: #ffffff;
            font-family: 'Oxanium', sans-serif;
            font-weight: 800;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 10px 40px rgba(34, 197, 94, 0.4),
                0 0 60px rgba(34, 197, 94, 0.3),
                0 0 100px rgba(34, 197, 94, 0.15),
                inset 0 2px 0 rgba(255, 255, 255, 0.3);
            position: relative;
            overflow: hidden;
            animation: pulse-green 3s ease-in-out infinite;
        }

        @keyframes pulse-green {

            0%,
            100% {
                box-shadow: 0 10px 40px rgba(34, 197, 94, 0.4),
                    0 0 60px rgba(34, 197, 94, 0.3),
                    0 0 100px rgba(34, 197, 94, 0.15),
                    inset 0 2px 0 rgba(255, 255, 255, 0.3);
            }

            50% {
                box-shadow: 0 10px 50px rgba(34, 197, 94, 0.6),
                    0 0 80px rgba(34, 197, 94, 0.5),
                    0 0 120px rgba(34, 197, 94, 0.25),
                    inset 0 2px 0 rgba(255, 255, 255, 0.4);
            }
        }

        .hero-buy-now-btn::before,
        .featured-buy-now-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
            animation: shine-sweep 3s ease-in-out infinite;
        }

        @keyframes shine-sweep {
            0% {
                left: -100%;
            }

            20%,
            100% {
                left: 100%;
            }
        }

        .hero-buy-now-btn:hover,
        .featured-buy-now-btn:hover {
            background: linear-gradient(135deg, #16a34a 0%, #15803d 50%, #14532d 100%);
            border-color: #4ade80;
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 15px 60px rgba(34, 197, 94, 0.6),
                0 0 90px rgba(34, 197, 94, 0.5),
                0 0 140px rgba(34, 197, 94, 0.3),
                inset 0 2px 0 rgba(255, 255, 255, 0.4);
        }

        .hero-buy-now-btn:active,
        .featured-buy-now-btn:active {
            transform: translateY(-4px) scale(1);
        }

        .buy-now-icon {
            font-size: 48px;
            filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
        }

        .buy-now-text {
            display: flex;
            flex-direction: column;
            gap: 4px;
            flex: 1;
            text-align: left;
        }

        .buy-now-main {
            font-size: 32px;
            letter-spacing: 2px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(255, 255, 255, 0.5);
        }

        .buy-now-sub {
            font-size: 14px;
            font-weight: 600;
            opacity: 0.95;
            text-transform: none;
            letter-spacing: 0.5px;
            text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
        }

        .buy-now-arrow {
            font-size: 36px;
            transition: transform 0.3s ease;
        }

        .hero-buy-now-btn:hover .buy-now-arrow,
        .featured-buy-now-btn:hover .buy-now-arrow {
            transform: translateX(8px);
        }

        .featured-buy-now-btn {
            width: 50%;
            margin: 20px auto;
            padding: 14px 20px;
            gap: 10px;
            border-radius: 10px;
            border-width: 2px;
        }

        .featured-buy-now-btn .buy-now-icon {
            font-size: 24px;
        }

        .featured-buy-now-btn .buy-now-main {
            font-size: 16px;
        }

        .featured-buy-now-btn .buy-now-sub {
            font-size: 7px;
        }

        .featured-buy-now-btn .buy-now-arrow {
            font-size: 18px;
        }

        /* Responsive */
        @media (max-width: 768px) {

            .hero-buy-now-btn,
            .featured-buy-now-btn {
                padding: 20px 28px;
                gap: 15px;
            }

            .buy-now-icon {
                font-size: 36px;
            }

            .buy-now-main {
                font-size: 24px;
            }

            .buy-now-sub {
                font-size: 12px;
            }

            .buy-now-arrow {
                font-size: 28px;
            }
        }

        .contact-section-hero {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
            margin-top: 32px;
            position: relative;
        }

        .contact-label {
            color: #ffffff;
            font-size: 22px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            text-shadow: 0 0 20px rgba(255, 255, 255, 0.6),
                0 0 40px rgba(139, 92, 246, 0.8),
                0 0 60px rgba(139, 92, 246, 0.6),
                0 0 80px rgba(139, 92, 246, 0.4);
        }

        .social-icons-hero {
            display: flex;
            gap: 72px;
            justify-content: center;
            align-items: center;
        }

        .social-icon-hero {
            display: inline-flex;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            text-decoration: none;
            transition: background 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.15);
            cursor: pointer;
            padding: 0;
            font: inherit;
        }

        .social-icon-hero svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        .social-icon-hero:hover {
            background: rgba(139, 92, 246, 0.3);
            box-shadow: 0 4px 20px rgba(139, 92, 246, 0.5);
        }

        /* Custom Tooltip for Social Icons */
        .social-icon-hero {
            position: relative;
        }

        .social-icon-hero::after {
            content: attr(data-tooltip);
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            margin-top: 8px;
            padding: 4px 0;
            font-size: 12px;
            font-weight: 600;
            color: #c4b5fd;
            text-decoration: underline;
            text-underline-offset: 3px;
            white-space: nowrap;
            opacity: 1;
            visibility: visible;
            text-shadow:
                0 0 8px rgba(139, 92, 246, 1),
                0 0 16px rgba(139, 92, 246, 0.9),
                0 0 24px rgba(139, 92, 246, 0.8),
                0 0 40px rgba(139, 92, 246, 0.6),
                0 0 60px rgba(139, 92, 246, 0.4);
        }

        /* Back to Top Button */
        .back-to-top-btn {
            position: fixed !important;
            bottom: 20px !important;
            left: 80px !important;
            display: flex;
            width: 50px;
            height: 50px;
            background: rgba(139, 92, 246, 0.6);
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-size: 24px;
            font-weight: bold;
            border: 2px solid rgba(139, 92, 246, 0.8);
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5), 0 0 20px rgba(139, 92, 246, 0.3);
            padding: 0;
            z-index: 999999 !important;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
        }

        .back-to-top-btn.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .back-to-top-btn::after {
            content: 'Back to Top';
            position: absolute;
            top: 50%;
            left: 60px;
            transform: translateY(-50%);
            background: rgba(139, 92, 246, 0.98);
            color: #ffffff;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            z-index: 999999;
        }

        .back-to-top-btn:hover::after {
            opacity: 1;
        }

        .back-to-top-btn:hover {
            background: rgba(139, 92, 246, 0.8);
            box-shadow: 0 4px 20px rgba(139, 92, 246, 0.6), 0 0 30px rgba(139, 92, 246, 0.5);
            transform: scale(1.1);
        }

        .back-to-top-btn.visible:hover {
            transform: scale(1.1);
        }

        @media (max-width: 768px) {
            .back-to-top-btn {
                position: fixed !important;
                bottom: 15px !important;
                left: 70px !important;
                width: 45px;
                height: 45px;
                font-size: 20px;
                z-index: 999999 !important;
            }
        }

        .links {
            display: flex;
            flex-direction: column;
            gap: 16px;
            padding: 0 0 48px;
        }

        .section-header {
            color: #ffffff;
            font-size: 63px;
            font-weight: 700;
            text-align: center;
            margin-top: 48px;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 0 0 20px rgba(236, 72, 153, 0.8),
                0 0 30px rgba(139, 92, 246, 0.7),
                0 0 40px rgba(34, 197, 94, 0.6),
                0 0 60px rgba(251, 191, 36, 0.5),
                0 0 80px rgba(6, 182, 212, 0.4);
        }

        .section-header#features {
            text-shadow: 0 0 20px rgba(236, 72, 153, 0.8),
                0 0 30px rgba(139, 92, 246, 0.7),
                0 0 40px rgba(34, 197, 94, 0.6),
                0 0 60px rgba(251, 191, 36, 0.5),
                0 0 80px rgba(6, 182, 212, 0.4);

            margin-top: 100px;
        }

        .section-header#resources {
            font-size: 63px;
        }


        .link-button {
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
            text-decoration: none;
            padding: 18px 24px;
            border-radius: 16px;
            font-size: 15px;
            font-weight: 600;
            text-align: center;
            transition: all 0.3s cubic-bezier(0.08, 0.59, 0.29, 0.99);
            box-shadow: 0 0 30px rgba(139, 92, 246, 0.15),
                0 0 60px rgba(139, 92, 246, 0.1);
            display: block;
            border: 1px solid rgba(255, 255, 255, 0.15);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .link-button:hover {
            background: rgba(139, 92, 246, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4),
                0 0 60px rgba(139, 92, 246, 0.3);
            border-color: rgba(139, 92, 246, 0.6);
            box-shadow: 0 0 30px rgba(139, 92, 246, 0.4),
                0 0 60px rgba(139, 92, 246, 0.2);
        }

        .featured-product-link {
            display: block;
            text-decoration: none;
            color: inherit;
            transition: transform 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99);
        }

        .featured-product-link:visited {
            color: inherit;
        }


        .featured-product {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            border: 1px solid rgba(139, 92, 246, 0.3);
            box-shadow: 0 0 50px rgba(139, 92, 246, 0.5),
                0 0 100px rgba(139, 92, 246, 0.35),
                0 0 150px rgba(139, 92, 246, 0.2);
        }

        .featured-product .thumbnail {
            width: 100%;
            height: auto;
            object-fit: contain;
            object-position: center;
            border-radius: 16px 16px 0 0;
        }

        .featured-product .description {
            padding: 18px 24px 8px;
            color: #ffffff;
            font-size: 15px;
            font-weight: 600;
            text-align: center;
        }

        .featured-product .product-title {
            font-size: 40px;
            font-weight: 700;
            color: #ffffff;
            margin: 0 0 6px 0;
            text-shadow: 0 0 20px rgba(236, 72, 153, 0.8),
                0 0 30px rgba(139, 92, 246, 0.7),
                0 0 40px rgba(34, 197, 94, 0.6),
                0 0 60px rgba(251, 191, 36, 0.5),
                0 0 80px rgba(6, 182, 212, 0.4);
        }

        .featured-product .product-tagline {
            font-size: 28px;
            color: #a78bfa;
            margin: 0 0 12px 0;
            font-weight: 500;
        }

        .featured-product .product-highlights {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 8px;
        }

        .featured-product .highlight-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 26px;
            color: #d1d5db;
            text-shadow: 0 0 8px rgba(255, 255, 255, 0.2),
                0 0 12px rgba(255, 255, 255, 0.1);
        }

        .featured-product .highlight-item .highlight-icon {
            color: #22c55e;
            font-size: 28px;
        }

        .featured-product .price-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-top: 10px;
        }

        .featured-product .price-original {
            font-size: 16px;
            color: #9ca3af;
            text-decoration: line-through;
        }

        .featured-product .price-current {
            font-size: 18px;
            font-weight: 600;
            color: #22c55e;
            background: transparent;
            padding: 8px 0;
            border-radius: 0;
            box-shadow: none;
        }

        .featured-product .price-badge {
            background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
            color: #fff;
            font-size: 11px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 20px;
            text-transform: uppercase;
        }

        .featured-product .cta-cards-hero {
            padding: 16px 16px 0;
            gap: 12px;
            margin-bottom: 0;
        }

        /* Make TikTok and eBay cards same size as PayPal */
        .featured-product .cta-card-hero:nth-child(3),
        .featured-product .cta-card-hero.ebay-option {
            transform: scale(1);
        }

        .featured-product .cta-card-hero:nth-child(3):hover,
        .featured-product .cta-card-hero.ebay-option:hover {
            transform: scale(1) translateY(-4px);
        }

        .featured-product .marketplace-cta-text {
            padding: 0 16px 16px;
            margin: 5px 0;
        }

        .featured-product .marketplace-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            padding: 16px 16px 12px;
        }

        .featured-product .marketplace-buttons .featured-product-link,
        .featured-product .marketplace-buttons .best-value-wrapper {
            flex: 1 1 calc(50% - 6px);
            min-width: 200px;
        }

        .marketplace-button {
            color: #ffffff;
            text-decoration: none;
            padding: 18px 20px;
            font-size: 16px;
            font-weight: 700;
            text-align: center;
            transition: all 0.3s cubic-bezier(0.08, 0.59, 0.29, 0.99);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            gap: 8px;
            position: relative;
            overflow: hidden;
            min-height: 60px;
            box-sizing: border-box;
        }

        .marketplace-button::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 ease;
        }

        .marketplace-button:hover::before {
            left: 100%;
        }

        /* TikTok button styling */
        .marketplace-button-tiktok {
            background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
            border: 2px solid #fe2c55;
            box-shadow: 0 4px 15px rgba(254, 44, 85, 0.3),
                0 0 30px rgba(254, 44, 85, 0.15);
        }

        .marketplace-button-tiktok:hover {
            background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
            border-color: #ff5277;
            box-shadow: 0 6px 25px rgba(254, 44, 85, 0.5),
                0 0 50px rgba(254, 44, 85, 0.3);
            transform: translateY(-3px) scale(1.02);
        }

        /* PayPal button styling */
        .marketplace-button-paypal {
            background: linear-gradient(135deg, #003087 0%, #001f5c 100%);
            border: 2px solid #009cde;
            box-shadow: 0 4px 15px rgba(0, 156, 222, 0.3),
                0 0 30px rgba(0, 156, 222, 0.15);
        }

        .marketplace-button-paypal span {
            font-size: 16px;
            font-weight: 700;
        }

        .marketplace-button-paypal:hover {
            background: linear-gradient(135deg, #001f5c 0%, #003087 100%);
            border-color: #00b4ff;
            box-shadow: 0 6px 25px rgba(0, 156, 222, 0.5),
                0 0 50px rgba(0, 156, 222, 0.3);
            transform: translateY(-3px) scale(1.02);
        }

        /* eBay button styling - intentionally muted as least preferred option */
        .marketplace-button-ebay {
            background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
            opacity: 0.8;
            font-size: 13px;
        }

        .marketplace-button-ebay:hover {
            background: linear-gradient(135deg, #444444 0%, #2a2a2a 100%);
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            transform: translateY(-2px) scale(1.01);
            opacity: 0.9;
        }

        /* eBay elements - hidden by default, shown when stock available */
        .ebay-option {
            display: none;
        }

        .ebay-option.show {
            display: flex;
        }

        .marketplace-button:active {
            transform: translateY(0) scale(0.98);
        }

        .marketplace-cta-text {
            text-align: center;
            padding: 0 16px;
            margin: 40px 0 5px 0;
            color: #22c55e;
            font-size: 13px;
            font-weight: 600;
            animation: pulse-text 2s ease-in-out infinite;
            position: relative;
            width: 100%;
            transition: transform 0.3s ease;
        }

        /* Move text with cards when any card is hovered */
        .featured-product:has(.cta-card-hero:hover) .marketplace-cta-text {
            transform: translateY(-4px);
        }

        /* Payment Options Explainer Section */
        .payment-options-section {
            margin: 48px 0;
            padding: 32px 24px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            border: 1px solid rgba(139, 92, 246, 0.2);
        }

        .payment-options-title {
            text-align: center;
            font-size: 24px;
            font-weight: 700;
            color: #ffffff;
            margin: 0 0 24px 0;
        }

        .payment-options-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        @media (min-width: 768px) {
            .payment-options-grid {
                grid-template-columns: repeat(3, 1fr);
                align-items: flex-end;
                gap: 20px 20px;
            }

            /* TikTok - 2nd place, left */
            .payment-option-link:nth-child(1) {
                order: 1;
            }

            /* Buy Direct - 1st place, middle, raised */
            .payment-option-link:nth-child(2) {
                order: 2;
                margin-bottom: 40px;
            }

            /* eBay - 2nd place, right */
            .payment-option-link:nth-child(3) {
                order: 3;
            }
        }

        .payment-option-link {
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .payment-option-card {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: 24px;
            border: 1px solid rgba(139, 92, 246, 0.3);
            transition: all 0.3s ease;
        }

        .payment-option-card:hover {
            transform: translateY(-4px);
            border-color: rgba(139, 92, 246, 0.5);
            box-shadow: 0 8px 24px rgba(139, 92, 246, 0.2);
        }

        /* Buy Direct - Winner styling with green glow */
        .payment-option-card.recommended {
            border: 2px solid #22c55e;
            background: rgba(34, 197, 94, 0.1);
            box-shadow: 0 0 30px rgba(34, 197, 94, 0.3),
                0 0 60px rgba(34, 197, 94, 0.15);
        }

        .payment-option-card.recommended:hover {
            transform: translateY(-4px);
            box-shadow: 0 0 40px rgba(34, 197, 94, 0.5),
                0 0 80px rgba(34, 197, 94, 0.3),
                0 8px 24px rgba(34, 197, 94, 0.2);
        }

        .payment-option-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 20px;
        }

        .payment-option-icon {
            font-size: 32px;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .payment-option-icon svg {
            width: 40px;
            height: 40px;
        }

        .payment-option-link:nth-child(1) .payment-option-icon svg {
            color: #ffffff;
        }

        .payment-option-link:nth-child(2) .payment-option-icon svg {
            color: #0070ba;
        }

        .payment-option-link:nth-child(3) .payment-option-icon svg {
            color: #e53238;
        }

        .payment-option-name {
            font-size: 20px;
            font-weight: 700;
            color: #ffffff;
            margin: 0;
        }

        .payment-option-badge {
            display: inline-block;
            background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            padding: 4px 8px;
            border-radius: 12px;
            text-transform: uppercase;
            margin-left: auto;
            align-self: flex-start;
        }

        .payment-option-description {
            color: #d1d5db;
            font-size: 14px;
            line-height: 1.6;
            margin: 0 0 16px 0;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.2),
                0 0 15px rgba(255, 255, 255, 0.15);
        }

        .payment-option-features {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .payment-option-features li {
            color: #9ca3af;
            font-size: 13px;
            padding: 6px 0;
            display: flex;
            align-items: flex-start;
            gap: 8px;
            line-height: 1.5;
        }

        .payment-option-features li::before {
            content: "✓";
            color: #22c55e;
            font-weight: 700;
            flex-shrink: 0;
            width: 16px;
            line-height: 1.5;
        }

        .payment-option-features li.con::before {
            content: "•";
            color: #9ca3af;
        }

        .payment-option-button {
            display: inline-block;
            width: 100%;
            margin-top: 20px;
            padding: 12px 24px;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.6) 0%, rgba(139, 92, 246, 0.4) 50%, rgba(139, 92, 246, 0.6) 100%);
            border: 1px solid rgba(139, 92, 246, 0.6);
            border-radius: 8px;
            color: #ffffff;
            font-size: 14px;
            font-weight: 600;
            text-align: center;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
        }

        .payment-option-button:hover {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.8) 0%, rgba(139, 92, 246, 0.6) 50%, rgba(139, 92, 246, 0.8) 100%);
            border-color: rgba(139, 92, 246, 0.8);
            box-shadow: 0 0 30px rgba(139, 92, 246, 0.6);
            transform: translateY(-2px);
        }

        .payment-option-button.recommended-btn {
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.6) 0%, rgba(22, 163, 74, 0.4) 50%, rgba(34, 197, 94, 0.6) 100%);
            border-color: rgba(34, 197, 94, 0.8);
            box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
        }

        .payment-option-button.recommended-btn:hover {
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.8) 0%, rgba(22, 163, 74, 0.6) 50%, rgba(34, 197, 94, 0.8) 100%);
            border-color: rgba(34, 197, 94, 1);
            box-shadow: 0 0 30px rgba(34, 197, 94, 0.6);
        }

        @keyframes pulse-text {

            0%,
            100% {
                opacity: 0.85;
            }

            50% {
                opacity: 1;
            }
        }

        /* About Console Section */
        .about-console {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            border: 1px solid rgba(139, 92, 246, 0.4);
            box-shadow: 0 0 50px rgba(139, 92, 246, 0.5),
                0 0 100px rgba(139, 92, 246, 0.35),
                0 0 160px rgba(139, 92, 246, 0.2);
        }

        /* Carousel Styles */
        .carousel {
            position: relative;
            width: 100%;
            border-radius: 16px;
            overflow: hidden;
            margin: 0 0 48px 0;
            box-shadow: 0 0 50px rgba(139, 92, 246, 0.5),
                0 0 100px rgba(139, 92, 246, 0.35),
                0 0 160px rgba(139, 92, 246, 0.2);
        }

        .carousel-container {
            position: relative;
            width: 100%;
            height: 90vh;
            min-height: 500px;
        }

        @media (max-width: 768px) {
            .carousel-container {
                height: 70vh;
                min-height: 400px;
            }
        }

        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .carousel-slide.active {
            opacity: 1;
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            color: #ffffff;
            border: none;
            padding: 16px 12px;
            cursor: pointer;
            font-size: 18px;
            z-index: 10;
            transition: all 0.25s ease;
            border-radius: 4px;
        }

        .carousel-btn:hover {
            background: rgba(139, 92, 246, 0.7);
        }

        .carousel-btn-prev {
            left: 10px;
        }

        .carousel-btn-next {
            right: 10px;
        }

        .carousel-dots {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            min-width: 24px;
            min-height: 24px;
            padding: 6px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            background-clip: content-box;
            cursor: pointer;
            transition: all 0.25s ease;
            border: none;
        }

        .carousel-dot.active {
            background: rgba(139, 92, 246, 0.9);
            background-clip: content-box;
            box-shadow: 0 0 10px rgba(139, 92, 246, 0.6);
        }

        .carousel-dot:hover {
            background: rgba(139, 92, 246, 0.6);
            background-clip: content-box;
        }

        @media (max-width: 768px) {
            .carousel-btn {
                padding: 14px 10px;
                font-size: 16px;
            }

            .carousel-dots {
                bottom: 20px;
                gap: 10px;
            }

            .carousel-dot {
                width: 12px;
                height: 12px;
            }
        }

        /* About Description */
        .about-description {
            padding: 30px 24px;
            padding-top: 0;
            color: #ffffff;
        }

        .about-description p {
            font-size: 16px;
            line-height: 1.7;
            margin: 10px 0;
            padding: 0;
            text-align: center;
            text-shadow: 0 0 20px rgba(139, 92, 246, 0.8),
                0 0 40px rgba(139, 92, 246, 0.5);
        }

        @media (max-width: 768px) {
            .about-description {
                padding: 40px 25px;
                padding-top: 20px;
            }

            .about-description p {
                font-size: 17px;
                line-height: 1.8;
                margin: 15px 0;
            }
        }

        .about-description strong {
            text-shadow: 0 0 20px rgba(139, 92, 246, 1),
                0 0 40px rgba(139, 92, 246, 0.7);
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .feature-list li {
            font-size: 15px;
            line-height: 1.5;
            padding: 12px 16px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            text-shadow: 0 0 15px rgba(139, 92, 246, 0.6);
        }

        .feature-list li strong {
            color: #ffffff;
            text-shadow: 0 0 20px rgba(139, 92, 246, 1),
                0 0 40px rgba(139, 92, 246, 0.6);
        }

        /* Accordion Styles */
        .accordion {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 20px;
        }

        .accordion-item {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            overflow: hidden;
        }

        .accordion-header {
            width: 100%;
            padding: 16px 18px;
            background: transparent;
            border: none;
            color: #ffffff;
            font-size: 15px;
            font-weight: 600;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.25s ease;
        }

        @media (max-width: 768px) {
            .accordion {
                gap: 15px;
                margin-top: 25px;
            }

            .accordion-item {
                border-radius: 12px;
            }

            .accordion-header {
                padding: 18px 20px;
                font-size: 16px;
            }

            .accordion-content p {
                padding: 0 20px 16px;
                font-size: 15px;
                line-height: 1.7;
            }

            .accordion-content .feature-list {
                padding: 8px 20px 20px;
            }

            .accordion-content .feature-list li {
                font-size: 15px;
                padding: 14px 18px;
            }

            .accordion-item.active .accordion-content {
                max-height: 800px;
            }
        }

        .accordion-header:hover {
            background: rgba(139, 92, 246, 0.15);
        }

        .accordion-icon {
            font-size: 12px;
            transition: transform 0.3s ease;
        }

        .accordion-item.active .accordion-icon {
            transform: rotate(180deg);
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .accordion-item.active .accordion-content {
            max-height: 600px;
        }

        .accordion-content p {
            padding: 0 16px 12px;
            font-size: 14px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.85);
            margin: 0;
        }

        .accordion-content p:first-child {
            padding-top: 4px;
        }

        .accordion-content .feature-list {
            padding: 4px 16px 16px;
        }

        .accordion-content .feature-list li {
            font-size: 14px;
        }

        .accordion-buy-buttons {
            display: flex;
            gap: 8px;
            padding: 8px 16px 16px;
        }

        .accordion-buy-btn {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 14px 16px;
            background: rgba(255, 255, 255, 0.15);
            color: #ffffff;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            transition: all 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99);
            cursor: pointer;
        }

        .accordion-buy-btn:hover {
            background: rgba(139, 92, 246, 0.3);
            border-color: rgba(139, 92, 246, 0.6);
            box-shadow: 0 0 20px rgba(139, 92, 246, 0.4),
                0 0 40px rgba(139, 92, 246, 0.2);
            transform: translateY(-2px);
        }

        .accordion-buy-btn:active {
            transform: translateY(0);
        }

        /* Floating Buy Now Button */
        .floating-cta {
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 17.5vw;
            min-width: 280px;
            z-index: 10001;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px) translateZ(0);
            transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
            display: flex;
            flex-direction: column;
            border-radius: 6px;
            background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.7) 0%, transparent 70%);
            padding: 8px;
            box-shadow: 0 0 30px 15px rgba(0, 0, 0, 0.7);
            will-change: transform, opacity;
        }

        .floating-cta.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .floating-cta-title {
            color: #ffffff;
            font-size: 14px;
            font-weight: 700;
            text-align: center;
            padding: 0 0 10px 0;
            width: 100%;
            text-shadow: 0 0 20px rgba(255, 255, 255, 0.6),
                0 0 40px rgba(139, 92, 246, 0.8),
                0 0 60px rgba(139, 92, 246, 0.6),
                0 0 80px rgba(139, 92, 246, 0.4);
        }

        .floating-cta-buttons {
            display: flex;
            gap: 0;
            padding: 0;
        }

        .floating-btn.floating-btn-contact {
            margin: 10px 10px 20px 10px;
            padding: 10px 24px;
            border-radius: 8px !important;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: none !important;
            text-shadow: none;
            font-size: 12px;
        }

        .floating-btn.floating-btn-contact:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: none !important;
            transform: none;
        }

        .floating-btn {
            display: inline-flex;
            padding: 12px 10px;
            flex: 1;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.6) 0%, rgba(139, 92, 246, 0.4) 50%, rgba(139, 92, 246, 0.6) 100%);
            align-items: center;
            justify-content: center;
            color: #ffffff;
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            border: 1px solid rgba(139, 92, 246, 0.6);
            transition: all 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99);
            box-shadow: 0 0 20px rgba(139, 92, 246, 0.6),
                0 0 40px rgba(139, 92, 246, 0.4),
                0 0 60px rgba(139, 92, 246, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
            white-space: nowrap;
        }

        .floating-btn:first-child {
            border-radius: 5px 0 0 5px;
            border-right: 0.5px solid rgba(255, 255, 255, 0.2);
        }

        .floating-btn:last-child {
            border-radius: 0 5px 5px 0;
            border-left: 0.5px solid rgba(255, 255, 255, 0.2);
        }

        /* Middle button should have no rounding */
        .floating-btn:not(:first-child):not(:last-child) {
            border-radius: 0;
            border-left: 0.5px solid rgba(255, 255, 255, 0.2);
            border-right: 0.5px solid rgba(255, 255, 255, 0.2);
        }

        .floating-btn:hover {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.8) 0%, rgba(139, 92, 246, 0.6) 50%, rgba(139, 92, 246, 0.8) 100%);
            border-color: rgba(139, 92, 246, 0.8);
            box-shadow: 0 0 25px rgba(139, 92, 246, 0.8),
                0 0 50px rgba(139, 92, 246, 0.5),
                0 0 80px rgba(139, 92, 246, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            transform: translateY(-1px);
        }

        .floating-cta.pulse .floating-btn {
            animation: pulse-glow 1.5s ease-in-out 2;
        }

        @keyframes pulse-glow {

            0%,
            100% {
                box-shadow: 0 0 20px rgba(139, 92, 246, 0.6),
                    0 0 40px rgba(139, 92, 246, 0.4),
                    0 0 60px rgba(139, 92, 246, 0.2),
                    inset 0 1px 0 rgba(255, 255, 255, 0.2);
            }

            50% {
                box-shadow: 0 0 35px rgba(139, 92, 246, 1),
                    0 0 70px rgba(139, 92, 246, 0.7),
                    0 0 100px rgba(139, 92, 246, 0.4),
                    inset 0 1px 0 rgba(255, 255, 255, 0.3);
            }
        }

        @media (max-width: 480px) {
            .floating-cta {
                bottom: 80px;
                right: 16px;
                left: auto;
                width: auto;
                min-width: 200px;
                max-width: calc(100vw - 32px);
            }

            .floating-cta-title {
                font-size: 14px;
                padding: 0 0 8px 0;
            }

            .floating-btn {
                flex: 1;
                padding: 8px 10px;
                font-size: 13px;
            }

            .floating-btn svg {
                width: 50px !important;
                height: 27px !important;
            }

            .floating-btn.floating-btn-contact {
                margin: 8px 8px 16px 8px;
                padding: 6px 20px;
                font-size: 11px;
            }
        }

        /* Marquee Styles */
        .marquee-container {
            width: 100vw;
            margin-left: calc(-50vw + 50%);
            overflow: hidden;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(139, 92, 246, 0.25) 100%);
            padding: 16px 0;
            margin-top: 0;
            margin-bottom: 48px;
            position: relative;
            display: flex;
            align-items: center;
            border-top: 1px solid rgba(139, 92, 246, 0.4);
            border-bottom: 1px solid rgba(139, 92, 246, 0.4);
        }

        .marquee-container::before,
        .marquee-container::after {
            content: '';
            position: absolute;
            top: -1px;
            bottom: -1px;
            width: 80px;
            z-index: 2;
            pointer-events: none;
        }

        .marquee-container::before {
            left: 0;
            background: linear-gradient(to right, #0a0014 0%, rgba(10, 0, 20, 0.9) 30%, rgba(10, 0, 20, 0.6) 60%, transparent 100%);
        }

        .marquee-container::after {
            right: 0;
            background: linear-gradient(to left, #0a0014 0%, rgba(10, 0, 20, 0.9) 30%, rgba(10, 0, 20, 0.6) 60%, transparent 100%);
        }

        @media (min-width: 768px) {

            .marquee-container::before,
            .marquee-container::after {
                width: 35%;
            }

            .marquee-container::before {
                background: linear-gradient(to right, #0a0014 0%, rgba(10, 0, 20, 0.95) 20%, rgba(10, 0, 20, 0.8) 40%, rgba(10, 0, 20, 0.5) 70%, transparent 100%);
            }

            .marquee-container::after {
                background: linear-gradient(to left, #0a0014 0%, rgba(10, 0, 20, 0.95) 20%, rgba(10, 0, 20, 0.8) 40%, rgba(10, 0, 20, 0.5) 70%, transparent 100%);
            }

            .marquee {
                animation: marquee 40s linear infinite;
            }
        }

        .marquee {
            display: flex;
            width: max-content;
            animation: marquee 30s linear infinite;
            will-change: transform;
            transform: translateZ(0);
        }

        .marquee span {
            color: #ffffff;
            font-size: 15px;
            font-weight: 600;
            white-space: nowrap;
            letter-spacing: 0.3px;
        }

        .marquee span strong {
            font-weight: 700;
        }

        .marquee span em {
            font-style: italic;
        }

        @keyframes marquee {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        .marquee-container:hover .marquee,
        .marquee-container.paused .marquee,
        .features-marquee-container:hover .marquee,
        .testimonial-marquee-container:hover .marquee {
            animation-play-state: paused;
        }

        /* Features Marquee (between hero and content) */
        .features-marquee-container {
            width: 100vw;
            position: relative;
            left: 50%;
            margin-left: -50vw;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(139, 92, 246, 0.25) 100%);
            padding: 16px 0;
            margin-top: 10px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            border-top: 1px solid rgba(139, 92, 246, 0.2);
            border-bottom: 1px solid rgba(139, 92, 246, 0.2);
        }

        .features-marquee-container .marquee {
            display: flex;
            width: max-content;
            animation: marquee 120s linear infinite;
            will-change: transform;
            transform: translateZ(0);
        }

        .features-marquee-container .marquee span {
            color: #ffffff;
            font-size: 15px;
            font-weight: 600;
            white-space: nowrap;
            letter-spacing: 0.3px;
        }

        @media (max-width: 768px) {
            .features-marquee-container {
                padding: 18px 0;
                margin-top: 0;
                margin-bottom: 15px;
                margin-left: -50vw;
            }

            .features-marquee-container .marquee span {
                font-size: 16px;
            }
        }

        .features-marquee-container::before,
        .features-marquee-container::after {
            content: '';
            position: absolute;
            top: -1px;
            bottom: -1px;
            width: 80px;
            z-index: 2;
            pointer-events: none;
        }

        .features-marquee-container::before {
            left: 0;
            background: linear-gradient(to right, #0a0014 0%, rgba(10, 0, 20, 0.9) 30%, rgba(10, 0, 20, 0.6) 60%, transparent 100%);
        }

        .features-marquee-container::after {
            right: 0;
            background: linear-gradient(to left, #0a0014 0%, rgba(10, 0, 20, 0.9) 30%, rgba(10, 0, 20, 0.6) 60%, transparent 100%);
        }

        @media (min-width: 768px) {

            .features-marquee-container::before,
            .features-marquee-container::after {
                width: 35%;
            }

            .features-marquee-container::before {
                background: linear-gradient(to right, #0a0014 0%, rgba(10, 0, 20, 0.95) 20%, rgba(10, 0, 20, 0.8) 40%, rgba(10, 0, 20, 0.5) 70%, transparent 100%);
            }

            .features-marquee-container::after {
                background: linear-gradient(to left, #0a0014 0%, rgba(10, 0, 20, 0.95) 20%, rgba(10, 0, 20, 0.8) 40%, rgba(10, 0, 20, 0.5) 70%, transparent 100%);
            }
        }

        /* Tabbed Resources Section */
        .resources-section {
            width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            padding: 60px 40px;
            margin-top: 0;
            margin-bottom: 0;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(168, 85, 247, 0.4) 100%);
            border-top: 3px solid rgba(139, 92, 246, 0.6);
            border-bottom: 3px solid rgba(139, 92, 246, 0.6);
            backdrop-filter: blur(10px);
            box-shadow: 0 0 40px rgba(139, 92, 246, 0.3),
                inset 0 0 60px rgba(139, 92, 246, 0.1);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .resources-section>* {
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .resources-tabs {
            display: flex;
            gap: 4px;
            margin-bottom: 0;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .resources-tabs::-webkit-scrollbar {
            display: none;
        }

        .tab-button {
            flex: 1;
            min-width: fit-content;
            padding: 14px 16px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: none;
            border-radius: 12px 12px 0 0;
            color: rgba(255, 255, 255, 0.6);
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.25s ease;
            white-space: nowrap;
        }

        .tab-button:hover {
            background: rgba(168, 85, 247, 0.15);
            color: rgba(255, 255, 255, 0.9);
        }

        .tab-button.active {
            background: rgba(168, 85, 247, 0.2);
            border-color: rgba(168, 85, 247, 0.4);
            color: #ffffff;
            box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
        }

        .tab-content-container {
            background: transparent;
            border: none;
            border-radius: 0 0 16px 16px;
            padding: 20px;
            min-height: 200px;
        }

        .tab-content {
            display: none;
            flex-direction: column;
            gap: 12px;
        }

        .tab-content.active {
            display: flex;
        }

        .resource-card {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: #ffffff;
            text-decoration: none;
            transition: all 0.25s ease;
            cursor: pointer;
            font: inherit;
            text-align: left;
            width: 100%;
        }

        .resource-card:hover {
            background: rgba(138, 43, 226, 0.3);
            border-color: rgba(138, 43, 226, 0.8);
            transform: translateX(4px);
            box-shadow: 0 0 40px rgba(138, 43, 226, 0.6),
                0 0 80px rgba(138, 43, 226, 0.4);
        }

        .resource-icon {
            font-size: 28px;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(138, 43, 226, 0.2);
            border-radius: 10px;
            flex-shrink: 0;
        }

        .resource-info {
            flex: 1;
            min-width: 0;
        }

        .resource-title {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 4px;
            color: #ffffff;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.5),
                0 0 20px rgba(139, 92, 246, 0.3);
        }

        .resource-desc {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.4;
            text-shadow: 0 0 8px rgba(255, 255, 255, 0.2),
                0 0 12px rgba(255, 255, 255, 0.1);
        }

        .resource-arrow {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.4);
            transition: all 0.25s ease;
        }

        .resource-card:hover .resource-arrow {
            color: #a855f7;
            transform: translateX(4px);
        }

        @media (max-width: 480px) {
            .tab-button {
                padding: 12px 10px;
                font-size: 11px;
            }

            .resource-card {
                padding: 14px;
                gap: 12px;
            }

            .resource-icon {
                width: 40px;
                height: 40px;
                font-size: 22px;
            }

            .resource-title {
                font-size: 14px;
            }

            .resource-desc {
                font-size: 12px;
            }
        }

        /* Testimonials Carousel Styles */
        .testimonials-carousel-section {
            margin: 48px 0;
            overflow-x: visible;
            overflow-y: hidden;
            width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
        }

        .testimonials-carousel-container {
            position: relative;
            width: 100%;
            margin: 24px auto 0;
            padding: 30px 60px;
            overflow: hidden;
        }

        .testimonials-carousel-container::before,
        .testimonials-carousel-container::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 150px;
            pointer-events: none;
            z-index: 10;
        }

        .testimonials-carousel-container::before {
            left: 0;
            background: linear-gradient(to right, #000000 0%, transparent 100%);
        }

        .testimonials-carousel-container::after {
            right: 0;
            background: linear-gradient(to left, #000000 0%, transparent 100%);
        }

        .testimonials-carousel-track {
            display: flex;
            gap: 20px;
            animation: scroll-testimonials 20s linear infinite;
        }

        .testimonials-carousel-track:hover {
            animation-play-state: paused;
        }

        @keyframes scroll-testimonials {
            0% {
                transform: translateX(0);
            }

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

        .testimonial-card {
            position: relative;
            min-width: 350px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 24px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            transition: all 0.3s ease;
            flex-shrink: 0;
            overflow: hidden;
        }

        .testimonial-card:hover {
            background: rgba(138, 43, 226, 0.15);
            border-color: rgba(138, 43, 226, 0.5);
            box-shadow: 0 0 30px rgba(138, 43, 226, 0.3);
            transform: translateY(-4px);
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid rgba(138, 43, 226, 0.5);
        }

        .testimonial-info {
            flex: 1;
        }

        .testimonial-name {
            color: #ffffff;
            font-size: 16px;
            font-weight: 600;
        }

        .testimonial-location {
            color: rgba(255, 255, 255, 0.5);
            font-size: 13px;
        }

        .testimonial-rating {
            color: #fbbf24;
            font-size: 16px;
            letter-spacing: 2px;
        }

        .testimonial-quote {
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            line-height: 1.6;
            font-style: italic;
        }

        .carousel-button {
            display: none;
        }

        @media (max-width: 768px) {
            .testimonials-carousel-container {
                padding: 15px 15px;
            }

            .testimonials-carousel-track {
                animation: scroll-testimonials 15s linear infinite;
                gap: 10px;
            }

            .testimonial-card {
                min-width: 180px;
                padding: 12px;
                gap: 8px;
                border-radius: 12px;
            }

            .testimonial-header {
                gap: 8px;
            }

            .testimonial-avatar {
                width: 32px;
                height: 32px;
            }

            .testimonial-name {
                font-size: 12px;
            }

            .testimonial-location {
                font-size: 10px;
            }

            .testimonial-rating {
                font-size: 12px;
                letter-spacing: 1px;
            }

            .testimonial-quote {
                font-size: 11px;
                line-height: 1.4;
            }

            .carousel-button {
                width: 35px;
                height: 35px;
                font-size: 18px;
            }
        }

        @media (max-width: 480px) {
            .testimonials-carousel-container {
                padding: 10px 10px;
            }

            .testimonials-carousel-track {
                animation: scroll-testimonials 12s linear infinite;
                gap: 8px;
            }

            .testimonial-card {
                min-width: 150px;
                padding: 10px;
                gap: 6px;
                border-radius: 10px;
            }

            .testimonial-avatar {
                width: 28px;
                height: 28px;
            }

            .testimonial-name {
                font-size: 11px;
            }

            .testimonial-location {
                font-size: 9px;
            }

            .testimonial-rating {
                font-size: 10px;
            }

            .testimonial-quote {
                font-size: 10px;
                line-height: 1.3;
            }

            .carousel-button {
                width: 30px;
                height: 30px;
                font-size: 16px;
            }

            .carousel-button.prev {
                left: 5px;
            }

            .carousel-button.next {
                right: 5px;
            }
        }

        @media (max-width: 480px) {
            .cta-cards-hero {
                flex-direction: column;
                gap: 12px;
                align-items: stretch;
            }

            .featured-product .cta-cards-hero {
                padding: 12px 12px 0;
            }

            /* Make TikTok and eBay cards same size as PayPal on mobile */
            .featured-product .cta-card-hero:nth-child(3),
            .featured-product .cta-card-hero.ebay-option {
                transform: scale(1);
            }

            .featured-product .cta-card-hero:nth-child(3):hover,
            .featured-product .cta-card-hero.ebay-option:hover {
                transform: scale(1) translateY(-2px);
            }

            .cta-card-hero {
                padding: 14px 16px;
                gap: 12px;
                flex-direction: row;
                text-align: left;
                margin-top: 0;
            }

            .cta-card-best {
                padding: 20px 16px;
                transform: scale(1);
            }

            .cta-card-best:hover {
                transform: scale(1) translateY(-2px);
            }

            .cta-card-icon {
                width: 48px;
                height: 48px;
            }

            .cta-card-title {
                font-size: 15px;
            }

            .cta-card-desc {
                font-size: 12px;
            }

            .cta-card-badge {
                font-size: 9px;
                padding: 3px 8px;
                right: 12px;
            }
        }

        /* Affiliates Section Styles */
        .affiliates-section {
            background: linear-gradient(180deg, #0a0118 0%, #1a0a2e 50%, #0a0118 100%);
            padding: 80px 20px;
            position: relative;
            overflow: hidden;
        }

        .affiliates-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .affiliates-title {
            font-size: 48px;
            font-weight: 800;
            text-align: center;
            margin-bottom: 15px;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
        }

        .affiliates-subtitle {
            font-size: 18px;
            text-align: center;
            color: #a0a0a0;
            margin-bottom: 60px;
            position: relative;
        }

        .affiliates-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }

        .affiliate-card {
            background: linear-gradient(145deg, rgba(42, 23, 70, 0.6) 0%, rgba(26, 10, 46, 0.8) 100%);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            transition: all 0.4s ease;
            border: 2px solid rgba(139, 92, 246, 0.2);
            position: relative;
            overflow: hidden;
        }

        .affiliate-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
        }

        .affiliate-card:hover {
            transform: translateY(-8px);
            border-color: rgba(139, 92, 246, 0.5);
            box-shadow:
                0 10px 30px rgba(139, 92, 246, 0.3),
                0 0 40px rgba(251, 191, 36, 0.2);
        }

        .affiliate-card:hover::before {
            opacity: 1;
        }

        .affiliate-avatar {
            width: 120px;
            height: 120px;
            margin: 0 auto 20px;
            border-radius: 50%;
            overflow: hidden;
            border: 4px solid rgba(139, 92, 246, 0.3);
            transition: all 0.4s ease;
            background: linear-gradient(135deg, #8b5cf6 0%, #6a1bb2 100%);
            padding: 5px;
        }

        .affiliate-card:hover .affiliate-avatar {
            border-color: rgba(251, 191, 36, 0.6);
            transform: scale(1.05) rotate(5deg);
            box-shadow: 0 0 25px rgba(139, 92, 246, 0.5);
        }

        .affiliate-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        .affiliate-info {
            position: relative;
            z-index: 1;
        }

        .affiliate-name {
            font-size: 24px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 5px;
            text-shadow: 0 0 15px rgba(255, 255, 255, 0.4),
                0 0 30px rgba(34, 197, 94, 0.6),
                0 0 60px rgba(34, 197, 94, 0.4);
        }

        .affiliate-location {
            font-size: 14px;
            color: #a78bfa;
            margin-bottom: 10px;
        }

        .affiliate-rating {
            color: #fbbf24;
            font-size: 18px;
            margin-bottom: 15px;
            letter-spacing: 2px;
        }

        .affiliate-quote {
            font-size: 15px;
            line-height: 1.6;
            color: #d0d0d0;
            font-style: italic;
            margin-bottom: 20px;
            min-height: 80px;
            text-shadow: 0 0 8px rgba(255, 255, 255, 0.2),
                0 0 12px rgba(255, 255, 255, 0.1);
        }

        .affiliate-badge {
            display: inline-block;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(106, 27, 178, 0.3) 100%);
            color: #a78bfa;
            font-size: 12px;
            font-weight: 600;
            padding: 6px 16px;
            border-radius: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border: 1px solid rgba(139, 92, 246, 0.4);
        }

        @media (max-width: 768px) {
            .affiliates-section {
                padding: 60px 15px;
            }

            .affiliates-title {
                font-size: 32px;
            }

            .affiliates-subtitle {
                font-size: 16px;
                margin-bottom: 40px;
            }

            .affiliates-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .affiliate-card {
                padding: 25px;
            }

            .affiliate-avatar {
                width: 100px;
                height: 100px;
            }

            .affiliate-name {
                font-size: 20px;
            }

            .affiliate-quote {
                font-size: 14px;
                min-height: auto;
            }
        }

        /* Rotating Testimonials Carousel */
        .rotating-testimonials-section {
            background: transparent;
            width: 100vw;
            padding: 60px 20px;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            margin: 0 !important;
            margin-left: calc(-50vw + 50%);
            margin-right: calc(-50vw + 50%);
        }

        .rotating-testimonials-title {
            font-size: 32px;
            font-weight: 600;
            text-align: center;
            margin-bottom: 8px;
            color: #ffffff;
            letter-spacing: -0.5px;
            position: relative;
            z-index: 1;
            width: 100%;
            max-width: 1200px;
        }

        .rotating-testimonials-subtitle {
            font-size: 15px;
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
            width: 100%;
            max-width: 1200px;
        }

        .rotating-testimonials-carousel {
            max-width: 600px;
            width: 100%;
            margin: 0 auto;
            position: relative;
            min-height: 266px;
            z-index: 1;
            background: transparent;
            border-radius: 20px;
            padding: 0;
            border: none;
        }

        @keyframes shimmer {
            0% {
                background-position: -1000px 0;
            }

            100% {
                background-position: 1000px 0;
            }
        }

        .rotating-testimonial-card {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 266px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 20px;
            padding: 28px 40px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease;
            pointer-events: none;
            display: flex;
            flex-direction: column;
            justify-content: center;
            overflow: hidden;
        }

        .rotating-testimonial-card.active {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        @keyframes bump {
            0% {
                transform: translateY(30px) scale(0.95);
            }

            50% {
                transform: translateY(-10px) scale(1.02);
            }

            100% {
                transform: translateY(0) scale(1);
            }
        }

        .rotating-testimonial-card.exit {
            opacity: 0;
            transform: translateY(-30px) scale(0.95);
        }

        .rotating-testimonial-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(90deg,
                    rgba(139, 92, 246, 0.4),
                    rgba(34, 197, 94, 0.4),
                    rgba(251, 191, 36, 0.4),
                    rgba(236, 72, 153, 0.4),
                    rgba(139, 92, 246, 0.4));
            background-size: 200% 100%;
            border-radius: 15px;
            z-index: -1;
            animation: shimmer 3s linear infinite;
        }

        .rotating-testimonial-card:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 15px 40px rgba(139, 92, 246, 0.5),
                0 0 50px rgba(34, 197, 94, 0.3);
        }

        .rotating-testimonial-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            margin-bottom: 20px;
        }

        .rotating-testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            border: 2px solid rgba(251, 191, 36, 0.5);
            box-shadow: 0 0 15px rgba(251, 191, 36, 0.3);
            flex-shrink: 0;
        }

        .rotating-testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .rotating-testimonial-info {
            text-align: center;
        }

        .rotating-testimonial-name {
            font-size: 16px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 2px;
        }

        .rotating-testimonial-location {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 8px;
        }

        .rotating-testimonial-stars {
            color: #fbbf24;
            font-size: 14px;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .rotating-testimonial-quote {
            font-size: 18px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.85);
            font-style: italic;
            font-weight: 400;
            margin-bottom: 24px;
            flex-grow: 1;
            max-width: 480px;
            margin-left: auto;
            margin-right: auto;
        }

        .rotating-testimonial-quote::before {
            content: '"';
            color: rgba(139, 92, 246, 0.3);
            font-size: 40px;
            font-family: Georgia, serif;
            line-height: 0;
            display: block;
            margin-bottom: 16px;
        }

        .rotating-testimonial-platform {
            display: inline-block;
            background: rgba(34, 197, 94, 0.1);
            color: #22c55e;
            font-size: 11px;
            font-weight: 600;
            padding: 6px 12px;
            border-radius: 20px;
            border: 1px solid rgba(34, 197, 94, 0.25);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.2s ease;
            position: relative;
            white-space: nowrap;
        }

        .rotating-testimonial-platform::before {
            content: '✓ ';
            font-weight: 700;
        }

        .rotating-testimonial-platform:hover {
            background: rgba(34, 197, 94, 0.2);
            border-color: rgba(34, 197, 94, 0.4);
        }

        a.rotating-testimonial-platform {
            text-decoration: none;
            cursor: pointer;
        }

        a.rotating-testimonial-platform:hover {
            text-decoration: none;
        }

        .testimonials-feedback-subtext {
            text-align: center;
            margin-top: 20px;
            font-size: 16px;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
        }

        .testimonials-feedback-subtext a {
            color: #a78bfa;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
            position: relative;
        }

        .testimonials-feedback-subtext a:hover {
            color: #c4b5fd;
            text-decoration: underline;
        }

        .rotating-testimonials-navigation {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 16px;
            margin-top: 24px;
            position: relative;
            z-index: 1;
        }

        .rotating-testimonials-nav-btn {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: rgba(255, 255, 255, 0.7);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.2s ease;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .rotating-testimonials-nav-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.25);
            color: #fff;
        }

        .rotating-testimonials-nav-btn:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .rotating-testimonials-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
        }

        .rotating-testimonials-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .rotating-testimonials-dot.active {
            background: #8b5cf6;
            transform: scale(1.2);
        }

        .rotating-testimonials-dot:hover {
            background: rgba(255, 255, 255, 0.4);
        }

        @media (max-width: 768px) {
            .rotating-testimonials-section {
                width: 100%;
                margin-left: 0;
                margin-right: 0;
                padding: 40px 15px;
                overflow-x: hidden;
                box-sizing: border-box;
            }

            .rotating-testimonials-title {
                font-size: 32px;
            }

            .rotating-testimonials-subtitle {
                font-size: 16px;
            }

            .rotating-testimonials-carousel {
                min-height: 294px;
                max-width: 100%;
                width: 100%;
                padding: 20px 0 0 0;
                box-sizing: border-box;
            }

            .rotating-testimonial-card {
                height: auto;
                min-height: 266px;
                left: 0;
                right: 0;
                margin: 0 auto;
                width: 100%;
                max-width: calc(100% - 20px);
                padding: 20px 18px;
                box-sizing: border-box;
            }

            .rotating-testimonials-page {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .rotating-testimonial-name {
                font-size: 15px;
            }

            .rotating-testimonial-location {
                font-size: 12px;
            }

            .rotating-testimonial-quote {
                font-size: 16px;
                line-height: 1.5;
            }

            .rotating-testimonial-quote::before {
                font-size: 32px;
                margin-bottom: 12px;
            }

            .rotating-testimonial-stars {
                font-size: 13px;
            }

            .rotating-testimonial-platform {
                font-size: 10px;
                padding: 5px 10px;
            }
        }

        @media (max-width: 480px) {
            .rotating-testimonials-carousel {
                min-height: 322px;
                padding: 20px 0 0 0;
                width: 100%;
                max-width: 100%;
            }

            .rotating-testimonial-card {
                padding: 18px 14px;
                height: auto;
                min-height: 294px;
                left: 0;
                right: 0;
                width: 100%;
                max-width: calc(100% - 10px);
                box-sizing: border-box;
            }

            .rotating-testimonial-quote {
                font-size: 15px;
            }

            .rotating-testimonial-quote::before {
                font-size: 28px;
                margin-bottom: 10px;
            }

            .rotating-testimonial-name {
                font-size: 14px;
            }
        }

        /* Final CTA Section */
        .final-cta-section {
            width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            text-align: center;
            padding: 60px 40px;
            margin-top: 0;
            margin-bottom: 0;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(168, 85, 247, 0.4) 100%);
            border-top: 3px solid rgba(139, 92, 246, 0.6);
            border-bottom: 3px solid rgba(139, 92, 246, 0.6);
            backdrop-filter: blur(10px);
            box-shadow: 0 0 40px rgba(139, 92, 246, 0.3),
                inset 0 0 60px rgba(139, 92, 246, 0.1);
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .final-cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at center, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .final-cta-content {
            margin: 0 auto;
            width: 100%;
            position: relative;
            z-index: 1;
        }

        .final-cta-title {
            font-family: 'Oxanium', sans-serif;
            font-size: 42px;
            font-weight: 700;
            color: #ffffff;
            margin: 0 0 20px 0;
            text-shadow: 0 0 20px rgba(236, 72, 153, 0.8),
                0 0 30px rgba(139, 92, 246, 0.7),
                0 0 40px rgba(34, 197, 94, 0.6),
                0 0 60px rgba(251, 191, 36, 0.5),
                0 0 80px rgba(6, 182, 212, 0.4);
            line-height: 1.2;
        }

        .final-cta-subtitle {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.9);
            margin: 0 0 40px 0;
            line-height: 1.6;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.3),
                0 0 20px rgba(255, 255, 255, 0.2);
        }

        .final-cta-button {
            display: inline-block;
            background: linear-gradient(180deg, #fcd34d 0%, #fbbf24 50%, #f59e0b 100%);
            color: #1a1a1a;
            font-size: 24px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            padding: 22px 50px;
            border-radius: 10px;
            text-decoration: none;
            transition: all 0.2s ease;
            box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            border: none;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
        }

        @keyframes cta-super-glow {

            0%,
            100% {
                box-shadow: 0 2px 0 rgba(255, 255, 255, 0.6) inset,
                    0 10px 25px rgba(251, 191, 36, 0.9),
                    0 0 60px rgba(251, 191, 36, 0.7),
                    0 0 100px rgba(251, 191, 36, 0.5);
                transform: scale(1);
            }

            50% {
                box-shadow: 0 2px 0 rgba(255, 255, 255, 0.7) inset,
                    0 12px 35px rgba(251, 191, 36, 1),
                    0 0 80px rgba(251, 191, 36, 0.9),
                    0 0 140px rgba(251, 191, 36, 0.7);
                transform: scale(1.04);
            }
        }

        .final-cta-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .final-cta-button:hover::before {
            width: 400px;
            height: 400px;
        }

        .final-cta-button:hover {
            background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(251, 191, 36, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }

        .final-cta-button:active {
            transform: translateY(0);
            box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }

        .final-cta-urgency {
            display: block;
            margin-top: 20px;
            font-size: 16px;
            color: #22c55e;
            font-weight: 600;
            animation: pulse-text 2s ease-in-out infinite;
            text-shadow: 0 0 15px rgba(34, 197, 94, 0.6),
                0 0 30px rgba(34, 197, 94, 0.4);
            text-align: center;
            width: 100%;
        }

        @media (max-width: 768px) {
            .final-cta-section {
                padding: 60px 20px;
                margin-left: -50vw;
                margin-right: -50vw;
            }

            .final-cta-title {
                font-size: 32px;
            }

            .final-cta-subtitle {
                font-size: 18px;
                margin-bottom: 30px;
            }

            .final-cta-button {
                font-size: 20px;
                padding: 20px 40px;
            }

            .final-cta-urgency {
                font-size: 14px;
            }
        }

        /* Coming Soon Section */
        .coming-soon-section {
            width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            padding: 60px 40px;
            margin-top: 60px;
            margin-bottom: 60px;
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.3) 0%, rgba(22, 163, 74, 0.25) 50%, rgba(34, 197, 94, 0.2) 100%);
            border-top: 3px solid rgba(34, 197, 94, 0.6);
            border-bottom: 3px solid rgba(34, 197, 94, 0.6);
            backdrop-filter: blur(10px);
            box-shadow: 0 0 40px rgba(34, 197, 94, 0.3),
                inset 0 0 60px rgba(34, 197, 94, 0.1);
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .coming-soon-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at center, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .coming-soon-content {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            position: relative;
            z-index: 1;
        }

        .coming-soon-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .coming-soon-title {
            font-family: 'Oxanium', sans-serif;
            font-size: 42px;
            font-weight: 800;
            color: #ffffff;
            margin: 0 0 15px 0;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 20px rgba(34, 197, 94, 0.6),
                0 0 40px rgba(34, 197, 94, 0.4),
                0 0 60px rgba(34, 197, 94, 0.3);
        }

        .coming-soon-subtitle {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.85);
            margin: 0;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
        }

        .coming-soon-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .coming-soon-card {
            background: rgba(0, 0, 0, 0.4);
            border: 2px solid rgba(34, 197, 94, 0.3);
            border-radius: 16px;
            padding: 30px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .coming-soon-card::before {
            content: '';
            position: absolute;
            top: -2px;
            right: -2px;
            padding: 6px 20px;
            background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
            color: #ffffff;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-bottom-left-radius: 12px;
            content: 'Landing in the UK soon';
            text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        }

        .coming-soon-card:hover {
            border-color: rgba(34, 197, 94, 0.6);
            background: rgba(0, 0, 0, 0.5);
            transform: translateY(-5px);
            box-shadow: 0 10px 40px rgba(34, 197, 94, 0.3);
        }

        .coming-soon-card-image {
            width: 100%;
            height: 280px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 5px;
            margin-bottom: 15px;
        }

        .coming-soon-card-image img {
            max-width: 100%;
            max-height: 260px;
            object-fit: contain;
            border-radius: 12px;
            filter: drop-shadow(0 4px 15px rgba(34, 197, 94, 0.3)) drop-shadow(0 0 30px rgba(34, 197, 94, 0.4));
        }

        .coming-soon-card-title {
            font-family: 'Oxanium', sans-serif;
            font-size: 26px;
            font-weight: 700;
            color: #22c55e;
            margin: 0;
            letter-spacing: 1px;
            text-shadow: 0 0 15px rgba(34, 197, 94, 0.5);
        }

        .coming-soon-card-specs {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .coming-soon-spec {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.85);
        }

        .coming-soon-spec-icon {
            color: #22c55e;
            font-size: 16px;
            flex-shrink: 0;
        }

        .coming-soon-card-description {
            font-size: 14px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.75);
            margin-top: 5px;
            padding-top: 15px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .coming-soon-notify-btn {
            margin-top: auto;
            padding: 12px 24px;
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(22, 163, 74, 0.2) 100%);
            border: 2px solid rgba(34, 197, 94, 0.4);
            border-radius: 8px;
            color: #22c55e;
            font-size: 14px;
            font-weight: 600;
            text-align: center;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .coming-soon-notify-btn:hover {
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.3) 0%, rgba(22, 163, 74, 0.3) 100%);
            border-color: rgba(34, 197, 94, 0.6);
            color: #ffffff;
            transform: scale(1.02);
        }

        @media (max-width: 768px) {
            .coming-soon-section {
                padding: 60px 20px;
                margin-top: 60px;
                margin-bottom: 60px;
                margin-left: -50vw;
                margin-right: -50vw;
            }

            .coming-soon-title {
                font-size: 32px;
            }

            .coming-soon-subtitle {
                font-size: 18px;
            }

            .coming-soon-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 0 10px;
            }

            .coming-soon-card {
                padding: 25px;
            }
        }

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

        .payment-modal.active {
            display: flex;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .payment-modal-content {
            background: linear-gradient(135deg, rgba(26, 10, 46, 0.98) 0%, rgba(42, 23, 70, 0.98) 100%);
            border: 2px solid rgba(139, 92, 246, 0.4);
            border-radius: 20px;
            padding: 40px;
            max-width: 500px;
            width: 42.5%;
            max-height: 95vh;
            overflow-y: auto;
            position: relative;
            animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(139, 92, 246, 0.3);
        }

        /* Compact Modal Scrollbar */
        .payment-modal-content::-webkit-scrollbar {
            width: 10px;
        }

        .payment-modal-content::-webkit-scrollbar-track {
            background: rgba(0, 0, 0, 0.2);
            border-radius: 10px;
        }

        .payment-modal-content::-webkit-scrollbar-thumb {
            background: rgba(139, 92, 246, 0.5);
            border-radius: 10px;
            border: 2px solid rgba(26, 10, 46, 0.98);
        }

        .payment-modal-content::-webkit-scrollbar-thumb:hover {
            background: rgba(139, 92, 246, 0.7);
        }

        .order-layout {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 32px;
            margin-top: 24px;
        }

        .order-form-column {
            min-width: 0;
        }

        .order-summary-column {
            position: relative;
        }

        .order-summary-sticky {
            position: sticky;
            top: 0;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(139, 92, 246, 0.3);
            border-radius: 16px;
            padding: 24px;
            backdrop-filter: blur(10px);
        }

        .summary-title {
            font-size: 20px;
            font-weight: 600;
            color: #ffffff;
            margin: 0 0 20px 0;
            text-align: center;
        }

        .summary-placeholder {
            text-align: center;
            padding: 40px 20px;
            opacity: 0.6;
        }

        .summary-placeholder-text {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            margin: 0 0 10px 0;
        }

        .summary-placeholder-icon {
            font-size: 32px;
            display: block;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {

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

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

        .summary-content {
            margin-bottom: 20px;
        }

        .summary-item {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: 16px;
            margin-bottom: 12px;
            animation: fadeInRight 0.3s ease;
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(20px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .summary-item-title {
            font-size: 15px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 8px;
        }

        .summary-item-detail {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
            margin: 4px 0;
        }

        .summary-pricing {
            margin-top: 20px;
        }

        .pricing-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 12px 0;
            font-size: 15px;
            color: rgba(255, 255, 255, 0.9);
        }

        .shipping-row {
            color: rgba(255, 255, 255, 0.6);
        }

        .strikethrough {
            text-decoration: line-through;
            color: rgba(255, 255, 255, 0.4);
        }

        .savings-row {
            background: rgba(34, 197, 94, 0.15);
            padding: 12px;
            border-radius: 8px;
            margin: 16px 0;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.02);
            }
        }

        .savings-badge {
            color: #ffffff;
            font-weight: 900;
        }

        .savings-amount {
            color: #10b981;
            font-weight: 700;
            font-size: 16px;
        }

        .pricing-divider {
            height: 2px;
            background: rgba(139, 92, 246, 0.3);
            margin: 16px 0;
        }

        .total-row {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
            padding: 16px 0;
        }

        .total-amount {
            color: #8b5cf6;
            font-size: 24px;
        }

        .free-shipping-badge {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            text-align: center;
            padding: 12px;
            border-radius: 8px;
            font-weight: 700;
            margin-top: 16px;
            animation: shimmer 3s ease-in-out infinite;
        }

        @keyframes shimmer {

            0%,
            100% {
                transform: translateX(0);
                box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
            }

            50% {
                transform: translateX(2px);
                box-shadow: 0 0 30px rgba(16, 185, 129, 0.5);
            }
        }

        /* Celebratory animation for order updates */
        @keyframes celebrate {
            0% {
                transform: scale(1);
                box-shadow: 0 0 0 rgba(139, 92, 246, 0.4);
            }

            25% {
                transform: scale(1.05);
                box-shadow: 0 0 40px rgba(139, 92, 246, 0.8), 0 0 60px rgba(139, 92, 246, 0.4);
            }

            50% {
                transform: scale(1.08);
                box-shadow: 0 0 50px rgba(139, 92, 246, 1), 0 0 80px rgba(139, 92, 246, 0.6);
            }

            75% {
                transform: scale(1.05);
                box-shadow: 0 0 40px rgba(139, 92, 246, 0.8), 0 0 60px rgba(139, 92, 246, 0.4);
            }

            100% {
                transform: scale(1);
                box-shadow: 0 0 0 rgba(139, 92, 246, 0.4);
            }
        }

        .order-summary-sticky.celebrating {
            animation: celebrate 0.6s ease-out;
        }

        /* Cart View */
        .cart-view {
            padding: 20px 0;
        }

        .cart-empty {
            text-align: center;
            padding: 60px 20px;
        }

        .cart-empty-icon {
            font-size: 64px;
            margin-bottom: 20px;
            opacity: 0.5;
        }

        .cart-empty-text {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.6);
        }

        .cart-items {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 24px;
        }

        .cart-item {
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(139, 92, 246, 0.3);
            border-radius: 16px;
            padding: 20px;
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 20px;
            align-items: center;
            transition: all 0.3s ease;
        }

        .cart-item:hover {
            border-color: rgba(139, 92, 246, 0.6);
            background: rgba(255, 255, 255, 0.08);
        }

        .cart-item-details {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .cart-item-name {
            font-size: 18px;
            font-weight: 600;
            color: #ffffff;
        }

        .cart-item-specs {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .cart-item-spec {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .cart-item-spec-label {
            font-weight: 600;
            color: rgba(255, 255, 255, 0.9);
        }

        .cart-item-controls {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 12px;
        }

        .cart-item-price {
            font-size: 20px;
            font-weight: 700;
            color: #8b5cf6;
        }

        .cart-item-actions {
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .quantity-controls {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(139, 92, 246, 0.15);
            border: 1px solid rgba(139, 92, 246, 0.4);
            border-radius: 8px;
            padding: 4px;
        }

        .qty-btn {
            width: 32px;
            height: 32px;
            border: none;
            background: rgba(139, 92, 246, 0.3);
            color: white;
            border-radius: 6px;
            cursor: pointer;
            font-size: 18px;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }

        .qty-btn:hover {
            background: rgba(139, 92, 246, 0.5);
            transform: scale(1.1);
        }

        .qty-btn:active {
            transform: scale(0.95);
        }

        .qty-btn:disabled {
            opacity: 0.3;
            cursor: not-allowed;
            transform: none;
        }

        .qty-display {
            min-width: 40px;
            text-align: center;
            font-size: 16px;
            font-weight: 600;
            color: #ffffff;
        }

        .remove-item-btn {
            width: 32px;
            height: 32px;
            border: none;
            background: rgba(239, 68, 68, 0.2);
            color: #ef4444;
            border-radius: 6px;
            cursor: pointer;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }

        .remove-item-btn:hover {
            background: rgba(239, 68, 68, 0.3);
            transform: scale(1.1);
        }

        .remove-item-btn:active {
            transform: scale(0.95);
        }

        .cart-summary {
            background: rgba(139, 92, 246, 0.1);
            border: 2px solid rgba(139, 92, 246, 0.3);
            border-radius: 16px;
            padding: 24px;
            margin-top: 24px;
        }

        .cart-summary-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 12px 0;
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
        }

        .cart-summary-row.total {
            font-size: 24px;
            font-weight: 700;
            color: #ffffff;
            padding-top: 16px;
            border-top: 2px solid rgba(139, 92, 246, 0.3);
            margin-top: 16px;
        }

        .cart-summary-total-amount {
            color: #8b5cf6;
        }

        .cart-actions {
            display: flex;
            gap: 12px;
            margin-top: 24px;
        }

        .btn-continue {
            width: 100%;
            padding: 16px 32px;
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
        }

        .btn-continue:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
        }

        .btn-continue:active {
            transform: translateY(0);
        }

        .btn-continue:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }

        .btn-add-more {
            padding: 16px 24px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-add-more:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.5);
        }

        .add-to-cart-section {
            background: rgba(255, 255, 255, 0.05);
            border: 2px dashed rgba(139, 92, 246, 0.3);
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 24px;
        }

        .add-to-cart-title {
            font-size: 18px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 16px;
        }

        .add-to-cart-form {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr auto;
            gap: 12px;
            align-items: end;
        }

        .btn-add-to-cart {
            padding: 12px 24px;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .btn-add-to-cart:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
        }

        .btn-add-to-cart:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .btn-add-to-cart.shine {
            animation: shine-glow 0.8s ease-in-out;
        }

        @media (max-width: 768px) {
            .cart-item {
                grid-template-columns: 1fr;
            }

            .cart-item-controls {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }

            .add-to-cart-form {
                grid-template-columns: 1fr;
            }

            .cart-actions {
                flex-direction: column;
            }
        }

        /* Order Confirmation Screen */
        .order-confirmation-view {
            text-align: center;
            padding: 40px 20px;
            max-width: 600px;
            margin: 0 auto;
        }

        .confirmation-icon {
            font-size: 80px;
            animation: scaleIn 0.5s ease-out;
            margin-bottom: 20px;
        }

        @keyframes scaleIn {
            0% {
                transform: scale(0);
                opacity: 0;
            }

            50% {
                transform: scale(1.2);
            }

            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        .confirmation-title {
            font-size: 32px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 12px;
        }

        .confirmation-subtitle {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 32px;
        }

        .proceed-payment-btn {
            padding: 14px 24px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
        }

        .proceed-payment-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
        }

        .proceed-payment-btn:active {
            transform: scale(0.98);
        }

        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .warning-box {
            background: rgba(245, 158, 11, 0.15);
            border: 2px solid #f59e0b;
            border-radius: 12px;
            padding: 24px;
            margin: 24px 0;
            text-align: left;
        }

        .warning-title {
            font-size: 18px;
            font-weight: 700;
            color: #fbbf24;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .warning-text {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
            margin-bottom: 8px;
        }

        .countdown-box {
            background: rgba(139, 92, 246, 0.2);
            border: 2px solid #8b5cf6;
            border-radius: 12px;
            padding: 20px;
            margin: 24px 0;
        }

        .countdown-text {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 12px;
        }

        .countdown-timer {
            font-size: 48px;
            font-weight: 700;
            color: #8b5cf6;
            font-family: 'Courier New', monospace;
            animation: pulse 1s ease-in-out infinite;
        }

        #countdownTimer {
            font-size: 1.3em;
            display: inline-block;
            animation: heartbeat 1.5s ease-in-out infinite;
            color: #ef4444;
        }

        @keyframes heartbeat {
            0% {
                transform: scale(1);
            }

            14% {
                transform: scale(1.15);
            }

            28% {
                transform: scale(1);
            }

            42% {
                transform: scale(1.15);
            }

            70% {
                transform: scale(1);
            }

            100% {
                transform: scale(1);
            }
        }

        .help-section {
            margin-top: 32px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
        }

        .help-title {
            font-size: 16px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 12px;
        }

        .help-text {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
        }

        .help-text a {
            color: #8b5cf6;
            text-decoration: none;
            font-weight: 600;
        }

        .help-text a:hover {
            text-decoration: underline;
        }

        @keyframes slideUp {
            from {
                transform: translateY(50px) scale(0.9);
                opacity: 0;
            }

            to {
                transform: translateY(0) scale(1);
                opacity: 1;
            }
        }

        .payment-modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 35px;
            height: 35px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 20px;
            color: rgba(255, 255, 255, 0.7);
            transition: all 0.3s ease;
        }

        .payment-modal-close:hover {
            background: rgba(255, 255, 255, 0.2);
            color: #ffffff;
            transform: rotate(90deg);
        }

        .payment-modal-header {
            text-align: center;
            margin-bottom: 20px;
        }

        .payment-modal-title {
            font-family: 'Oxanium', sans-serif;
            font-size: 28px;
            font-weight: 800;
            color: #ffffff;
            margin: 0 0 8px 0;
            text-shadow: 0 0 20px rgba(255, 255, 255, 0.5),
                0 0 40px rgba(139, 92, 246, 0.4);
        }

        .payment-modal-subtitle {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
            margin: 0;
        }

        .payment-modal-email-link:hover {
            text-decoration: underline;
        }

        .payment-modal-options {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .payment-option {
            background: rgba(0, 0, 0, 0.3);
            border: 2px solid rgba(139, 92, 246, 0.3);
            border-radius: 12px;
            padding: 16px 20px;
            display: flex;
            align-items: center;
            gap: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            position: relative;
            overflow: hidden;
        }

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

        .payment-option:hover::before {
            left: 100%;
        }

        .payment-option:hover {
            border-color: rgba(139, 92, 246, 0.6);
            background: rgba(0, 0, 0, 0.4);
            transform: translateX(5px);
            box-shadow: 0 8px 24px rgba(139, 92, 246, 0.2);
        }

        .payment-option-best {
            border: 2px solid rgba(34, 197, 94, 0.6);
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(22, 163, 74, 0.1) 100%);
            box-shadow: 0 8px 32px rgba(34, 197, 94, 0.3);
        }

        .payment-option-best::after {
            content: '⭐ BEST DEAL';
            position: absolute;
            top: -2px;
            right: -2px;
            background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
            color: #ffffff;
            font-size: 11px;
            font-weight: 700;
            padding: 6px 16px;
            border-bottom-left-radius: 12px;
            text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
            letter-spacing: 1px;
        }

        .payment-option-best:hover {
            border-color: rgba(34, 197, 94, 0.8);
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(22, 163, 74, 0.15) 100%);
            box-shadow: 0 12px 40px rgba(34, 197, 94, 0.4);
            transform: translateX(8px) scale(1.02);
        }

        .payment-option-discount::after {
            content: '12% OFF';
            position: absolute;
            top: -2px;
            right: -2px;
            background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
            color: #ffffff;
            font-size: 11px;
            font-weight: 700;
            padding: 6px 16px;
            border-bottom-left-radius: 12px;
            text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
            letter-spacing: 1px;
            box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
        }

        .payment-option-icon {
            width: 48px;
            height: 48px;
            background: rgba(139, 92, 246, 0.2);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .payment-option-best .payment-option-icon {
            background: rgba(34, 197, 94, 0.2);
        }

        .payment-option-icon svg {
            width: 26px;
            height: 26px;
            color: #8b5cf6;
        }

        .payment-option-best .payment-option-icon svg {
            color: #22c55e;
        }

        .payment-option-content {
            flex: 1;
        }

        .payment-option-title {
            font-family: 'Oxanium', sans-serif;
            font-size: 17px;
            font-weight: 700;
            color: #ffffff;
            margin: 0 0 4px 0;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.3),
                0 0 25px rgba(34, 197, 94, 0.6),
                0 0 50px rgba(34, 197, 94, 0.4);
        }

        .payment-option-best .payment-option-title {
            color: #22c55e;
            text-shadow: 0 0 15px rgba(34, 197, 94, 0.5);
        }

        .payment-option-desc {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
            margin: 0 0 4px 0;
            line-height: 1.3;
        }

        .payment-option-benefit {
            font-size: 12px;
            color: #22c55e;
            font-weight: 600;
            margin: 0;
        }

        .desktop-only {
            display: inline;
        }

        .mobile-only {
            display: none;
        }

        @media (max-width: 768px) {
            .desktop-only {
                display: none;
            }

            .mobile-only {
                display: inline;
            }
        }

        .payment-option-arrow {
            font-size: 24px;
            color: rgba(255, 255, 255, 0.5);
            transition: all 0.3s ease;
        }

        .payment-option:hover .payment-option-arrow {
            color: #ffffff;
            transform: translateX(5px);
        }

        @media (max-width: 768px) {
            .payment-modal-content {
                padding: 30px 20px;
                width: 95%;
                max-height: 90vh;
                border-radius: 16px;
            }

            .order-layout {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .order-summary-column {
                order: -1;
            }

            .order-summary-sticky {
                position: relative;
            }

            .payment-modal-title {
                font-size: 26px;
            }

            .payment-option {
                padding: 20px;
                gap: 15px;
            }

            .payment-option-icon {
                width: 50px;
                height: 50px;
            }

            .payment-option-icon svg {
                width: 26px;
                height: 26px;
            }

            .payment-option-title {
                font-size: 18px;
            }

            .payment-option-desc {
                font-size: 13px;
            }

            .payment-option-benefit {
                font-size: 12px;
            }
        }

        /* Console Selection Cards */
        .console-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .console-card {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(168, 85, 247, 0.15) 100%);
            border: 2px solid rgba(139, 92, 246, 0.3);
            border-radius: 16px;
            padding: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .console-card:hover {
            transform: translateY(-4px);
            border-color: rgba(139, 92, 246, 0.6);
            box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
        }

        .console-card.selected {
            border-color: #10b981;
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.2) 100%);
            box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
        }

        .console-card.selected::before {
            content: '✓';
            position: absolute;
            top: 12px;
            right: 12px;
            background: #10b981;
            color: white;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 16px;
        }

        .console-card-image {
            width: 100%;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            font-size: 64px;
        }

        .console-card-name {
            font-family: 'Oxanium', sans-serif;
            font-size: 20px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 12px;
            text-align: center;
        }

        .console-card-price {
            text-align: center;
            margin-bottom: 16px;
        }

        .console-card-price-main {
            font-size: 28px;
            font-weight: 700;
            color: #fbbf24;
            margin-bottom: 4px;
        }

        .console-card-price-old {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
            text-decoration: line-through;
            margin-bottom: 4px;
        }

        .console-card-savings {
            font-size: 13px;
            color: #10b981;
            font-weight: 600;
        }

        .console-card-colors {
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid rgba(139, 92, 246, 0.3);
        }

        .console-card-colors-label {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 10px;
            text-align: center;
        }

        .color-swatches {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: center;
        }

        .color-swatch {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            border: 2px solid transparent;
            cursor: pointer;
            transition: all 0.2s ease;
            position: relative;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            color: rgba(255, 255, 255, 0.8);
            text-align: center;
            padding: 4px;
            overflow: hidden;
        }

        .color-swatch:hover {
            transform: scale(1.1);
            border-color: rgba(139, 92, 246, 0.5);
        }

        .color-swatch.selected {
            border-color: #10b981;
            box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.3);
        }

        .color-swatch.selected::after {
            content: '✓';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #10b981;
            font-weight: 700;
            font-size: 16px;
            text-shadow: 0 0 4px rgba(0, 0, 0, 0.8);
        }

        @media (max-width: 768px) {
            .console-cards-grid {
                grid-template-columns: 1fr;
            }

            .console-card {
                padding: 20px;
            }

            .color-swatch {
                width: 32px;
                height: 32px;
            }
        }

        /* Pulse animation for highlighted card */
        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
                box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
            }

            50% {
                transform: scale(1.03);
                box-shadow: 0 12px 32px rgba(139, 92, 246, 0.5);
            }
        }

        /* Order Form Styles */
        .order-form {
            margin-top: 20px;
        }

        .form-group {
            margin-bottom: 18px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 18px;
        }

        .form-row .form-group {
            margin-bottom: 0;
        }

        @media (max-width: 768px) {
            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .form-row .form-group {
                margin-bottom: 18px;
            }
        }

        .form-label {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 15px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 8px;
        }

        .label-icon {
            font-size: 18px;
        }

        .form-select,
        .form-input {
            width: 100%;
            padding: 14px 16px;
            font-size: 15px;
            font-family: 'Inter', sans-serif;
            background: rgba(255, 255, 255, 0.08);
            border: 2px solid rgba(139, 92, 246, 0.3);
            border-radius: 10px;
            color: #ffffff;
            transition: all 0.3s ease;
        }

        .form-select:focus,
        .form-input:focus {
            outline: none;
            border-color: rgba(139, 92, 246, 0.6);
            background: rgba(255, 255, 255, 0.12);
            box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
        }

        .form-input.error,
        .form-select.error {
            border-color: #ef4444;
            background: rgba(239, 68, 68, 0.1);
            animation: shake 0.4s ease;
        }

        .form-input.error:focus,
        .form-select.error:focus {
            border-color: #ef4444;
            box-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
        }

        @keyframes shake {

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

            25% {
                transform: translateX(-10px);
            }

            75% {
                transform: translateX(10px);
            }
        }

        .error-message {
            font-size: 13px;
            color: #ef4444;
            margin: 6px 0 0 0;
            display: flex;
            align-items: center;
            gap: 4px;
            font-weight: 500;
        }

        .error-message::before {
            content: '⚠️';
            font-size: 14px;
        }

        textarea.form-input {
            resize: vertical;
            min-height: 100px;
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
        }

        .form-select option {
            background: #1a0a2e;
            color: #ffffff;
        }

        .form-help {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
            margin: 6px 0 0 0;
        }

        .checkbox-label {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            cursor: pointer;
            font-size: 15px;
            color: #ffffff;
            padding: 12px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            transition: background 0.3s ease;
        }

        .checkbox-label:hover {
            background: rgba(255, 255, 255, 0.08);
        }

        .form-checkbox {
            width: 20px;
            height: 20px;
            margin-top: 2px;
            cursor: pointer;
            accent-color: #8b5cf6;
            flex-shrink: 0;
        }

        .shipping-info {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin: 24px 0;
            padding: 20px;
            background: rgba(34, 197, 94, 0.1);
            border: 2px solid rgba(34, 197, 94, 0.3);
            border-radius: 12px;
        }

        .shipping-badge {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .badge-icon {
            font-size: 24px;
            flex-shrink: 0;
        }

        .badge-content {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .badge-content strong {
            color: #22c55e;
            font-size: 15px;
        }

        .badge-content span {
            color: rgba(255, 255, 255, 0.7);
            font-size: 13px;
        }

        .next-steps {
            margin: 20px 0;
            padding: 16px;
            background: rgba(139, 92, 246, 0.1);
            border: 2px solid rgba(139, 92, 246, 0.3);
            border-radius: 12px;
        }

        .next-steps-title {
            color: #a78bfa;
            font-size: 15px;
            font-weight: 700;
            margin: 0 0 12px 0;
        }

        .steps-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .steps-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 10px;
            color: rgba(255, 255, 255, 0.9);
            font-size: 13px;
            line-height: 1.4;
        }

        .steps-list li:last-child {
            margin-bottom: 0;
        }

        .step-number {
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 24px;
            height: 24px;
            background: rgba(139, 92, 246, 0.3);
            border-radius: 50%;
            color: #a78bfa;
            font-size: 12px;
            font-weight: 700;
            flex-shrink: 0;
        }

        .step-text {
            flex: 1;
        }

        .order-submit-btn {
            width: 100%;
            padding: 16px 24px;
            font-size: 17px;
            font-weight: 700;
            font-family: 'Oxanium', sans-serif;
            color: #ffffff;
            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;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
        }

        .order-submit-btn:hover:not(:disabled) {
            background: linear-gradient(135deg, rgba(139, 92, 246, 1) 0%, rgba(139, 92, 246, 0.8) 100%);
            border-color: rgba(139, 92, 246, 1);
            box-shadow: 0 0 40px rgba(139, 92, 246, 0.6);
            transform: translateY(-2px);
        }

        .order-submit-btn:disabled {
            background: linear-gradient(135deg, rgba(100, 100, 100, 0.5) 0%, rgba(80, 80, 80, 0.4) 100%);
            border-color: rgba(100, 100, 100, 0.5);
            color: rgba(255, 255, 255, 0.5);
            cursor: not-allowed;
            box-shadow: none;
            opacity: 0.6;
            transform: none;
        }

        .order-submit-btn:disabled .btn-icon {
            opacity: 0.5;
        }

        .btn-icon {
            font-size: 20px;
        }

        .form-footer {
            text-align: center;
            margin-top: 16px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
        }

        .email-link {
            color: #fbbf24;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.2s;
        }

        .email-link:hover {
            color: #f59e0b;
        }

        /* Success View Styles */
        .success-content {
            text-align: center;
            padding: 40px 20px;
        }

        .success-icon {
            font-size: 72px;
            margin-bottom: 20px;
            animation: successPop 0.5s ease-out;
        }

        @keyframes successPop {
            0% {
                transform: scale(0);
            }

            50% {
                transform: scale(1.2);
            }

            100% {
                transform: scale(1);
            }
        }

        .success-title {
            font-size: 28px;
            font-weight: 800;
            color: #22c55e;
            margin: 0 0 16px 0;
            text-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
        }

        .success-message {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            margin: 0 0 32px 0;
            line-height: 1.6;
        }

        .success-message strong {
            color: #fbbf24;
        }

        .success-steps {
            background: rgba(139, 92, 246, 0.1);
            border: 2px solid rgba(139, 92, 246, 0.3);
            border-radius: 12px;
            padding: 24px;
            margin-bottom: 24px;
            text-align: left;
        }

        .success-steps h4 {
            color: #a78bfa;
            font-size: 16px;
            font-weight: 700;
            margin: 0 0 16px 0;
        }

        .success-steps ol {
            margin: 0;
            padding-left: 24px;
            color: rgba(255, 255, 255, 0.9);
        }

        .success-steps li {
            margin-bottom: 12px;
            line-height: 1.6;
        }

        .success-steps li:last-child {
            margin-bottom: 0;
        }

        .success-note {
            background: rgba(251, 191, 36, 0.1);
            border: 2px solid rgba(251, 191, 36, 0.3);
            border-radius: 12px;
            padding: 16px;
            margin-bottom: 24px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.9);
        }

        .success-note strong {
            color: #fbbf24;
        }

        .success-close-btn {
            padding: 14px 32px;
            font-size: 16px;
            font-weight: 700;
            font-family: 'Oxanium', sans-serif;
            color: #ffffff;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.6) 0%, rgba(139, 92, 246, 0.4) 100%);
            border: 2px solid rgba(139, 92, 246, 0.6);
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .success-close-btn:hover {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.8) 0%, rgba(139, 92, 246, 0.6) 100%);
            border-color: rgba(139, 92, 246, 0.8);
            transform: translateY(-2px);
        }

        /* Footer Styles */
        .footer {
            text-align: center;
            padding: 60px 20px 40px;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
            margin-top: 80px;
        }

        .footer-content {
            margin: 0 auto;
        }

        .footer-title {
            font-family: 'Oxanium', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: #fbbf24;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 24px;
            text-shadow: 0 0 15px rgba(251, 191, 36, 0.6),
                0 0 30px rgba(251, 191, 36, 0.4),
                0 0 45px rgba(251, 191, 36, 0.3);
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 16px 32px;
            max-width: 900px;
            margin: 0 auto 32px;
            padding: 0 20px;
        }

        .footer-link {
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            text-shadow: 0 0 8px rgba(255, 255, 255, 0.2),
                0 0 12px rgba(255, 255, 255, 0.1);
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 8px 12px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid transparent;
        }

        .footer-link:hover {
            color: #fbbf24;
            background: rgba(251, 191, 36, 0.1);
            border-color: rgba(251, 191, 36, 0.3);
            transform: translateY(-2px);
        }

        .footer-link-icon {
            font-size: 16px;
            flex-shrink: 0;
        }

        .footer-copyright {
            color: rgba(255, 255, 255, 0.4);
            font-size: 13px;
            line-height: 1.8;
            margin: 24px 0 0 0;
            padding-top: 24px;
            text-shadow: 0 0 8px rgba(255, 255, 255, 0.15),
                0 0 12px rgba(255, 255, 255, 0.08);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-email-link {
            transition: all 0.3s ease;
        }

        .footer-email-link:hover {
            color: #fcd34d !important;
            text-shadow: 0 0 10px rgba(251, 191, 36, 0.6),
                0 0 20px rgba(251, 191, 36, 0.4);
        }

        @media (max-width: 768px) {
            .footer-links {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .footer {
                padding: 40px 20px 30px;
                margin-top: 50px;
            }

            .footer-title {
                font-size: 16px;
                margin-bottom: 20px;
            }

            .footer-link {
                min-height: 48px;
                display: flex;
                align-items: center;
                padding: 12px 16px;
                font-size: 15px;
            }

            .footer-link-icon {
                font-size: 20px;
                margin-right: 12px;
            }
        }

        /* Extra small mobile - enhance touch targets */
        @media (max-width: 480px) {
            .footer-link {
                padding: 14px 16px;
                min-height: 52px;
            }

            .floating-cta-title {
                font-size: 13px;
            }

            .floating-btn {
                padding: 10px 14px;
                font-size: 12px;
            }
        }

        @media (min-width: 768px) {
            .hero-background {
                height: 67vh;
            }

            .hero-content {
                padding-top: 0;
            }

            .profile h1 a .logo-image {
                max-width: 450px;
            }

            .logo-plus {
                font-size: 90px;
                margin-left: -20px;
                margin-bottom: 15px;
            }

            .profile p {
                font-size: 18px;
            }

            .profile {
                padding: 30px 20px 60px;
            }

            .hero-stat-number {
                font-size: 96px;
            }

            .hero-stat-plus {
                font-size: clamp(40px, 8vw, 64px);
            }

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

        @media (max-width: 480px) {
            .profile h1 a .logo-image {
                max-width: 280px;
            }

            .logo-plus {
                font-size: 60px;
                margin-left: -15px;
                margin-bottom: 10px;
            }

            .profile p {
                font-size: 14px;
            }

            .hero-stat {
                justify-content: center;
            }

            .hero-stat-number {
                font-size: 48px;
                min-width: auto;
                text-align: center;
            }

            .hero-stat-plus {
                font-size: clamp(24px, 6vw, 32px);
            }

            .hero-stat-label {
                font-size: clamp(14px, 3vw, 16px);
                letter-spacing: clamp(1px, 0.3vw, 2px);
                width: 100%;
                text-align: center;
                margin: 12px 0 0 0;
            }

            .profile {
                padding: 16px 16px 32px;
            }

            .cta-button-hero {
                padding: 16px 28px;
                font-size: 16px;
            }

            .social-icon-hero {
                width: 36px;
                height: 36px;
            }

            .social-icon-hero svg {
                width: 18px;
                height: 18px;
            }

            .marketplace-button {
                font-size: 12px;
                padding: 14px 10px;
            }
        }

        /* Reduced motion for accessibility and performance */
        @media (prefers-reduced-motion: reduce) {

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

            .marquee {
                animation: none;
            }

            .carousel-slide {
                transition: none;
            }
        }

        /* Chatwoot Widget - Purple style matching site theme */
        .woot-widget-bubble {
            width: 50px !important;
            height: 50px !important;
            left: 20px !important;
            right: auto !important;
            background: rgba(139, 92, 246, 0.2) !important;
            border-radius: 50% !important;
            border: 2px solid rgba(139, 92, 246, 0.4) !important;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
            backdrop-filter: blur(10px) !important;
            transition: all 0.3s ease !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            position: fixed !important;
            bottom: 20px !important;
            left: 20px !important;
            right: auto !important;
            z-index: 99999 !important;
        }

        .woot-widget-bubble.woot-elements--left {
            left: 20px !important;
            right: auto !important;
        }

        .woot--bubble-holder {
            left: 20px !important;
            right: auto !important;
        }

        /* Show X when chat is open */
        .woot-widget-bubble.woot-elements--close svg,
        .woot-widget-bubble.woot-elements--close img,
        .woot-widget-bubble.woot-widget-bubble--open svg,
        .woot-widget-bubble.woot-widget-bubble--open img {
            display: none !important;
        }

        .woot-widget-bubble.woot-elements--close,
        .woot-widget-bubble.woot-widget-bubble--open {
            position: relative !important;
        }

        .woot-widget-bubble.woot-elements--close::after,
        .woot-widget-bubble.woot-widget-bubble--open::after {
            content: '✕' !important;
            position: absolute !important;
            inset: 0 !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            font-size: 22px !important;
            color: #ffffff !important;
            font-weight: 300 !important;
        }

        .woot-widget-bubble svg,
        .woot-widget-bubble img {
            width: 21px !important;
            height: 21px !important;
            max-width: none !important;
            max-height: none !important;
            min-width: 21px !important;
            min-height: 21px !important;
        }

        .woot-widget-bubble i {
            font-size: 21px !important;
        }

        .woot-widget-bubble:hover {
            background: rgba(139, 92, 246, 0.4) !important;
            box-shadow: 0 4px 20px rgba(139, 92, 246, 0.5), 0 0 30px rgba(139, 92, 246, 0.4) !important;
            transform: scale(1.1) !important;
        }

        /* Hide chatwoot unread badge/counter */
        .woot--bubble-holder__unread,
        .woot-widget-bubble .unread-badge,
        .woot-widget-bubble .badge,
        [class^="woot"][class*="unread"],
        [class^="woot"][class*="badge"],
        .woot-widget-holder [class*="unread"],
        .woot-widget-holder [class*="badge"] {
            display: none !important;
            visibility: hidden !important;
        }

        @media (max-width: 768px) {
            .woot-widget-bubble {
                width: 45px !important;
                height: 45px !important;
                bottom: 15px !important;
                left: 15px !important;
                right: auto !important;
            }

            .woot-widget-bubble svg,
            .woot-widget-bubble img {
                width: 18px !important;
                height: 18px !important;
                max-width: none !important;
                max-height: none !important;
                min-width: 18px !important;
                min-height: 18px !important;
            }

            .woot-widget-bubble i {
                font-size: 18px !important;
            }
        }

        /* Site Navigation */
        .site-nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100000;
            background: rgba(10, 1, 24, 0.95);
            border-bottom: 1px solid rgba(139, 92, 246, 0.3);
            transform: translateY(-100%);
            transition: transform 0.3s ease;
        }

        .site-nav.visible {
            transform: translateY(0);
        }

        .site-nav-inner {
            max-width: 1400px;
            margin: 0 auto;
            padding: 12px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .site-nav-logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .site-nav-logo img {
            height: 32px;
            width: auto;
        }

        .site-nav-links {
            display: flex;
            gap: 8px;
            align-items: center;
            flex-wrap: wrap;
            flex: 1;
            justify-content: center;
        }

        .site-nav-link {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 13px;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 6px;
            transition: all 0.2s ease;
            white-space: nowrap;
        }

        .site-nav-link:hover {
            color: #fff;
            background: rgba(139, 92, 246, 0.2);
        }

        .site-nav-link.active {
            color: #fbbf24;
            background: rgba(251, 191, 36, 0.1);
        }

        .site-nav-cta {
            background: linear-gradient(180deg, #fcd34d 0%, #fbbf24 50%, #f59e0b 100%);
            color: #1a1a1a;
            font-family: 'Oxanium', sans-serif;
            font-weight: 700;
            padding: 8px 16px;
            border-radius: 6px;
            text-decoration: none;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.2s ease;
            cursor: pointer;
            border: none;
            position: relative;
            overflow: hidden;
        }

        .site-nav-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            animation: nav-cta-shine 4s ease-in-out infinite;
        }

        @keyframes nav-cta-shine {
            0%, 85%, 100% { left: -100%; }
            90% { left: 100%; }
        }

        .site-nav-cta:hover {
            transform: translateY(-1px);
            background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
        }

        /* Desktop CTA - hidden on mobile */
        .site-nav-desktop-cta {
            display: block;
            flex-shrink: 0;
            margin-left: auto;
        }

        @media (max-width: 768px) {
            .site-nav-desktop-cta {
                display: none;
            }
            .site-nav-inner {
                padding: 10px 16px;
                justify-content: space-between;
            }

            .site-nav-links {
                gap: 4px;
            }

            .site-nav-link {
                font-size: 11px;
                padding: 6px 8px;
            }

            .site-nav-logo img {
                height: 24px;
            }

            .site-nav-cta {
                font-size: 11px;
                padding: 6px 12px;
            }
        }

        /* Mobile controls - hidden on desktop */
        .site-nav-mobile-controls {
            display: none;
            align-items: center;
            gap: 12px;
        }

        .site-nav-mobile-menu {
            display: none;
            background: rgba(139, 92, 246, 0.2);
            border: 1px solid rgba(139, 92, 246, 0.4);
            color: white;
            font-family: 'Oxanium', sans-serif;
            font-size: 12px;
            font-weight: 500;
            cursor: pointer;
            padding: 8px 14px;
            border-radius: 8px;
            transition: all 0.2s ease;
        }

        .site-nav-mobile-menu:hover,
        .site-nav-mobile-menu:active {
            background: rgba(139, 92, 246, 0.3);
            border-color: rgba(139, 92, 246, 0.6);
        }

        /* Mobile Buy Now CTA - gold style with shine */
        .site-nav-mobile-cta {
            display: none;
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            color: #000;
            font-weight: 700;
            padding: 8px 16px;
            border-radius: 6px;
            text-decoration: none;
            font-size: 13px;
            transition: all 0.2s ease;
            position: relative;
            overflow: hidden;
        }

        .site-nav-mobile-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            animation: cta-shine 3s ease-in-out infinite;
            animation-delay: calc(var(--shine-delay, 0) * 1s);
        }

        @keyframes cta-shine {
            0%, 100% { left: -100%; }
            50% { left: 100%; }
        }

        /* Mobile dropdown menu */
        .site-nav-mobile-dropdown {
            display: none;
            flex-direction: column;
            background: rgba(10, 1, 24, 0.98);
            border-top: 1px solid rgba(139, 92, 246, 0.3);
            padding: 16px;
            gap: 4px;
        }

        .site-nav-mobile-dropdown.open {
            display: flex;
        }

        .site-nav-mobile-link {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            padding: 12px 16px;
            border-radius: 8px;
            transition: all 0.2s ease;
        }

        .site-nav-mobile-link:hover,
        .site-nav-mobile-link:active {
            color: #fff;
            background: rgba(139, 92, 246, 0.2);
        }

        @media (max-width: 768px) {
            .site-nav-links {
                display: none;
            }

            .site-nav-mobile-controls {
                display: flex;
            }

            .site-nav-mobile-cta {
                display: block;
                font-size: 12px;
                padding: 8px 14px;
            }

            .site-nav-mobile-menu {
                display: block;
            }

            /* Hero trust line mobile */
            .hero-trust-line {
                font-size: 12px !important;
                gap: 6px 12px !important;
            }

            .hero-quick-links {
                gap: 4px;
            }

            .hero-quick-links a {
                font-size: 10px;
                padding: 4px 8px;
            }

        }

        /* Hero Quick Links - Always single line */
        .hero-quick-links {
            display: flex;
            justify-content: center;
            gap: 6px;
            margin: 16px auto;
            padding: 0 10px;
            white-space: nowrap;
        }

        .hero-quick-links a {
            color: #fff;
            text-decoration: none;
            font-size: clamp(9px, 1.4vw, 13px);
            padding: clamp(4px, 0.6vw, 6px) clamp(6px, 1.2vw, 14px);
            background: rgba(139, 92, 246, 0.2);
            border: 1px solid rgba(139, 92, 246, 0.4);
            border-radius: 20px;
            transition: all 0.2s;
            flex-shrink: 1;
            text-align: center;
        }

        .hero-quick-links a:hover {
            background: rgba(139, 92, 246, 0.35);
            border-color: rgba(139, 92, 246, 0.6);
        }

        @media (max-width: 480px) {
            .hero-quick-links {
                padding: 0 5px;
            }

            .hero-quick-links a {
                font-size: 8px;
                padding: 3px 5px;
            }

            .site-nav-mobile-cta {
                font-size: 11px;
                padding: 6px 10px;
            }

            .site-nav-mobile-menu {
                font-size: 11px;
                padding: 6px 10px;
            }

            .hero-trust-line {
                font-size: 11px !important;
            }
        }
