/* ========================================
   VARIABLES & RESET
======================================== */
:root {
    --primary-dark: #0a0a0f;
    --secondary-dark: #1a1a2e;
    --accent-cyan: #00ffcc;
    --accent-magenta: #ff00ff;
    --accent-purple: #9d4edd;
    --accent-yellow: #ffd700;
    --accent-green: #00ff00;
    --accent-orange: #ff6b00;
    --text-white: #ffffff;
    --text-gray: #b0b0c0;
    --light-bg: #f5f5f7;
    --card-bg: rgba(26, 26, 46, 0.8);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-white);
    overflow-x: hidden;
    background: var(--primary-dark);
}

/* ========================================
   PROMO BANNER - NUEVO (Hide on scroll, no close button)
======================================== */
.promo-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #ff6b00, #ff8800);
    color: white;
    padding: 0.6rem 2rem;
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.4);
    transition: transform 0.3s ease;
}

.promo-banner.hidden {
    transform: translateY(-100%);
}

.promo-content {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.promo-icon {
    font-size: 1.3rem;
    animation: flame 1.5s ease-in-out infinite;
}

@keyframes flame {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(10deg); }
}

.promo-text {
    font-size: 0.9rem;
    font-weight: 500;
}

.promo-text strong {
    font-weight: 800;
    text-transform: uppercase;
}

.promo-code {
    background: rgba(255, 255, 255, 0.25);
    padding: 0.2rem 0.7rem;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    font-weight: 700;
    border: 1px dashed rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.promo-code:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.05);
}

.promo-countdown {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.countdown-timer {
    display: flex;
    gap: 0.2rem;
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 700;
}

.countdown-num {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.2rem 0.4rem;
    border-radius: 5px;
    min-width: 28px;
    text-align: center;
}

/* Adjust header when promo is visible */
header {
    top: 45px;
}

header.no-promo {
    top: 0;
}

/* ========================================
   HEADER - MODERN STYLE WITH HIDE/SHOW ON SCROLL
======================================== */
header {
    position: fixed;
    top: 45px; /* Space for promo banner */
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-bottom: 1px solid rgba(0, 255, 204, 0.1);
    padding: 1.5rem 5%;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                padding 0.3s ease,
                background 0.3s ease,
                box-shadow 0.3s ease,
                top 0.3s ease;
    transform: translateY(0);
}

header.no-promo {
    top: 0;
}

/* Hide header on scroll down */
header.header-hidden {
    transform: translateY(-100%);
    box-shadow: none;
}

/* Show header on scroll up */
header.header-visible {
    transform: translateY(0);
    background: rgba(10, 10, 15, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    padding: 1rem 5%;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    gap: 3rem;
}

/* Logo - Always visible, modern style */
.logo {
    flex-shrink: 0;
    z-index: 1001;
}

.logo img {
    height: 55px;
    filter: drop-shadow(0 0 15px rgba(0, 255, 204, 0.4));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.header-visible .logo img {
    height: 50px;
}

.logo:hover img {
    filter: drop-shadow(0 0 20px rgba(0, 255, 204, 0.8));
    transform: scale(1.03);
}

/* Navigation - Modern BornGroup Style */
nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
    transition: all 0.3s ease;
}

nav ul li {
    position: relative;
    padding: 0 1.5rem;
}

/* Separators between items */
nav ul li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background: rgba(0, 255, 204, 0.15);
}

nav a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 0;
    display: inline-block;
}

nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav a:hover {
    color: var(--accent-cyan);
    transform: translateY(-2px);
}

nav a:hover::before {
    width: 100%;
}

/* CTA Button - Modern Glassmorphism */
.nav-cta-wrapper {
    flex-shrink: 0;
}

.cta-btn {
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.2), rgba(0, 204, 153, 0.2));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 204, 0.4);
    color: var(--accent-cyan);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 204, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-btn:hover {
    background: linear-gradient(135deg, var(--accent-cyan), #00cc99);
    color: var(--primary-dark);
    border-color: var(--accent-cyan);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 204, 0.4);
}

.cta-btn:hover::before {
    left: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--accent-cyan);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
    color: var(--text-white);
}

/* ========================================
   HERO SECTION
======================================== */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: 
        radial-gradient(circle at 20% 30%, rgba(157, 78, 221, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 204, 0.1) 0%, transparent 50%),
        var(--primary-dark);
    padding: 10rem 5% 2rem; /* Increased top padding for promo + header */
}

.hero-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 204, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 204, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: grid-scroll 25s linear infinite;
    z-index: 1;
}

@keyframes grid-scroll {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.hero-container {
    max-width: 1800px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 0 0 480px;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 255, 204, 0.08);
    border: 1px solid rgba(0, 255, 204, 0.3);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: var(--accent-cyan);
    font-weight: 600;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-magenta) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 400;
}

.hero-highlight {
    color: var(--accent-cyan);
    font-weight: 600;
}

.hero-stats-compact {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stat-compact {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}

.stat-compact .number {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent-cyan);
}

