        /* 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: 80px 0;
            overflow: hidden;
            position: relative;
            margin-left: calc(-50vw + 50%);
            margin-right: calc(-50vw + 50%);
            margin-top: 0;
            margin-bottom: 0;
            min-height: 100vh;
            min-height: 100svh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-sizing: border-box;
        }

        /* 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 30s 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 36s 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.1);
            border-radius: 24px;
            padding: 50px 40px;
            max-width: 900px;
            margin: 0 auto 50px;
            position: relative;
            z-index: 1;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }

        .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.05);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            min-width: 140px;
            position: relative;
            overflow: hidden;
        }

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

        .emulated-stat-item:hover {
            transform: translateY(-8px) scale(1.04);
            background: rgba(139, 92, 246, 0.15);
            border-color: rgba(139, 92, 246, 0.6);
            box-shadow: 0 16px 50px rgba(139, 92, 246, 0.3), 0 0 35px rgba(139, 92, 246, 0.2);
        }

        .emulated-stat-item:hover::before {
            opacity: 1;
            background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.8), transparent);
        }

        .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(139, 92, 246, 0.2);
            border-radius: 20px;
            padding: 35px 40px;
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            box-shadow: 0 4px 20px rgba(139, 92, 246, 0.08);
        }

        .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: 0;
            width: 50%;
            height: 200%;
            background: linear-gradient(90deg,
                    transparent,
                    rgba(255, 255, 255, 0.8),
                    transparent);
            transform: skewX(-25deg) translateX(-200%);
            will-change: transform;
            animation: gloss-shine 2s ease-in-out;
            animation-delay: var(--shine-delay, 3s);
            animation-iteration-count: 1;
            pointer-events: none;
        }

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

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

        .emulated-cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(251, 191, 36, 0.6),
                0 0 50px rgba(251, 191, 36, 0.35),
                0 0 80px rgba(251, 191, 36, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }

        .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(3, 1fr);
            gap: 24px;
            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: 1px solid rgba(255, 255, 255, 0.15);
            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 4s 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 8px 35px rgba(251, 191, 36, 0.6),
                    0 0 55px rgba(139, 92, 246, 0.5),
                    0 0 75px rgba(236, 72, 153, 0.35),
                    inset 0 1px 0 rgba(255, 255, 255, 0.35);
            }
        }

        .console-card:hover {
            border-color: rgba(139, 92, 246, 0.5);
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(251, 191, 36, 0.25) 50%, rgba(236, 72, 153, 0.25) 100%);
            box-shadow: 0 12px 40px rgba(139, 92, 246, 0.2), 0 0 30px rgba(139, 92, 246, 0.1);
            transform: translateY(-10px) scale(1.12);
            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 35px rgba(251, 191, 36, 0.9)) drop-shadow(0 0 55px rgba(139, 92, 246, 0.8)) drop-shadow(0 0 75px rgba(236, 72, 153, 0.7)) drop-shadow(0 0 100px rgba(34, 197, 94, 0.5)) brightness(1.35) saturate(1.5);
            transform: scale(1.9);
        }

        .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 1.6s 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 8px 30px rgba(139, 92, 246, 0.4),
                    0 0 45px rgba(139, 92, 246, 0.15),
                    inset 0 1px 0 rgba(255, 255, 255, 0.2);
            }
        }

        .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.3) 0%, rgba(236, 72, 153, 0.25) 50%, rgba(139, 92, 246, 0.22) 100%);
            box-shadow: 0 12px 45px rgba(251, 191, 36, 0.9),
                0 0 70px rgba(236, 72, 153, 0.8),
                0 0 95px rgba(139, 92, 246, 0.7),
                0 0 120px rgba(34, 197, 94, 0.45),
                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;
        }

        .game-icon img {
            width: 143px;
            height: 143px;
            object-fit: contain;
            border-radius: 12px;
            filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 15px rgba(var(--cr, 139), var(--cg, 92), var(--cb, 246), 0.25));
            transition: filter 0.4s ease;
        }

        .classic-game-flip-card:hover .game-icon img {
            filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 25px rgba(var(--cr, 139), var(--cg, 92), var(--cb, 246), 0.5)) drop-shadow(0 0 40px rgba(var(--cr, 139), var(--cg, 92), var(--cb, 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(-10px) scale(1.04);
        }

        .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 1.6s 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;
            border: 1px solid rgba(255, 255, 255, 0.1);
            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.3s ease;
            overflow: hidden;
            box-shadow:
                0 0 12px rgba(var(--cr, 139), var(--cg, 92), var(--cb, 246), 0.3),
                0 0 25px rgba(var(--cr, 139), var(--cg, 92), var(--cb, 246), 0.15),
                0 4px 15px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.08);
        }

        /* Top highlight line using card color */
        .classic-game-flip-front::before,
        .classic-game-flip-back::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg,
                transparent,
                rgba(var(--cr, 139), var(--cg, 92), var(--cb, 246), 0.7),
                transparent);
            z-index: 3;
            transition: opacity 0.4s ease;
        }

        /* Animated glow ring */
        .classic-game-flip-front::after,
        .classic-game-flip-back::after {
            content: '';
            position: absolute;
            top: -1px; right: -1px; bottom: -1px; left: -1px;
            border-radius: 17px;
            box-shadow:
                0 0 15px rgba(var(--cr, 139), var(--cg, 92), var(--cb, 246), 0.2),
                0 0 30px rgba(var(--cr, 139), var(--cg, 92), var(--cb, 246), 0.1);
            animation: card-glow-pulse 4s ease-in-out infinite;
            pointer-events: none;
            z-index: 0;
        }

        @keyframes card-glow-pulse {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; transform: scale(1.01); }
        }

        .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(var(--cr, 139), var(--cg, 92), var(--cb, 246), 0.9);
            box-shadow:
                0 0 25px rgba(var(--cr, 139), var(--cg, 92), var(--cb, 246), 0.6),
                0 0 55px rgba(var(--cr, 139), var(--cg, 92), var(--cb, 246), 0.35),
                0 0 85px rgba(var(--cr, 139), var(--cg, 92), var(--cb, 246), 0.2),
                0 12px 35px rgba(0, 0, 0, 0.45),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            transform: translateY(-8px);
        }

        .classic-game-flip-card:hover .classic-game-flip-front::before,
        .classic-game-flip-card:hover .classic-game-flip-back::before {
            opacity: 1;
            background: linear-gradient(90deg,
                transparent,
                rgba(var(--cr, 139), var(--cg, 92), var(--cb, 246), 1),
                transparent);
        }

        .classic-game-flip-card:hover .classic-game-flip-front::after,
        .classic-game-flip-card:hover .classic-game-flip-back::after {
            animation: none;
            opacity: 1;
            box-shadow:
                0 0 25px rgba(var(--cr, 139), var(--cg, 92), var(--cb, 246), 0.4),
                0 0 50px rgba(var(--cr, 139), var(--cg, 92), var(--cb, 246), 0.2);
        }

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

        /* Emulator Grid - Mario-style */
        .emulator-section-subtitle {
            text-align: center;
            color: rgba(255, 255, 255, 0.8);
            font-size: clamp(14px, 2vw, 18px);
            margin-bottom: 30px;
            padding: 0 20px;
        }

        .emulator-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 16px;
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .emulator-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            padding: 16px 8px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            cursor: default;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            animation: emu-float 6s ease-in-out infinite;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }

        .emulator-card:nth-child(2) { animation-delay: 0.3s; }
        .emulator-card:nth-child(3) { animation-delay: 0.6s; }
        .emulator-card:nth-child(4) { animation-delay: 0.9s; }
        .emulator-card:nth-child(5) { animation-delay: 1.2s; }
        .emulator-card:nth-child(6) { animation-delay: 1.5s; }
        .emulator-card:nth-child(7) { animation-delay: 0.3s; }
        .emulator-card:nth-child(8) { animation-delay: 0.6s; }
        .emulator-card:nth-child(9) { animation-delay: 0.9s; }
        .emulator-card:nth-child(10) { animation-delay: 1.2s; }
        .emulator-card:nth-child(11) { animation-delay: 1.5s; }
        .emulator-card:nth-child(12) { animation-delay: 1.8s; }
        .emulator-card:nth-child(13) { animation-delay: 0.3s; }
        .emulator-card:nth-child(14) { animation-delay: 0.6s; }
        .emulator-card:nth-child(15) { animation-delay: 0.9s; }
        .emulator-card:nth-child(16) { animation-delay: 1.2s; }
        .emulator-card:nth-child(17) { animation-delay: 1.5s; }
        .emulator-card:nth-child(18) { animation-delay: 1.8s; }

        @keyframes emu-float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-6px); }
        }

        .emulator-card::before {
            content: '';
            position: absolute;
            top: 0; right: 0; bottom: 0; left: 0;
            border-radius: 12px;
            background: radial-gradient(circle at center, var(--emu-color, rgba(139, 92, 246, 0.15)) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .emulator-card:hover {
            transform: translateY(-4px);
            border-color: rgba(139, 92, 246, 0.5);
            box-shadow: 0 12px 40px rgba(139, 92, 246, 0.15);
        }

        .emulator-card:hover::before {
            opacity: 1;
        }

        .emulator-icon {
            font-size: 28px;
            position: relative;
            z-index: 1;
            filter: drop-shadow(0 0 8px var(--emu-color, rgba(139, 92, 246, 0.6)));
        }

        .emulator-name {
            font-family: 'Oxanium', sans-serif;
            font-size: 13px;
            font-weight: 700;
            color: #ffffff;
            text-align: center;
            position: relative;
            z-index: 1;
            text-shadow: 0 0 10px var(--emu-color, rgba(139, 92, 246, 0.5));
        }

        .emulator-games {
            font-size: 10px;
            color: rgba(255, 255, 255, 0.5);
            position: relative;
            z-index: 1;
        }

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

        @media (max-width: 768px) {
            .emulator-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 16px;
            }

            .emulator-card {
                padding: 12px 6px;
            }

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

            .emulator-name {
                font-size: 11px;
            }
        }

        @media (max-width: 480px) {
            .emulator-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
        }

        @media (max-width: 768px) {
            .console-section {
                padding: 40px 0;
                min-height: 100vh;
            min-height: 100svh;
                box-sizing: border-box;
            }

            .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(3, 1fr);
                gap: 20px;
            }

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

        /* Product Comparison Section */
        .comparison-section {
            width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            margin-top: 0;
            margin-bottom: 0;
            padding: 80px 20px;
            background: linear-gradient(180deg, rgba(139, 92, 246, 0.15) 0%, rgba(15, 10, 30, 0.98) 100%);
            overflow-x: hidden;
            overflow-y: visible;
        }

        .comparison-title {
            font-family: 'Oxanium', sans-serif;
            font-size: clamp(28px, 4vw, 40px);
            font-weight: 800;
            text-align: center;
            color: #ffffff;
            margin-bottom: 10px;
            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: 40px;
        }

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

        .comparison-table {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 34px;
            align-items: stretch;
        }

        .comparison-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 32px 28px 28px;
            position: relative;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            overflow: visible;
        }

        .comparison-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--card-glow, rgba(139, 92, 246, 0.6)), transparent);
            opacity: 0.8;
            transition: opacity 0.3s ease, background 0.3s ease;
            z-index: 1;
        }

        .comparison-card:hover {
            transform: translateY(-8px) scale(1.02);
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(139, 92, 246, 0.5);
            box-shadow: 0 12px 40px rgba(139, 92, 246, 0.15);
        }

        .comparison-card:hover::after {
            opacity: 1;
        }

        .comparison-card-popular {
            border: 1px solid rgba(255, 215, 0, 0.2);
            background: rgba(255, 255, 255, 0.03);
            box-shadow: 0 4px 20px rgba(255, 215, 0, 0.15), 0 0 15px rgba(255, 215, 0, 0.08);
            --card-glow: rgba(255, 215, 0, 0.6);
        }

        .comparison-card-popular:hover {
            border-color: rgba(255, 215, 0, 0.5);
            box-shadow: 0 12px 40px rgba(255, 215, 0, 0.25), 0 0 20px rgba(255, 215, 0, 0.1);
        }

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

        .comparison-card-image img {
            max-width: 100%;
            max-height: 210px;
            object-fit: contain;
            border-radius: 10px;
            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: -14px;
            left: 50%;
            transform: translateX(-50%);
            padding: 6px 18px;
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            color: #000000;
            font-family: 'Oxanium', sans-serif;
            font-size: 12px;
            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);
            z-index: 2;
        }

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

        .free-case-badge {
            display: inline-block;
            margin: 12px auto;
            padding: 10px 20px;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: #ffffff;
            font-family: 'Oxanium', sans-serif;
            font-size: 15px;
            font-weight: 700;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(16, 185, 129, 0.5);
            text-align: center;
        }

        .variant-select {
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            padding-right: 36px !important;
            transition: all 0.2s ease;
        }

        .variant-select:hover {
            border-color: rgba(139, 92, 246, 0.5);
            background-color: rgba(255, 255, 255, 0.15);
        }

        .variant-select:focus {
            outline: none;
            border-color: #8B5CF6;
            box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.3);
        }

        .variant-select option {
            background: #1a0a2e;
            color: #fff;
            padding: 10px;
        }

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

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

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

        .price-amount {
            font-family: 'Oxanium', sans-serif;
            font-size: 30px;
            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 4s 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;
        }

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

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

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

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

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

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

        .comparison-cta {
            width: 100%;
            padding: 13px 16px;
            background: linear-gradient(180deg, #fcd34d 0%, #fbbf24 50%, #f59e0b 100%);
            color: #1a1a1a;
            border: none;
            border-radius: 12px;
            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),
                0 0 30px rgba(251, 191, 36, 0.2),
                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(-2px);
            box-shadow: 0 8px 24px rgba(251, 191, 36, 0.6),
                0 0 50px rgba(251, 191, 36, 0.35),
                0 0 80px rgba(251, 191, 36, 0.2),
                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),
                0 0 30px rgba(251, 191, 36, 0.2),
                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 8px 24px rgba(251, 191, 36, 0.6),
                0 0 50px rgba(251, 191, 36, 0.35),
                0 0 80px rgba(251, 191, 36, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }

        /* Stacked CTA Button Layout (Amazon-style) */
        .cta-button-stack {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-top: auto;
            padding-top: 16px;
        }

        .comparison-cta-primary {
            background: linear-gradient(180deg, #fcd34d 0%, #fbbf24 50%, #f59e0b 100%);
            color: #1a1a1a;
            border: none;
            box-shadow: 0 4px 15px rgba(251, 191, 36, 0.5),
                0 0 30px rgba(251, 191, 36, 0.2);
        }

        .comparison-cta-primary:hover {
            background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(251, 191, 36, 0.6),
                0 0 50px rgba(251, 191, 36, 0.35),
                0 0 80px rgba(251, 191, 36, 0.2);
        }

        .cta-button-stack .comparison-cta-secondary {
            background: rgba(139, 92, 246, 0.25);
            color: #fff;
            border: 2px solid rgba(139, 92, 246, 0.5);
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
            text-shadow: none;
        }

        .cta-button-stack .comparison-cta-secondary:hover {
            background: rgba(139, 92, 246, 0.4);
            border-color: rgba(139, 92, 246, 0.7);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(139, 92, 246, 0.3);
        }

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

            .comparison-table {
                grid-template-columns: 1fr;
                gap: 24px;
                max-width: 420px;
                margin: 0 auto;
            }

            .comparison-card {
                padding: 24px 20px 20px;
                text-align: center;
            }

            .comparison-card-image {
                height: 220px;
                margin-bottom: 18px;
            }

            .comparison-card-image img {
                max-height: 200px;
            }

            .comparison-model {
                font-size: 26px;
            }

            .price-amount {
                font-size: 32px;
            }

            .feature-item {
                padding: 8px 12px;
                margin-bottom: 8px;
            }

            .feature-text {
                font-size: 15px;
            }

            .comparison-cta {
                padding: 14px 16px;
            }

            /* Center the FREE Case badges on mobile */
            .comparison-card > div[style*="inline-block"] {
                display: block !important;
                width: fit-content;
                margin-left: auto;
                margin-right: auto;
            }
        }

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

            .comparison-card {
                padding: 22px 16px 18px;
            }

            .comparison-card-image {
                height: 160px;
            }

            .comparison-card-image img {
                max-height: 150px;
            }
        }