.stat-compact .label {
    font-size: 0.85rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.primary-btn {
    background: linear-gradient(135deg, var(--accent-cyan), #00cc99);
    color: var(--primary-dark);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 255, 204, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 204, 0.5);
}

.secondary-btn {
    background: transparent;
    color: var(--text-white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid rgba(0, 255, 204, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.secondary-btn:hover {
    background: rgba(0, 255, 204, 0.05);
    border-color: var(--accent-cyan);
    transform: translateY(-3px);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.trust-stars {
    color: #ffd700;
    font-size: 1rem;
}

.compatibility-strip {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 204, 0.1);
}

.compatibility-strip > span {
    font-size: 0.75rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.os-icon-wrapper {
    display: flex;
    gap: 1rem;
}

.os-icon {
    width: 45px;
    height: 45px;
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(0, 255, 204, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.os-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.os-icon:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 255, 204, 0.3);
}

.os-icon:hover img {
    transform: scale(1.1);
}

.os-tooltip {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(26, 26, 46, 0.95);
    border: 1px solid var(--accent-cyan);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.7rem;
    color: var(--accent-cyan);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(10px);
}

.os-icon:hover .os-tooltip {
    opacity: 1;
}

/* 3D Carousel */
.carousel-3d-container {
    flex: 1;
    position: relative;
    height: 650px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    perspective: 2000px;
}

.carousel-compatibility-badge {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(26, 26, 46, 0.9);
    border: 1px solid rgba(0, 255, 204, 0.4);
    padding: 0.6rem 1.8rem;
    border-radius: 25px;
    font-size: 0.85rem;
    color: var(--text-gray);
    backdrop-filter: blur(10px);
    z-index: 100;
    box-shadow: 0 5px 20px rgba(0, 255, 204, 0.2);
}

.carousel-compatibility-badge strong {
    color: var(--accent-cyan);
    font-weight: 700;
}

.carousel-stage {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.console-item {
    position: absolute;
    left: 50%;
    top: 50%;
    transform-style: preserve-3d;
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.console-item img {
    width: 100%;
    height: auto;
    transition: filter 0.3s ease;
}

.console-item.position-front {
    width: 700px;
    z-index: 30;
    transform: translate(-50%, -50%) translateZ(400px) scale(1);
    opacity: 1;
}

.console-item.position-front img {
    filter: drop-shadow(0 25px 60px rgba(0, 255, 204, 0.7));
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        filter: drop-shadow(0 25px 60px rgba(0, 255, 204, 0.6));
    }
    50% {
        filter: drop-shadow(0 30px 70px rgba(0, 255, 204, 0.9));
    }
}

.console-item.position-right {
    width: 550px;
    z-index: 20;
    transform: translate(-50%, -50%) translateX(350px) translateZ(-100px) rotateY(-30deg) scale(0.85);
    opacity: 0.7;
}

.console-item.position-right img {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.console-item.position-back {
    width: 450px;
    z-index: 10;
    transform: translate(-50%, -50%) translateX(-350px) translateZ(-200px) rotateY(30deg) scale(0.7);
    opacity: 0.5;
}

.console-item.position-back img {
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
}

.console-item:hover img {
    filter: drop-shadow(0 30px 70px rgba(255, 0, 255, 0.8)) !important;
}

.console-label {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(26, 26, 46, 0.95);
    border: 1px solid rgba(0, 255, 204, 0.4);
    padding: 0.6rem 1.8rem;
    border-radius: 25px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-cyan);
    white-space: nowrap;
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 255, 204, 0.3);
}

.console-item.position-front .console-label {
    opacity: 1;
    bottom: -60px;
}

.glow-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    border: 2px solid rgba(0, 255, 204, 0.15);
    border-radius: 50%;
    z-index: 5;
    animation: pulse-ring 4s ease-in-out infinite;
}

@keyframes pulse-ring {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.6;
    }
}

/* Hero Live Stats - NUEVO */
.hero-live-stats {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.live-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(26, 26, 46, 0.6);
    padding: 0.85rem 1.5rem;
    border-radius: 25px;
    border: 1px solid rgba(0, 255, 204, 0.2);
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
    color: var(--text-gray);
    min-height: 50px; /* Match button height */
}

.live-indicator {
    width: 10px;
    height: 10px;
    background: #00ff00;
    border-radius: 50%;
    animation: pulse-live 2s ease-in-out infinite;
    box-shadow: 0 0 10px #00ff00;
}

@keyframes pulse-live {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.live-stat strong {
    color: var(--accent-cyan);
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    color: var(--text-gray);
    font-size: 0.85rem;
    animation: bounce 2s infinite;
    z-index: 10;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* ========================================
   VIDEO PARALLAX SECTION - UPDATED TO 100VH WITH PARALLAX EFFECT
======================================== */
#video-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    will-change: transform;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(0, 255, 204, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
        linear-gradient(to bottom, rgba(10, 10, 15, 0.6), rgba(10, 10, 15, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Floating particles in video section */
.video-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--accent-cyan);
    border-radius: 50%;
    opacity: 0.4;
    animation: floatVideoParticle 20s infinite;
}

@keyframes floatVideoParticle {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-100vh) translateX(100px) scale(1.5);
        opacity: 0;
    }
}

.video-content {
    text-align: center;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
    will-change: transform;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.video-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    text-shadow: 
        0 0 30px rgba(0, 255, 204, 0.6),
        0 0 60px rgba(0, 255, 204, 0.3);
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 
            0 0 30px rgba(0, 255, 204, 0.6),
            0 0 60px rgba(0, 255, 204, 0.3);
    }
    50% {
        text-shadow: 
            0 0 40px rgba(0, 255, 204, 0.8),
            0 0 80px rgba(0, 255, 204, 0.5),
            0 0 120px rgba(0, 255, 204, 0.2);
    }
}

.video-content p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* ========================================
   BENEFITS SECTION - ENHANCED WITH FLOATING SHAPES & PLAYSTATION ICONS
======================================== */
#benefits {
    background: var(--light-bg);
    padding: 8rem 5%;
    position: relative;
    overflow: hidden;
}

/* Floating shapes background */
#benefits::before,
#benefits::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    animation: floatShape 20s ease-in-out infinite;
}

#benefits::before {
    width: 400px;
    height: 400px;
    background: var(--accent-purple);
    top: 10%;
    left: -100px;
}

#benefits::after {
    width: 300px;
    height: 300px;
    background: var(--accent-cyan);
    bottom: 10%;
    right: -50px;
    animation-delay: -10s;
}

/* PlayStation Icons Container */
.ps-icons-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.ps-icon {
    position: absolute;
    font-size: 3rem;
    opacity: 0.08;
    color: var(--accent-purple);
    animation: floatPsIcon 15s ease-in-out infinite;
    font-weight: 900;
    font-family: Arial, sans-serif;
}

.ps-icon.circle {
    border: 4px solid currentColor;
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.ps-icon.cross {
    transform: rotate(45deg);
}

.ps-icon.square {
    border: 4px solid currentColor;
    width: 50px;
    height: 50px;
}

.ps-icon.triangle {
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 50px solid currentColor;
}

@keyframes floatPsIcon {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.08;
    }
    25% {
        transform: translate(30px, -40px) rotate(90deg);
        opacity: 0.12;
    }
    50% {
        transform: translate(-20px, -80px) rotate(180deg);
        opacity: 0.06;
    }
    75% {
        transform: translate(-40px, -40px) rotate(270deg);
        opacity: 0.12;
    }
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(50px, -50px) rotate(90deg);
    }
    50% {
        transform: translate(0, -100px) rotate(180deg);
    }
    75% {
        transform: translate(-50px, -50px) rotate(270deg);
    }
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.section-tag {
    color: var(--accent-purple);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

/* Special styling for dark background sections */
#seo-content .section-title {
    color: #00ffcc;
    text-shadow: 
        0 0 20px rgba(0, 255, 204, 0.5),
        0 0 40px rgba(0, 255, 204, 0.3);
}

.section-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.benefit-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.1), rgba(157, 78, 221, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(157, 78, 221, 0.3);
    border-color: var(--accent-purple);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(10deg);
}

.benefit-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.benefit-card p {
    color: #666;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* ========================================
   PACKS SECTION - ENHANCED WITH PARTICLES
======================================== */
#packs {
    background: var(--primary-dark);
    padding: 8rem 5%;
    position: relative;
    overflow: hidden;
}

/* Animated particles */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-cyan);
    border-radius: 50%;
    opacity: 0.6;
    animation: floatParticle 15s infinite;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

#packs .section-tag {
    color: var(--accent-cyan);
}

#packs .section-title {
    color: var(--text-white);
}

#packs .section-description {
    color: var(--text-gray);
}

#packs .section-header {
    position: relative;
    z-index: 2;
}

.packs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.pack-card {
    background: var(--card-bg);
    border-radius: 25px;
    overflow: hidden;
    border: 2px solid rgba(0, 255, 204, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.pack-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.1), rgba(255, 0, 255, 0.1));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.pack-card:hover::before {
    opacity: 1;
}

.pack-card:hover {
    transform: translateY(-20px) scale(1.03);
    border-color: var(--accent-cyan);
    box-shadow: 0 30px 70px rgba(0, 255, 204, 0.4);
}

.pack-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-magenta), var(--accent-purple));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(255, 0, 255, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Price Badge - Llamativo y Moderno */
.pack-price-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: var(--primary-dark);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    z-index: 10;
    box-shadow: 
        0 8px 25px rgba(255, 215, 0, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.3);
    animation: priceGlow 2s ease-in-out infinite;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transform-style: preserve-3d;
}

.pack-price-badge::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), transparent);
    border-radius: 15px;
    z-index: -1;
}

.pack-price-badge::after {
    content: '💰';
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 2rem;
    filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.6));
    animation: floatCoin 3s ease-in-out infinite;
}

@keyframes priceGlow {
    0%, 100% {
        box-shadow: 
            0 8px 25px rgba(255, 215, 0, 0.5),
            inset 0 2px 0 rgba(255, 255, 255, 0.5);
        transform: translateZ(0);
    }
    50% {
        box-shadow: 
            0 12px 35px rgba(255, 215, 0, 0.8),
            0 0 30px rgba(255, 215, 0, 0.4),
            inset 0 2px 0 rgba(255, 255, 255, 0.7);
        transform: translateZ(10px);
    }
}

@keyframes floatCoin {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(15deg);
    }
}

.pack-card:hover .pack-price-badge {
    transform: scale(1.1) translateZ(20px);
}

.pack-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pack-card:hover .pack-image {
    transform: scale(1.15) rotate(2deg);
}

.pack-content {
    padding: 2.5rem;
    position: relative;
    z-index: 1;
}

.pack-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--accent-cyan);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.3);
}

.pack-description {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Pack Highlights - NUEVO DEL LANDING */
.pack-highlights {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.pack-highlights .highlight {
    background: rgba(0, 255, 204, 0.1);
    border: 1px solid rgba(0, 255, 204, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    color: var(--accent-cyan);
    font-weight: 600;
    transition: all 0.3s ease;
}

.pack-highlights .highlight:hover {
    background: rgba(0, 255, 204, 0.2);
    border-color: var(--accent-cyan);
    transform: translateY(-2px);
}

/* Pack Price Container - MEJORADO */
.pack-price-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.pack-price-old {
    text-decoration: line-through;
    color: #999;
    font-size: 1.2rem;
    font-weight: 600;
}

.pack-price {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-cyan);
    text-shadow: 0 0 15px rgba(0, 255, 204, 0.5);
}

.pack-savings {
    background: var(--accent-green);
    color: var(--primary-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0, 255, 0, 0.3);
    animation: savingsPulse 2s ease-in-out infinite;
}

@keyframes savingsPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Pack Note - NUEVO */
.pack-note {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-style: italic;
    text-align: center;
    margin-top: 1rem;
}

/* Pack Badges Especiales - MEJORADOS */
.pack-badge.best-value-badge {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: var(--primary-dark);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
}

.pack-badge.popular-badge {
    background: linear-gradient(135deg, var(--accent-cyan), #00cc99);
    color: var(--primary-dark);
    box-shadow: 0 5px 20px rgba(0, 255, 204, 0.5);
}

.pack-badge.upgrade-badge {
    background: linear-gradient(135deg, var(--accent-orange), #ff8800);
    color: white;
    box-shadow: 0 5px 20px rgba(255, 107, 0, 0.5);
}

/* Pack Card Especial - Best Value */
.pack-card.best-value {
    border: 2px solid var(--accent-yellow);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.pack-card.best-value:hover {
    box-shadow: 0 30px 70px rgba(255, 215, 0, 0.5);
}

/* Pack Card Especial - Popular */
.pack-card.popular {
    border: 2px solid var(--accent-cyan);
    box-shadow: 0 0 30px rgba(0, 255, 204, 0.3);
}

.pack-card.popular:hover {
    box-shadow: 0 30px 70px rgba(0, 255, 204, 0.5);
}

/* Pack Card Especial - Upgrade */
.pack-card.upgrade {
    border: 2px solid var(--accent-orange);
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.3);
}

.pack-card.upgrade:hover {
    box-shadow: 0 30px 70px rgba(255, 107, 0, 0.5);
}

/* Pack Buttons - CTA Styling */
.pack-content .cta-button {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent-cyan), #00cc99);
    color: var(--primary-dark);
    text-align: center;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 255, 204, 0.3);
    margin-bottom: 1rem;
}

.pack-content .cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.pack-content .cta-button:hover::before {
    width: 400px;
    height: 400px;
}

.pack-content .cta-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 255, 204, 0.6);
}

.pack-content .cta-button:active {
    transform: translateY(-2px) scale(0.98);
}

.pack-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pack-features li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: transform 0.3s ease;
}

.pack-features li:hover {
    transform: translateX(5px);
}

.pack-features li::before {
    content: '✓';
    color: var(--accent-cyan);
    font-weight: bold;
    font-size: 1.2rem;
}

.pack-cta {
    display: block;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--accent-cyan), #00cc99);
    color: var(--primary-dark);
    text-align: center;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pack-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.pack-cta:hover::before {
    width: 300px;
    height: 300px;
}

.pack-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 255, 204, 0.6);
}

.view-all-cta {
    text-align: center;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

/* ========================================
   COMPARISON TABLE - NUEVO DEL LANDING
======================================== */
.comparison-section {
    margin-top: 5rem;
    padding: 3rem 0;
}

.comparison-title {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 2rem;
}

.comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(26, 26, 46, 0.8);
    border-radius: 15px;
    overflow: hidden;
    min-width: 800px;
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--secondary-dark), #252540);
}

.comparison-table th {
    padding: 1.5rem 1rem;
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--accent-cyan);
    border-bottom: 2px solid rgba(0, 255, 204, 0.3);
}

.comparison-table th.highlight-col {
    background: linear-gradient(135deg, var(--accent-cyan), #00cc99);
    color: var(--primary-dark);
    position: relative;
    padding-top: 2.5rem; /* Extra space for badge */
}

.comparison-table th.highlight-col::after {
    content: '⭐ RECOMMENDED';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-yellow);
    color: var(--primary-dark);
    padding: 0.25rem 0.8rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
}

.comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
    font-size: 0.95rem;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-white);
}

.comparison-table td.highlight-col {
    background: rgba(0, 255, 204, 0.1);
    color: var(--text-white);
    font-weight: 600;
}

.comparison-table .check {
    color: var(--accent-green);
    font-size: 1.3rem;
    font-weight: bold;
}

.comparison-table .cross {
    color: #ff4444;
    font-size: 1.3rem;
    font-weight: bold;
}

.comparison-table .price-row {
    background: rgba(0, 255, 204, 0.05);
}

.comparison-table .price-row td {
    padding: 1.5rem 1rem;
    font-size: 1.2rem;
    font-weight: 800;
    font-family: 'Orbitron', sans-serif;
}

.comparison-table .price-row td.highlight-col {
    background: rgba(0, 255, 204, 0.2);
    color: var(--accent-cyan);
    font-size: 1.5rem;
}

/* ========================================
   PLATFORMS STATS SECTION - NUEVO DEL LANDING
======================================== */
.platforms-section {
    background: var(--secondary-dark);
    padding: 8rem 5%;
    position: relative;
}

.platforms-section .section-title {
    color: var(--text-white);
    text-shadow: 0 0 30px rgba(0, 255, 204, 0.6), 0 0 15px rgba(0, 255, 204, 0.4);
}

.platforms-section .section-description {
    color: var(--text-gray);
}

.platforms-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 4rem auto;
}

.platform-stat {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(42, 42, 62, 0.8));
    border: 2px solid rgba(0, 255, 204, 0.2);
    border-radius: 15px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.platform-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.1), rgba(255, 0, 255, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.platform-stat:hover::before {
    opacity: 1;
}

.platform-stat:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 255, 204, 0.4);
}

.platform-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-cyan);
    margin-bottom: 0.8rem;
    text-shadow: 0 0 20px rgba(0, 255, 204, 0.5);
    position: relative;
    z-index: 1;
}

.platform-name {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.platform-stat.highlight-stat {
    border-color: var(--accent-yellow);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 237, 78, 0.1));
    position: relative;
}

.updated-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--accent-orange);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.5);
    animation: badgePulse 2s ease-in-out infinite;
}

.platforms-cta {
    text-align: center;
    margin-top: 4rem;
}

.platforms-cta p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.platforms-cta .cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-cyan), #00cc99);
    color: var(--primary-dark);
    text-align: center;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 255, 204, 0.3);
}

.platforms-cta .cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 255, 204, 0.6);
}

/* ========================================
   GAMES SHOWCASE - FIXED CAROUSEL FULL WIDTH
======================================== */
#games-showcase {
    background: var(--light-bg);
    padding: 8rem 0 6rem;
    position: relative;
}

.carousel-container {
    width: 100%;
    margin: 4rem 0 0;
    position: relative;
}

.carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 0 5%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.carousel-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--primary-dark);
}

.carousel-nav {
    display: flex;
    gap: 1rem;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--accent-purple);
    background: white;
    color: var(--accent-purple);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.carousel-btn:hover {
    background: var(--accent-purple);
    color: white;
    transform: scale(1.15);
}

/* Carousel Wrapper with Fade Edges - FIXED */
.carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-wrapper::before,
.carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--light-bg) 0%, rgba(245, 245, 247, 0.8) 40%, transparent 100%);
}

.carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--light-bg) 0%, rgba(245, 245, 247, 0.8) 40%, transparent 100%);
}

/* Games Carousel - FIXED */
.games-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: hidden;
    padding: 1rem 0 2rem;
    width: 100%;
    position: relative;
}

.games-carousel-inner {
    display: flex;
    gap: 1.5rem;
    animation: scrollCarousel 60s linear infinite;
}

/* HOVER PAUSE REMOVED - Carrusel continuo sin pausas */

/* Different speeds */
#nextgen-carousel .games-carousel-inner {
    animation-duration: 40s; /* Fast */
    animation-direction: normal; /* Left to right */
}

#switch-carousel .games-carousel-inner {
    animation-duration: 80s; /* Slow */
    animation-direction: reverse; /* Right to left - OPUESTO */
}

@keyframes scrollCarousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.game-card {
    min-width: 250px;
    width: 250px;
    flex-shrink: 0;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.game-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover::after {
    opacity: 1;
}

.game-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 50px rgba(157, 78, 221, 0.4);
    z-index: 5;
}

.game-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.game-card:hover img {
    transform: scale(1.1);
}

.game-info {
    padding: 1rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.game-title {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1rem;
}

/* ========================================
   VIDEO TUTORIALS - YOUTUBE EMBEDS
======================================== */
#video-tutorials {
    background: #1a0a2e; /* Morado muy oscuro */
    padding: 8rem 5%;
    position: relative;
}

#video-tutorials .section-title {
    color: var(--text-white);
}

#video-tutorials .section-description {
    color: var(--text-gray);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 4rem auto 0;
}

.video-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(0, 255, 204, 0.2);
    transition: all 0.4s ease;
    position: relative;
}

.video-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 255, 204, 0.3);
}

/* YouTube Embed Container */
.video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-card-content {
    padding: 2rem;
}

.video-card-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    color: var(--text-white);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.video-card-description {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ========================================
   REVIEWS SECTION - FIXED FULL WIDTH CAROUSEL
======================================== */
#reviews {
    background: var(--light-bg);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

/* Add animated gradient background */
#reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(157, 78, 221, 0.05), transparent 70%),
                radial-gradient(circle at 70% 50%, rgba(0, 255, 204, 0.05), transparent 70%);
    animation: gradientShift 10s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* Reviews Carousel Wrapper - FIXED */
.reviews-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 4rem;
}

.reviews-carousel-wrapper::before,
.reviews-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.reviews-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--light-bg) 0%, rgba(245, 245, 247, 0.8) 40%, transparent 100%);
}

.reviews-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--light-bg) 0%, rgba(245, 245, 247, 0.8) 40%, transparent 100%);
}

.reviews-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: hidden;
    padding: 2rem 0;
    width: 100%;
    position: relative;
    z-index: 2;
}

.reviews-carousel-inner {
    display: flex;
    gap: 2rem;
    animation: scrollCarousel 50s linear infinite; /* Aumentado velocidad: 100s → 50s */
}

/* HOVER PAUSE REMOVED - Carrusel continuo */

.review-card {
    min-width: 420px;
    width: 420px;
    flex-shrink: 0;
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 80px;
    color: rgba(157, 78, 221, 0.1);
    font-family: serif;
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(157, 78, 221, 0.3);
}

.review-stars {
    color: var(--accent-yellow);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.review-text {
    color: #333;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.review-author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.review-author-info h4 {
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.review-author-info p {
    color: #666;
    font-size: 0.9rem;
}

.trustpilot-badge {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.trustpilot-badge img {
    height: 40px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.trustpilot-badge img:hover {
    transform: scale(1.1);
}

/* ========================================
   CTA FINAL SECTION - ENHANCED
======================================== */
#cta-final {
    background: var(--primary-dark);
    padding: 8rem 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(157, 78, 221, 0.3) 0%, transparent 70%);
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.cta-final-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-final-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-final-content p {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.cta-guarantee {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    color: var(--text-gray);
    font-size: 1rem;
}

/* ========================================
   FOOTER
======================================== */
footer {
    background: var(--secondary-dark);
    padding: 4rem 5% 2rem;
    border-top: 1px solid rgba(0, 255, 204, 0.2);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--accent-cyan);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section a:hover {
    color: var(--accent-cyan);
    transform: translateX(5px);
}

.footer-logo img {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 204, 0.1);
    border: 1px solid var(--accent-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-cyan);
    color: var(--primary-dark);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 204, 0.1);
    color: var(--text-gray);
}

/* ========================================
   SCROLL ANIMATIONS
======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (min-width: 1920px) {
    .hero-container {
        max-width: 2200px;
    }

    .console-item.position-front {
        width: 850px;
    }

    .console-item.position-right {
        width: 650px;
        transform: translate(-50%, -50%) translateX(450px) translateZ(-100px) rotateY(-30deg) scale(0.85);
    }

    .console-item.position-back {
        width: 550px;
        transform: translate(-50%, -50%) translateX(-450px) translateZ(-200px) rotateY(30deg) scale(0.7);
    }

    .carousel-3d-container {
        height: 750px;
    }
}

@media (max-width: 1400px) {
    .console-item.position-front {
        width: 600px;
    }

    .console-item.position-right {
        width: 480px;
        transform: translate(-50%, -50%) translateX(300px) translateZ(-100px) rotateY(-30deg) scale(0.85);
    }

    .console-item.position-back {
        width: 400px;
        transform: translate(-50%, -50%) translateX(-300px) translateZ(-200px) rotateY(30deg) scale(0.7);
    }

    .carousel-3d-container {
        height: 550px;
    }
}

@media (max-width: 1200px) {
    .hero-container {
        flex-direction: column;
        gap: 3rem;
    }

    .hero-content {
        flex: none;
        width: 100%;
        max-width: 600px;
        text-align: center;
    }

    .hero-cta-group,
    .hero-stats-compact,
    .compatibility-strip {
        justify-content: center;
    }

    .carousel-3d-container {
        width: 100%;
        height: 500px;
        margin-top: 2rem;
    }

    .console-item.position-front {
        width: 550px;
    }

    .console-item.position-right {
        width: 420px;
        transform: translate(-50%, -50%) translateX(250px) translateZ(-80px) rotateY(-25deg) scale(0.85);
    }

    .console-item.position-back {
        width: 350px;
        transform: translate(-50%, -50%) translateX(-250px) translateZ(-150px) rotateY(25deg) scale(0.7);
    }
}

@media (max-width: 768px) {
    
    /* ========================================
       MOBILE FIX: HIDE LIVE STATS ON MOBILE
       Solución implementada por el usuario
       ======================================== */
    
    /* OCULTAR completamente las stats del hero en móvil */
    .hero-live-stats {
        display: none !important;
    }
    
    /* Ajustar el header para mejor distribución */
    .header-container {
        justify-content: space-between;
        gap: 1rem;
    }
    
    /* Más espacio para el nav-cta-wrapper si quieres mantenerlo */
    .nav-cta-wrapper {
        margin-left: auto; /* Empuja el botón a la derecha */
    }
    
    /* Ajustar padding del header para que sea más compacto */
    header {
        padding: 0.8rem 3% !important;
    }
    
    header.header-visible {
        padding: 0.6rem 3% !important;
    }
    
    /* Ajustar el hero para compensar el espacio perdido */
    #hero {
        padding-top: 6rem; /* Reducido de 10rem para móvil */
    }
    
    /* PROMO BANNER - Más compacto en móvil */
    .promo-banner {
        padding: 0.35rem 1rem;
    }
    
    .promo-content {
        gap: 0.5rem;
        font-size: 0.75rem;
    }
    
    .promo-icon {
        font-size: 1rem;
    }
    
    .promo-text {
        font-size: 0.7rem;
    }
    
    .promo-code {
        padding: 0.12rem 0.4rem;
        font-size: 0.65rem;
    }
    
    .promo-countdown {
        font-size: 0.7rem;
        gap: 0.25rem;
    }
    
    .countdown-timer {
        font-size: 0.8rem;
    }
    
    .countdown-num {
        padding: 0.12rem 0.25rem;
        min-width: 20px;
        font-size: 0.7rem;
    }
    
    /* HEADER - Ajustes adicionales */
    header {
        top: 32px;
    }
    
    header.no-promo {
        top: 0;
    }
    
    .logo img {
        height: 38px;
    }
    
    header.header-visible .logo img {
        height: 36px;
    }
    
    .hero-content {
        text-align: center;
        position: relative;
        z-index: 100;
    }
    
    /* Carousel - Vuelve a estar en el viewport normal */
    .carousel-3d-container {
        position: relative;
        margin-top: 2rem;
        z-index: 5;
    }
    
    /* Mobile Menu */
    .mobile-menu-btn {
        display: block;
    }

    nav ul {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: calc(100vh - 80px);
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-left: 1px solid rgba(0, 255, 204, 0.2);
        transition: right 0.3s ease;
    }

    nav ul.active {
        right: 0;
    }

    .hero-container {
        gap: 2rem;
    }

    .carousel-3d-container {
        height: 450px;
        margin-top: 2rem;
    }

    .console-item.position-front {
        width: 420px;
    }

    .console-item.position-right {
        width: 300px;
        transform: translate(-50%, -50%) translateX(150px) translateZ(-60px) rotateY(-20deg) scale(0.8);
    }

    .console-item.position-back {
        width: 260px;
        transform: translate(-50%, -50%) translateX(-150px) translateZ(-120px) rotateY(20deg) scale(0.65);
    }

    .hero-stats-compact {
        gap: 1.5rem;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        justify-content: center;
    }

    .compatibility-strip {
        flex-wrap: wrap;
        justify-content: center;
    }

    .os-icon {
        width: 40px;
        height: 40px;
    }

    .carousel-compatibility-badge {
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
        top: 10px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .packs-grid,
    .benefits-grid,
    .videos-grid {
        grid-template-columns: 1fr;
    }

    .game-card {
        min-width: 200px;
    }

    .review-card {
        min-width: 320px;
    }

    .carousel-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 600px) {
    .carousel-3d-container {
        height: 380px;
    }

    .console-item.position-front {
        width: 350px;
    }

    .console-item.position-right {
        width: 250px;
        transform: translate(-50%, -50%) translateX(120px) translateZ(-50px) rotateY(-18deg) scale(0.75);
    }

    .console-item.position-back {
        width: 220px;
        transform: translate(-50%, -50%) translateX(-120px) translateZ(-100px) rotateY(18deg) scale(0.6);
    }

    .carousel-compatibility-badge {
        font-size: 0.65rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    
    /* ========================================
       EXTRA SMALL MOBILE OPTIMIZATIONS
       Basado en solución del usuario
       ======================================== */
    
    /* Logo un poco más pequeño en móviles muy pequeños */
    .logo img {
        height: 35px;
    }
    
    /* Botón CTA más pequeño */
    .cta-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.75rem;
    }
    
    /* Header aún más compacto */
    header {
        padding: 0.6rem 2% !important;
    }
    
    #hero {
        padding-top: 5rem;
    }
    
    /* PROMO BANNER - Extra compacto */
    .promo-banner {
        padding: 0.3rem 0.5rem;
    }
    
    .promo-content {
        gap: 0.3rem;
        flex-wrap: wrap;
    }
    
    .promo-text {
        font-size: 0.65rem;
        text-align: center;
        width: 100%;
    }
    
    .promo-text strong {
        display: inline;
    }
    
    .promo-code {
        font-size: 0.6rem;
        padding: 0.1rem 0.3rem;
    }
    
    .promo-countdown {
        font-size: 0.65rem;
    }
    
    .countdown-timer {
        font-size: 0.7rem;
    }
    
    .countdown-num {
        padding: 0.08rem 0.2rem;
        min-width: 18px;
        font-size: 0.65rem;
    }
    
    /* HEADER */
    header {
        top: 28px;
    }
    
    .hero-content {
        position: relative;
        z-index: 100;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .primary-btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.85rem;
        width: 100%;
    }
    
    /* Carousel 3D - Posición normal */
    .carousel-3d-container {
        position: relative;
        height: 300px;
        margin-top: 1.5rem;
    }

    .console-item.position-front {
        width: 280px;
    }

    .console-item.position-right,
    .console-item.position-back {
        width: 180px;
        opacity: 0.4;
    }

    .console-item.position-right {
        transform: translate(-50%, -50%) translateX(90px) translateZ(-40px) rotateY(-15deg) scale(0.7);
    }

    .console-item.position-back {
        transform: translate(-50%, -50%) translateX(-100px) translateZ(-80px) rotateY(15deg) scale(0.55);
    }

    .glow-ring {
        display: none;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.3rem 1rem;
    }

    .stat-compact .number {
        font-size: 1.5rem;
    }

    .stat-compact .label {
        font-size: 0.75rem;
    }

    .carousel-compatibility-badge {
        font-size: 0.6rem;
        padding: 0.3rem 0.6rem;
        max-width: 90%;
        text-align: center;
    }

    .console-label {
        font-size: 0.85rem;
        padding: 0.4rem 1.2rem;
    }
}

/* Extra small devices (max-width: 360px) */
@media (max-width: 360px) {
    
    /* PROMO BANNER - Ultra compacto */
    .promo-banner {
        padding: 0.25rem 0.3rem;
    }
    
    .promo-icon {
        font-size: 0.9rem;
    }
    
    .promo-text {
        font-size: 0.6rem;
    }
    
    .promo-code {
        font-size: 0.55rem;
        padding: 0.08rem 0.25rem;
    }
    
    .promo-countdown {
        font-size: 0.6rem;
    }
    
    .countdown-num {
        font-size: 0.6rem;
        min-width: 16px;
        padding: 0.05rem 0.15rem;
    }
    
    /* HEADER - ABSOLUTAMENTE MÍNIMO */
    header {
        padding: 0.35rem 2%; /* Mínimo absoluto */
        top: 26px;
    }
    
    .logo img {
        height: 30px; /* Logo muy pequeño pero legible */
    }
    
    /* HERO - Compacto */
    #hero {
        padding: 4.5rem 2% 1rem; /* Mínimo posible */
        min-height: 100vh;
    }
    
    .hero-content {
        position: relative;
        z-index: 100;
    }
    
    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 0.7rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        margin-bottom: 1rem;
    }
    
    .hero-live-stats {
        margin-bottom: 1.5rem;
    }
    
    .live-stat {
        font-size: 0.75rem;
        padding: 0.6rem 0.8rem;
    }
    
    /* Carousel - Tamaño reducido */
    .carousel-3d-container {
        height: 260px;
        margin-top: 1rem;
    }
    
    .console-item.position-front {
        width: 240px;
    }
    
    .console-item.position-right,
    .console-item.position-back {
        width: 160px;
        opacity: 0.3;
    }
}





/* ========================================
   MOBILE FIX: HIDE LIVE STATS ON MOBILE
   ======================================== */
@media (max-width: 768px) {
    /* OCULTAR completamente las stats del header en móvil */
    .hero-live-stats {
        display: none !important;
    }
    
    /* Ajustar el header para mejor distribución */
    .header-container {
        justify-content: space-between;
        gap: 1rem;
    }
    
    /* Más espacio para el nav-cta-wrapper si quieres mantenerlo */
    .nav-cta-wrapper {
        margin-left: auto; /* Empuja el botón a la derecha */
    }
    
    /* Ajustar padding del header para que sea más compacto */
    header {
        padding: 0.8rem 3% !important;
    }
    
    header.header-visible {
        padding: 0.6rem 3% !important;
    }
    
    /* Ajustar el hero para compensar el espacio perdido */
    #hero {
        padding-top: 6rem; /* Reducido de 10rem para móvil */
    }
}

/* Para pantallas EXTRA pequeñas (menos de 480px) */
@media (max-width: 480px) {
    /* Logo un poco más pequeño en móviles muy pequeños */
    .logo img {
        height: 35px;
    }
    
    /* Botón CTA más pequeño */
    .cta-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.75rem;
    }
    
    /* Header aún más compacto */
    header {
        padding: 0.6rem 2% !important;
    }
    
    #hero {
        padding-top: 5rem;
    }
}







/* ========================================
   HERO SECTION - ESTILOS ADICIONALES SEO
   Agregar a tu styles.css existente
======================================== */

/* Trust Badge (nuevo elemento) */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.1), rgba(157, 78, 221, 0.1));
    border: 1px solid rgba(0, 255, 204, 0.3);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-white);
    animation: badgePulse 3s ease-in-out infinite;
}

.trust-stars {
    font-size: 1.1rem;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(0, 255, 204, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 25px rgba(0, 255, 204, 0.5);
    }
}

/* Stats Compact (nueva versión más compacta) */
.hero-stats-compact {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.stat-compact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.stat-compact .number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-cyan);
    text-shadow: 0 0 20px rgba(0, 255, 204, 0.5);
    line-height: 1;
}

.stat-compact .label {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Carousel Compatibility Badge (nuevo elemento) */
.carousel-compatibility-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(42, 42, 62, 0.95));
    border: 2px solid rgba(0, 255, 204, 0.3);
    border-radius: 30px;
    padding: 1rem 2rem;
    font-size: 0.85rem;
    color: var(--text-gray);
    white-space: nowrap;
    height: fit-content;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.carousel-compatibility-badge strong {
    color: var(--accent-cyan);
    font-weight: 600;
}

/* Ajustes al Hero Title para SEO */
.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-white), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Ajustes al Hero Subtitle para SEO */
.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 700px;
}

/* Compatibility Strip optimizado */
.compatibility-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.05), rgba(157, 78, 221, 0.05));
    border: 1px solid rgba(0, 255, 204, 0.2);
    border-radius: 50px;
    font-size: 0.95rem;
    color: var(--text-white);
}

.compatibility-strip strong {
    color: var(--accent-cyan);
    font-weight: 600;
}

/* ========================================
   RESPONSIVE - HERO ADJUSTMENTS
======================================== */

@media (max-width: 768px) {
    .trust-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
        gap: 0.6rem;
    }
    
    .trust-stars {
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .hero-stats-compact {
        gap: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .stat-compact .number {
        font-size: 2rem;
    }
    
    .stat-compact .label {
        font-size: 0.8rem;
    }
    
    .carousel-compatibility-badge {
        position: static;
        transform: none;
        margin-top: 1.5rem;
        padding: 0.8rem 1.5rem;
        font-size: 0.75rem;
    }
    
    .compatibility-strip {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .trust-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-stats-compact {
        gap: 1rem;
    }
    
    .stat-compact .number {
        font-size: 1.8rem;
    }
    
    .stat-compact .label {
        font-size: 0.75rem;
    }
    
    .carousel-compatibility-badge {
        padding: 0.7rem 1.2rem;
        font-size: 0.7rem;
    }
    
    .carousel-compatibility-badge strong {
        display: block;
        margin-top: 0.2rem;
    }
}

/* ========================================
   CONSOLE INFO OVERLAY
   Para las consolas del carrusel 3D
======================================== */

.console-info {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(42, 42, 62, 0.9));
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 204, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
    backdrop-filter: blur(5px);
}

.console-item:hover .console-info {
    opacity: 1;
}

.console-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: var(--accent-cyan);
    margin: 0;
    line-height: 1.2;
}

.console-info p {
    font-size: 0.75rem;
    color: var(--text-gray);
    margin: 0.2rem 0 0;
}






.trust-badge-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}