:root {
            --primary: #0f0f19;
            --secondary: #1a1a2e;
            --accent: #00ffcc;
            --accent2: #ff00ff;
            --accent3: #ffcc00;
            --text: #ffffff;
            --text-secondary: #b0b0c0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: var(--primary);
            color: var(--text);
            font-family: 'Exo', sans-serif;
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(26, 26, 46, 0.8) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(26, 26, 46, 0.8) 0%, transparent 20%);
        }

        header {
            background: rgba(15, 15, 25, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 255, 204, 0.3);
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 50px;
            filter: drop-shadow(0 0 5px var(--accent));
            transition: transform 0.3s ease;
        }

        .logo:hover img {
            transform: scale(1.05);
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        nav a {
            color: var(--text);
            text-decoration: none;
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
            position: relative;
            padding: 5px 0;
            transition: all 0.3s ease;
        }

        nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s ease;
        }

        nav a:hover:after {
            width: 100%;
        }

        nav a:hover {
            color: var(--accent);
            text-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
        }

        .cta-button {
            background: linear-gradient(135deg, var(--accent), #00cc99);
            color: var(--primary);
            border: none;
            padding: 12px 25px;
            border-radius: 30px;
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 0 15px rgba(0, 255, 204, 0.5);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent3), var(--accent));
            z-index: -1;
            opacity: 0.8;
            filter: blur(10px);
            animation: neon-pulse 2s infinite alternate;
        }

        @keyframes neon-pulse {
            0% { opacity: 0.6; filter: blur(8px); }
            100% { opacity: 0.9; filter: blur(12px); }
        }

        .cta-button:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 0 30px rgba(0, 255, 204, 0.8);
            background: linear-gradient(135deg, #00ffcc, #00ffcc);
        }

        section {
            padding: 100px 5%;
            position: relative;
        }

        .section-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            text-transform: uppercase;
            letter-spacing: 2px;
            /* Removed opacity: 0 and transform to make elements visible by default */
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent), var(--accent2));
            border-radius: 2px;
        }

        .section-description {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
            font-size: 1.2rem;
            color: var(--text-secondary);
            line-height: 1.8;
            /* Removed opacity: 0 and transform to make elements visible by default */
        }

        .holographic-text {
            position: relative;
            text-shadow: 0 0 10px rgba(0, 255, 204, 0.7), 
                         0 0 20px rgba(0, 255, 204, 0.5),
                         0 0 30px rgba(0, 255, 204, 0.3);
            animation: holographic-pulse 3s infinite alternate;
        }

        @keyframes holographic-pulse {
            0% { text-shadow: 0 0 10px rgba(0, 255, 204, 0.7), 0 0 20px rgba(0, 255, 204, 0.5), 0 0 30px rgba(0, 255, 204, 0.3); }
            100% { text-shadow: 0 0 15px rgba(0, 255, 204, 0.8), 0 0 25px rgba(0, 255, 204, 0.6), 0 0 35px rgba(0, 255, 204, 0.4); }
        }

        #hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: radial-gradient(circle at center, rgba(26, 26, 46, 0.6) 0%, var(--primary) 70%);
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 800px;
            z-index: 2;
        }

        .hero-content h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: 4rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 3px;
            line-height: 1.2;
        }

        .hero-content h1 span {
            background: linear-gradient(90deg, var(--accent), var(--accent3));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-top: 40px;
        }

        .btn-secondary {
            background: transparent;
            color: var(--text);
            border: 2px solid var(--accent);
            padding: 12px 30px;
            border-radius: 30px;
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-secondary::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(0, 255, 204, 0.2), rgba(255, 0, 255, 0.2), rgba(255, 204, 0, 0.2), rgba(0, 255, 204, 0.2));
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .btn-secondary:hover::before {
            opacity: 1;
        }

        .btn-secondary:hover {
            background: rgba(0, 255, 204, 0.1);
            box-shadow: 0 0 15px rgba(0, 255, 204, 0.3);
            transform: translateY(-3px);
        }

        .hero-bg-effects {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .laser-beam {
            position: absolute;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
            animation: laser-sweep 4s infinite linear;
            opacity: 0.6;
        }

        .laser-beam:nth-child(1) {
            top: 20%;
            width: 200px;
            animation-delay: 0s;
        }

        .laser-beam:nth-child(2) {
            top: 40%;
            width: 300px;
            animation-delay: 1s;
            background: linear-gradient(90deg, transparent, var(--accent2), transparent);
        }

        .laser-beam:nth-child(3) {
            top: 60%;
            width: 250px;
            animation-delay: 2s;
            background: linear-gradient(90deg, transparent, var(--accent3), transparent);
        }

        .laser-beam:nth-child(4) {
            top: 80%;
            width: 180px;
            animation-delay: 3s;
        }

        @keyframes laser-sweep {
            0% { left: -300px; opacity: 0; }
            20% { opacity: 0.8; }
            80% { opacity: 0.8; }
            100% { left: 100%; opacity: 0; }
        }

        .hex-grid {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.1;
            background-image: 
                linear-gradient(30deg, var(--accent) 12%, transparent 12.5%, transparent 87%, var(--accent) 87.5%, var(--accent)),
                linear-gradient(150deg, var(--accent) 12%, transparent 12.5%, transparent 87%, var(--accent) 87.5%, var(--accent)),
                linear-gradient(30deg, var(--accent) 12%, transparent 12.5%, transparent 87%, var(--accent) 87.5%, var(--accent)),
                linear-gradient(150deg, var(--accent) 12%, transparent 12.5%, transparent 87%, var(--accent) 87.5%, var(--accent));
            background-size: 80px 140px;
            background-position: 0 0, 0 0, 40px 70px, 40px 70px;
            animation: grid-move 20s infinite linear;
        }

        @keyframes grid-move {
            0% { transform: translateY(0); }
            100% { transform: translateY(140px); }
        }

        .energy-orb {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, var(--accent), transparent);
            animation: float-orb 8s infinite ease-in-out;
            filter: blur(1px);
        }

        .energy-orb:nth-child(1) {
            top: 10%;
            left: 10%;
            width: 100px;
            height: 100px;
            animation-delay: 0s;
        }

        .energy-orb:nth-child(2) {
            top: 70%;
            right: 15%;
            width: 80px;
            height: 80px;
            background: radial-gradient(circle, var(--accent2), transparent);
            animation-delay: 2s;
        }

        .energy-orb:nth-child(3) {
            bottom: 20%;
            left: 20%;
            width: 60px;
            height: 60px;
            background: radial-gradient(circle, var(--accent3), transparent);
            animation-delay: 4s;
        }

        @keyframes float-orb {
            0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
            50% { transform: translateY(-30px) scale(1.2); opacity: 0.7; }
        }

        .circuit-lines {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.2;
        }

        .circuit-line {
            position: absolute;
            background: var(--accent);
            animation: circuit-pulse 3s infinite;
        }

        .circuit-line.horizontal {
            height: 2px;
            left: 0;
            right: 0;
        }

        .circuit-line.vertical {
            width: 2px;
            top: 0;
            bottom: 0;
        }

        .circuit-line:nth-child(1) {
            top: 25%;
            animation-delay: 0s;
        }

        .circuit-line:nth-child(2) {
            left: 30%;
            animation-delay: 1s;
        }

        .circuit-line:nth-child(3) {
            top: 75%;
            animation-delay: 2s;
        }

        .circuit-line:nth-child(4) {
            right: 20%;
            animation-delay: 1.5s;
        }

        @keyframes circuit-pulse {
            0%, 100% { opacity: 0.1; box-shadow: 0 0 5px var(--accent); }
            50% { opacity: 0.6; box-shadow: 0 0 20px var(--accent); }
        }

        .scroll-hint {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            z-index: 10;
        }

        .scroll-hint span {
            font-size: 0.8rem;
            margin-bottom: 10px;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .scroll-hint .mouse {
            width: 24px;
            height: 40px;
            border: 2px solid var(--accent);
            border-radius: 12px;
            position: relative;
        }

        .scroll-hint .wheel {
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 8px;
            background: var(--accent);
            border-radius: 2px;
            animation: scroll-wheel 1.5s infinite;
        }

        @keyframes scroll-wheel {
            0% { transform: translate(-50%, 0); opacity: 0; }
            50% { opacity: 1; }
            100% { transform: translate(-50%, 10px); opacity: 0; }
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .benefit-card {
            background: rgba(26, 26, 46, 0.45);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 15px;
            padding: 30px;
            border: 1px solid rgba(0, 255, 204, 0.25);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            /* Removed opacity: 0 and transform to make elements visible by default */
        }

        .benefit-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: var(--accent);
            box-shadow: 0 15px 35px rgba(0, 255, 204, 0.25);
        }

        .benefit-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--accent), var(--accent2));
        }

        .benefit-card h3 {
            font-family: 'Orbitron', sans-serif;
            margin-bottom: 15px;
            color: var(--accent);
            font-size: 1.5rem;
        }

        .benefit-card p {
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .compatibility {
            margin-top: 60px;
            text-align: center;
        }

        .compatibility h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.8rem;
            margin-bottom: 30px;
            color: var(--accent);
        }

        .compatibility-logos {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 40px;
            margin-top: 30px;
        }

        .compatibility-logo {
            height: 70px;
            filter: drop-shadow(0 0 10px rgba(0, 255, 204, 0.5));
            transition: all 0.3s ease;
        }

        .compatibility-logo:hover {
            transform: scale(1.1);
            filter: drop-shadow(0 0 15px var(--accent));
        }
        
        .compatibility-devices {
            width: 100%;
            max-width: 1200px;
            margin: 40px auto 0;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
            transition: all 0.4s ease;
            /* Removed opacity: 0 and transform to make elements visible by default */
        }
        
        .compatibility-devices:hover {
            transform: translateY(-5px) scale(1.01);
            box-shadow: 0 20px 40px rgba(0, 255, 204, 0.3);
        }

        .packs-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        @media (max-width: 900px) {
    .packs-container {
        grid-template-columns: 1fr;
    }
}

        .pack-content {
            flex: 1;
            padding: 20px 18px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .pack-card {
            background: rgba(26, 26, 46, 0.7);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(0, 255, 204, 0.2);
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
            transform-style: preserve-3d;
            perspective: 1000px;
            display: flex;
            flex-direction: column;
            min-width: 0;
            min-height: 500px; /* Un poco más alto para acomodar el contenido */
            height: auto;
        }

        .pack-card:hover {
            transform: translateY(-10px) rotateY(5deg) rotateX(5deg);
            border-color: var(--accent);
            box-shadow: 0 15px 35px rgba(0, 255, 204, 0.3);
        }

        .pack-image {
            width: 100%;
            height: 350px; /* Ajusta la altura para que se vea más cuadrada */
            object-fit: cover;
            object-position: center;
            border-bottom: 3px solid var(--accent);
            transition: transform 0.5s ease;
            background: #222;
        }

        .pack-card:hover .pack-image {
            transform: scale(1.05);
        }

        .pack-content {
            flex: 1;
            padding: 18px 16px 22px 16px; /* Más espacio abajo para el botón */
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .pack-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--accent);
        }

        .pack-price {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.8rem;
            color: var(--accent3);
            margin: 10px 0 18px 0;
            text-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
        }

        .pack-description {
            color: var(--text-secondary);
            margin-bottom: 12px;
            line-height: 1.6;
            flex: 1 1 auto;
        }

        .pack-buy {
            margin-top: auto;
            width: 100%;
            min-height: 44px;
            font-size: 1rem;
            display: block;
        }

        .more-offers {
            text-align: center;
            margin-top: 50px;
        }

        .more-offers a {
            color: var(--accent);
            font-family: 'Orbitron', sans-serif;
            text-decoration: none;
            font-size: 1.1rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            position: relative;
        }

        .more-offers a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s ease;
        }

        .more-offers a:hover::after {
            width: 100%;
        }

        .more-offers a:hover {
            color: var(--accent2);
            text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
        }

        #videos {
            background: radial-gradient(circle at center, rgba(26, 26, 46, 0.8) 0%, var(--primary) 70%);
        }
        
        .videos-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1400px;
            margin: 50px auto 0;
        }
        
        .video-card {
            background: rgba(26, 26, 46, 0.45);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid rgba(0, 255, 204, 0.25);
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            /* Removed opacity: 0 and transform to make elements visible by default */
        }
        
        .video-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: var(--accent);
            box-shadow: 0 15px 35px rgba(0, 255, 204, 0.3);
        }
        
        .video-wrapper {
            position: relative;
            padding-top: 56.25%;
            overflow: hidden;
        }
        
        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        
        .video-info {
            padding: 25px;
            text-align: center;
        }
        
        .video-info h3 {
            font-family: 'Orbitron', sans-serif;
            color: var(--accent);
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        
        .video-info p {
            color: var(--text-secondary);
            line-height: 1.6;
            font-size: 1rem;
        }

        #logo-hero {
            position: relative;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            background-color: var(--primary);
        }
        
        .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            opacity: 0.45;
        }
        
        .video-background iframe {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .logo-center {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 20px;
        }
        
        .logo-center img {
            max-width: 900px;
            width: 90%;
            height: auto;
            filter: drop-shadow(0 0 20px rgba(0, 255, 204, 0.7));
            animation: pulse 3s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .platforms-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }

        .platform-stat {
            background: rgba(26, 26, 46, 0.45);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 10px;
            padding: 25px;
            text-align: center;
            border: 1px solid rgba(0, 255, 204, 0.25);
            transition: all 0.4s ease;
            /* Removed opacity: 0 and transform to make elements visible by default */
        }

        .platform-stat:hover {
            border-color: var(--accent);
            box-shadow: 0 10px 25px rgba(0, 255, 204, 0.25);
            transform: translateY(-10px) scale(1.03);
        }

        .platform-number {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.5rem;
            color: var(--accent3);
            margin-bottom: 10px;
            text-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
        }

        .platform-name {
            font-size: 1.2rem;
            color: var(--text);
        }

        .testimonials-container {
            max-width: 800px;
            margin: 50px auto 0;
            position: relative;
        }

        .swiper {
            width: 100%;
            height: 350px;
            padding: 20px 0;
        }

        .testimonial {
            background: rgba(26, 26, 46, 0.45);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 15px;
            padding: 40px 30px;
            margin: 0 20px;
            border: 1px solid rgba(0, 255, 204, 0.25);
            position: relative;
            height: 300px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        .testimonial:before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 4rem;
            color: var(--accent);
            opacity: 0.3;
            font-family: serif;
        }

        .testimonial-content {
            font-style: italic;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
            font-size: 1.1rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            font-family: 'Orbitron', sans-serif;
            color: var(--accent);
            font-size: 1.1rem;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent), var(--accent2));
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-weight: bold;
            color: var(--primary);
        }

        .testimonial-date {
            font-size: 0.9rem;
            color: var(--text-secondary);
            display: block;
        }

        .trust-badges {
            display: flex;
            justify-content: center;
            gap: 50px;
            margin-top: 60px;
            flex-wrap: wrap;
        }

        .trust-badge {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            text-decoration: none;
            color: var(--text-secondary);
            transition: all 0.3s ease;
        }

        .trust-badge:hover {
            color: var(--accent);
            transform: translateY(-5px);
        }

        .trust-logo {
            height: 50px;
            filter: drop-shadow(0 0 5px rgba(0, 255, 204, 0.5));
        }

        #cta {
            text-align: center;
            padding: 100px 5%;
            background: radial-gradient(circle at center, rgba(26, 26, 46, 0.8) 0%, var(--primary) 70%);
        }

        #cta h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            font-family: 'Orbitron', sans-serif;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(90deg, var(--accent), var(--accent3));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            /* Removed opacity: 0 and transform to make elements visible by default */
        }

        #cta p {
            font-size: 1.2rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto 40px;
            line-height: 1.6;
            /* Removed opacity: 0 and transform to make elements visible by default */
        }

        footer {
            background: rgba(10, 10, 15, 0.95);
            padding: 60px 5% 40px;
            border-top: 1px solid rgba(0, 255, 204, 0.2);
            position: relative;
            overflow: hidden;
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .footer-logo {
            height: 70px;
            margin-bottom: 25px;
            filter: drop-shadow(0 0 10px var(--accent));
            transition: transform 0.3s ease;
        }

        .footer-logo:hover {
            transform: scale(1.1);
        }

        .footer-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, var(--accent), var(--accent3));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .footer-description {
            max-width: 600px;
            margin: 0 auto 30px;
            color: var(--text-secondary);
            line-height: 1.8;
            font-size: 1.1rem;
        }

        .footer-link {
            display: inline-block;
            background: linear-gradient(135deg, var(--accent), #00cc99);
            color: var(--primary);
            text-decoration: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 20px;
            transition: all 0.3s ease;
            box-shadow: 0 0 15px rgba(0, 255, 204, 0.5);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .footer-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent3), var(--accent));
            z-index: -1;
            opacity: 0.8;
            filter: blur(10px);
            animation: neon-pulse 2s infinite alternate;
        }

        .footer-link:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 0 25px rgba(0, 255, 204, 0.8);
        }

        .copyright {
            margin-top: 40px;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(15, 15, 25, 0.95);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            background: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 15px;
            padding: 40px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            border: 1px solid var(--accent);
            box-shadow: 0 0 30px rgba(0, 255, 204, 0.3);
            position: relative;
            transform: translateY(-20px);
            opacity: 0;
            transition: all 0.4s ease;
        }

        .modal.show .modal-content {
            transform: translateY(0);
            opacity: 1;
        }

        .close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 1.5rem;
            color: var(--text-secondary);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .close-modal:hover {
            color: var(--accent);
            transform: rotate(90deg);
        }

        .modal-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.8rem;
            margin-bottom: 30px;
            color: var(--accent);
        }

        .modal-buttons {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 30px;
        }

        .modal-button {
            padding: 15px;
            border-radius: 8px;
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            font-size: 1rem;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .modal-button.primary {
            background: linear-gradient(135deg, var(--accent), #00cc99);
            color: var(--primary);
        }

        .modal-button.secondary {
            background: transparent;
            color: var(--text);
            border: 2px solid var(--accent);
        }

        .modal-button:hover {
            transform: translateY(-3px) scale(1.03);
            box-shadow: 0 5px 15px rgba(0, 255, 204, 0.3);
        }

        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .particle {
            position: absolute;
            border-radius: 50%;
            background: var(--accent);
            opacity: 0.8;
            animation: enhanced-float 12s infinite linear;
            box-shadow: 0 0 10px currentColor;
        }

        .particle.glow {
            animation: glow-particle 3s infinite alternate;
        }

        @keyframes enhanced-float {
            0% { transform: translateY(100vh) translateX(0) rotate(0deg); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(-100px) translateX(200px) rotate(360deg); opacity: 0; }
        }

        @keyframes glow-particle {
            0% { box-shadow: 0 0 5px currentColor; }
            100% { box-shadow: 0 0 25px currentColor, 0 0 40px currentColor; }
        }

        .music-btn {
            position: fixed;
            bottom: 30px;
            right: 20px;
            width: 80px;
            height: 80px;
            background: #4a1a6b;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 0 15px #9c27b0, 0 0 25px #e94560;
            border: 2px solid #f1b963;
            z-index: 1000;
            transition: all 0.3s ease;
            animation: float 3s ease-in-out infinite;
        }

        .music-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 0 25px #9c27b0, 0 0 35px #e94560;
        }

        .music-btn img {
            width: 40px;
            height: 40px;
            margin-bottom: 5px;
        }

        .music-btn .text {
            font-size: 0.7rem;
            color: white;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }

        @keyframes glow {
            0% { box-shadow: 0 0 10px #9c27b0; }
            50% { box-shadow: 0 0 25px #e94560, 0 0 35px #9c27b0; }
            100% { box-shadow: 0 0 10px #9c27b0; }
        }

        .glow {
            animation: glow 2s infinite;
        }

        @media (max-width: 1200px) {
            .videos-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 3rem;
            }
            
            nav ul {
                gap: 15px;
            }

            .testimonial {
                height: 350px;
            }
            
            .videos-container {
                grid-template-columns: 1fr;
                max-width: 700px;
            }
        }

        @media (max-width: 768px) {
            header {
                flex-direction: column;
                padding: 15px;
            }
            
            nav {
                margin: 20px 0;
            }
            
            nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .section-title {
                font-size: 2rem;
            }

            .testimonial {
                height: 400px;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .hero-content p {
                font-size: 1rem;
            }
            
            section {
                padding: 70px 5%;
            }

            .testimonial {
                height: 450px;
                padding: 30px 20px;
            }
        }


        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 44px;
            height: 44px;
            background: none;
            border: none;
            cursor: pointer;
            z-index: 2001;
            margin-left: 10px;
        }
        .hamburger span {
            display: block;
            width: 28px;
            height: 4px;
            background: var(--accent);
            margin: 4px 0;
            border-radius: 2px;
            transition: all 0.3s;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            nav {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100vw;
                background: rgba(15,15,25,0.98);
                border-bottom: 1px solid rgba(0,255,204,0.2);
                box-shadow: 0 4px 20px rgba(0,255,204,0.07);
                transform: translateY(-120%);
                transition: transform 0.3s;
                z-index: 2000;
            }
            nav.open {
                transform: translateY(0);
            }
            nav ul {
                flex-direction: column;
                gap: 0;
            }
            nav li {
                width: 100%;
                text-align: center;
                padding: 18px 0;
                border-bottom: 1px solid rgba(0,255,204,0.07);
            }
        }






        .info-carousel {
        margin-top: 60px;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        position: relative;
        overflow: hidden;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .carousel-container {
        display: flex;
        transition: transform 0.5s ease;
    }

    .carousel-slide {
        min-width: 100%;
        position: relative;
    }

    .carousel-image {
        width: 100%;
        height: 550px;
        object-fit: cover;
        display: block;
    }

    .carousel-caption {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(15, 15, 25, 0.85);
        padding: 20px;
        text-align: center;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .carousel-caption h4 {
        font-family: 'Orbitron', sans-serif;
        color: var(--accent);
        margin-bottom: 5px;
        font-size: 1.3rem;
    }

    .carousel-nav {
        position: absolute;
        top: 50%;
        width: 100%;
        display: flex;
        justify-content: space-between;
        transform: translateY(-50%);
        z-index: 10;
        padding: 0 20px;
    }

    .carousel-btn {
        background: rgba(26, 26, 46, 0.7);
        color: var(--accent);
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        font-size: 1.5rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .carousel-btn:hover {
        background: var(--accent);
        color: var(--primary);
        transform: scale(1.1);
    }

    .carousel-dots {
        display: flex;
        justify-content: center;
        margin-top: 20px;
        gap: 10px;
    }

    .carousel-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .carousel-dot.active {
        background: var(--accent);
        transform: scale(1.2);
    }



    /* Sección ROMs - ESTILOS CORREGIDOS */
#roms {
    background: radial-gradient(circle at center, rgba(26, 26, 46, 0.8) 0%, var(--primary) 70%);
    position: relative;
}

/* ✅ Asegurar que los títulos sean visibles */
#roms .section-title,
#roms .section-description {
    opacity: 1 !important;
    transform: none !important;
}

.roms-platforms-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Acordeón de plataforma */
.platform-accordion {
    background: rgba(26, 26, 46, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 255, 204, 0.25);
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.platform-accordion:hover {
    border-color: rgba(0, 255, 204, 0.5);
    box-shadow: 0 10px 35px rgba(0, 255, 204, 0.2);
}

.platform-header {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(15, 15, 25, 0.6);
}

.platform-header:hover {
    background: rgba(15, 15, 25, 0.8);
}

.platform-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.platform-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--primary);
}

.platform-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    color: var(--accent);
    margin: 0;
}

.games-count {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.platform-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.toggle-platform {
    background: rgba(0, 255, 204, 0.1);
    border: 1px solid var(--accent);
    color: var(--accent);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-platform:hover {
    background: var(--accent);
    color: var(--primary);
    transform: scale(1.1);
}

.toggle-platform .chevron {
    transition: transform 0.3s ease;
}

.platform-accordion.active .toggle-platform .chevron {
    transform: rotate(180deg);
}

/* ✅ CORREGIDO: Contenido de plataforma */
.platform-content {
    max-height: 0;
    overflow-y: auto; /* ✅ Cambiado de hidden a auto */
    overflow-x: hidden;
    transition: max-height 0.5s ease;
    /* ✅ Scrollbar suave */
    scroll-behavior: smooth;
}

.platform-accordion.active .platform-content {
    max-height: 800px; /* ✅ Altura fija para que funcione el scroll */
}

/* Controles de juegos */
.games-controls {
    padding: 25px 30px 15px;
    border-bottom: 1px solid rgba(0, 255, 204, 0.1);
    background: rgba(15, 15, 25, 0.4);
    position: sticky; /* ✅ Mantener controles visibles al hacer scroll */
    top: 0;
    z-index: 10;
}

.search-container {
    margin-bottom: 20px;
}

.games-search {
    width: 100%;
    padding: 12px 20px;
    background: rgba(15, 15, 25, 0.8);
    border: 1px solid rgba(0, 255, 204, 0.3);
    border-radius: 25px;
    color: var(--text);
    font-family: 'Exo', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.games-search:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.3);
}

.games-search::placeholder {
    color: var(--text-secondary);
}

.search-results {
    margin-top: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-align: right;
}

.search-results .results-count {
    color: var(--accent3);
    font-weight: 600;
}

/* Filtro alfabético */
.alphabet-filter {
    overflow-x: auto;
    padding-bottom: 10px;
}

.alphabet-scroll {
    display: flex;
    gap: 5px;
    min-width: max-content;
}

.letter-filter {
    padding: 8px 12px;
    background: rgba(15, 15, 25, 0.6);
    border: 1px solid rgba(0, 255, 204, 0.2);
    border-radius: 20px;
    color: var(--text-secondary);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 40px;
    text-align: center;
}

.letter-filter:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.letter-filter.active {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

/* ✅ CORREGIDO: Grid de juegos */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
    padding: 25px 30px;
    /* ✅ ELIMINADO: max-height y overflow para que el scroll sea del contenedor padre */
    min-height: 200px; /* ✅ Altura mínima para que se vea contenido inicial */
}

.game-item {
    background: rgba(15, 15, 25, 0.6);
    border: 1px solid rgba(0, 255, 204, 0.1);
    border-radius: 10px;
    padding: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.game-item:hover {
    transform: translateY(-3px);
    border-color: var(--accent);
    box-shadow: 0 5px 20px rgba(0, 255, 204, 0.2);
}

.game-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 204, 0.1), transparent);
    transition: left 0.5s ease;
}

.game-item:hover::before {
    left: 100%;
}

.game-title {
    font-family: 'Exo', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.4;
    margin: 0;
    font-weight: 400;
}

.game-number {
    color: var(--accent3);
    font-size: 0.8rem;
    margin-bottom: 5px;
    font-family: 'Orbitron', sans-serif;
}

/* Estados de carga */
.games-loading {
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    color: var(--text-secondary);
}

.games-loading.active {
    display: flex;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0, 255, 204, 0.3);
    border-top: 3px solid var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Botón cargar más - OCULTO */
.load-more-container {
    display: none !important;
}

/* ✅ Scrollbar personalizado para platform-content */
.platform-content::-webkit-scrollbar {
    width: 10px;
}

.platform-content::-webkit-scrollbar-track {
    background: rgba(15, 15, 25, 0.8);
    border-radius: 5px;
}

.platform-content::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 5px;
    border: 2px solid rgba(15, 15, 25, 0.8);
}

.platform-content::-webkit-scrollbar-thumb:hover {
    background: var(--accent2);
}

.alphabet-filter::-webkit-scrollbar {
    height: 6px;
}

.alphabet-filter::-webkit-scrollbar-track {
    background: rgba(15, 15, 25, 0.6);
    border-radius: 3px;
}

.alphabet-filter::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 3px;
}

/* Elemento trigger para scroll infinito */
.scroll-trigger {
    height: 1px;
    width: 100%;
    opacity: 0;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
    .platform-header {
        padding: 20px;
    }
    
    .platform-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .platform-accordion.active .platform-content {
        max-height: 600px; /* ✅ Reducir altura en móviles */
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        padding: 15px 20px;
    }
    
    .games-controls {
        padding: 20px 20px 10px;
    }
    
    .alphabet-scroll {
        gap: 3px;
    }
    
    .letter-filter {
        padding: 6px 8px;
        font-size: 0.7rem;
        min-width: 35px;
    }
}

@media (max-width: 480px) {
    .platform-name {
        font-size: 1.2rem;
    }
    
    .games-count {
        font-size: 0.8rem;
    }
    
    .platform-accordion.active .platform-content {
        max-height: 500px; /* ✅ Aún más pequeño en pantallas muy pequeñas */
    }
}






/* CSS MODAL DETALLE JUEGOS */

.game-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 25, 0.98);
    z-index: 3000;
    overflow-y: auto;
}

.game-modal .modal-content {
    background: rgba(26, 26, 46, 0.95);
    margin: 2% auto;
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--accent);
    max-width: 900px;
    position: relative;
    backdrop-filter: blur(20px);
}

.game-header {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
    align-items: flex-start;
}

#modal-game-cover {
    width: 250px;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid var(--accent);
}

.game-basic-info {
    flex: 1;
}

.game-basic-info h2 {
    color: var(--accent);
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 15px;
}

.game-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.game-meta span {
    background: rgba(0, 255, 204, 0.1);
    padding: 5px 12px;
    border-radius: 15px;
    border: 1px solid var(--accent);
    color: var(--text);
    font-size: 0.9rem;
}

.game-media {
    margin: 25px 0;
}

.screenshots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}

.screenshot-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.screenshot-img:hover {
    transform: scale(1.05);
}

.game-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.game-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.detail-item {
    background: rgba(15, 15, 25, 0.6);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 204, 0.2);
}








/* Botón de compra de plataforma */
.platform-buy-btn {
    background: linear-gradient(135deg, #ff3366, #ff0066);
    color: white !important;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 25px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 51, 102, 0.5);
    border: 2px solid #ff3366;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.platform-buy-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff0066, #ff3366, #ff0066);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.platform-buy-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 25px rgba(255, 51, 102, 0.8);
    color: white !important;
    background: linear-gradient(135deg, #ff0066, #ff3366);
}

.platform-buy-btn:hover::before {
    opacity: 1;
}

/* Efecto de pulso para llamar más la atención */
@keyframes buy-pulse {
    0% { box-shadow: 0 0 15px rgba(255, 51, 102, 0.5); }
    50% { box-shadow: 0 0 25px rgba(255, 51, 102, 0.8), 0 0 35px rgba(255, 51, 102, 0.4); }
    100% { box-shadow: 0 0 15px rgba(255, 51, 102, 0.5); }
}

.platform-buy-btn {
    animation: buy-pulse 2s infinite;
}

/* Responsive para el botón */
@media (max-width: 768px) {
    .platform-buy-btn {
        padding: 8px 14px;
        font-size: 0.7rem;
        margin-right: 10px;
    }
    
    .platform-actions {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: flex-end;
    }
}

@media (max-width: 480px) {
    .platform-buy-btn {
        padding: 6px 12px;
        font-size: 0.65rem;
        letter-spacing: 0.5px;
    }
}




/* ===== COMPATIBILITY MODERN STYLES ===== */
.compatibility-modern {
    text-align: center;
    margin-top: 80px;
    padding: 60px 5%;
    background: radial-gradient(circle at center, rgba(26, 26, 46, 0.4) 0%, transparent 70%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.compatibility-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 204, 0.05), transparent);
    z-index: -1;
}

.compatibility-modern h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 15px;
    background: linear-gradient(90deg, var(--accent), var(--accent3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(0, 255, 204, 0.3);
}

.compatibility-subtitle {
    color: var(--text-secondary);
    font-size: 1.3rem;
    margin-bottom: 60px;
    font-weight: 300;
    letter-spacing: 1px;
}

.compatibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.device-card {
    position: relative;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(15, 15, 25, 0.9));
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(0, 255, 204, 0.2);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    cursor: pointer;
    min-height: 280px;
    display: flex;
    align-items: center;
}

.device-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 204, 0.1), transparent);
    transition: left 0.7s ease;
}

.device-card:hover::before {
    left: 100%;
}

.device-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--accent);
    box-shadow: 0 25px 50px rgba(0, 255, 204, 0.2);
}

.device-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 255, 204, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.device-card:hover .device-glow {
    opacity: 1;
}

.device-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.device-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 15px rgba(0, 255, 204, 0.6));
    transition: transform 0.3s ease;
}

.device-card:hover .device-icon {
    transform: scale(1.1);
}

.device-card h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    color: var(--accent);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.device-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent2), var(--accent3));
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(255, 0, 255, 0.3);
}

.device-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
    font-weight: 300;
}

/* Efectos específicos por dispositivo con colores únicos */
.device-card[data-device="windows"] {
    border-color: rgba(0, 123, 255, 0.3);
}

.device-card[data-device="windows"]:hover {
    box-shadow: 0 25px 50px rgba(0, 123, 255, 0.25);
    border-color: #007bff;
}

.device-card[data-device="windows"] .device-badge {
    background: linear-gradient(135deg, #007bff, #0056b3);
}

.device-card[data-device="steam-deck"] {
    border-color: rgba(102, 16, 242, 0.3);
}

.device-card[data-device="steam-deck"]:hover {
    box-shadow: 0 25px 50px rgba(102, 16, 242, 0.25);
    border-color: #6610f2;
}

.device-card[data-device="steam-deck"] .device-badge {
    background: linear-gradient(135deg, #6610f2, #4a0cad);
}

.device-card[data-device="android"] {
    border-color: rgba(52, 199, 89, 0.3);
}

.device-card[data-device="android"]:hover {
    box-shadow: 0 25px 50px rgba(52, 199, 89, 0.25);
    border-color: #34c759;
}

.device-card[data-device="android"] .device-badge {
    background: linear-gradient(135deg, #34c759, #28a745);
}

.device-card[data-device="retrobat"] {
    border-color: rgba(255, 59, 48, 0.3);
}

.device-card[data-device="retrobat"]:hover {
    box-shadow: 0 25px 50px rgba(255, 59, 48, 0.25);
    border-color: #ff3b30;
}

.device-card[data-device="retrobat"] .device-badge {
    background: linear-gradient(135deg, #ff3b30, #d70015);
}

/* Efecto de partículas en hover */
.device-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent), var(--accent2), var(--accent3), var(--accent));
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.device-card:hover::after {
    opacity: 0.3;
    animation: border-glow 2s linear infinite;
}

@keyframes border-glow {
    0% { opacity: 0.3; }
    50% { opacity: 0.6; }
    100% { opacity: 0.3; }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .compatibility-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .compatibility-modern {
        padding: 40px 5%;
        margin-top: 60px;
    }
    
    .compatibility-modern h3 {
        font-size: 2.2rem;
    }
    
    .compatibility-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .compatibility-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .device-card {
        padding: 30px 25px;
        min-height: 250px;
    }
    
    .device-icon {
        font-size: 3.5rem;
        margin-bottom: 20px;
    }
    
    .device-card h4 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .compatibility-modern h3 {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    
    .compatibility-subtitle {
        font-size: 1rem;
    }
    
    .device-card {
        padding: 25px 20px;
        min-height: 220px;
    }
    
    .device-icon {
        font-size: 3rem;
    }
    
    .device-card h4 {
        font-size: 1.3rem;
    }
    
    .device-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
    }
    
    .device-card p {
        font-size: 1rem;
    }
}




/* ===== MAIN VIDEO STYLES ===== */
.main-video-container {
    max-width: 1200px;
    margin: 0 auto 60px;
    background: rgba(26, 26, 46, 0.45);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 204, 0.25);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.main-video-container:hover {
    border-color: var(--accent);
    box-shadow: 0 20px 45px rgba(0, 255, 204, 0.2);
    transform: translateY(-5px);
}

.main-video-wrapper {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.main-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.main-video-info {
    padding: 30px 40px;
    text-align: center;
    background: linear-gradient(180deg, rgba(15, 15, 25, 0.8) 0%, rgba(26, 26, 46, 0.9) 100%);
}

.main-video-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.3;
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.3);
}

.main-video-subtitle {
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
    letter-spacing: 0.5px;
}

/* Ajustar el margen superior de los videos existentes */
.videos-container {
    margin-top: 20px;
}

/* Responsive Design para el video principal */
@media (max-width: 768px) {
    .main-video-container {
        margin: 0 auto 40px;
        border-radius: 15px;
    }
    
    .main-video-info {
        padding: 25px 20px;
    }
    
    .main-video-title {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }
    
    .main-video-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .main-video-info {
        padding: 20px 15px;
    }
    
    .main-video-title {
        font-size: 1.2rem;
        letter-spacing: 0.5px;
    }
    
    .main-video-subtitle {
        font-size: 1rem;
    }
}



/* ===== FEATURED VIDEO SECTION ===== */
.featured-video {
    max-width: 1400px;
    margin: 0 auto 60px;
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid transparent;
    background-image: linear-gradient(rgba(26, 26, 46, 0.6), rgba(26, 26, 46, 0.6)), 
                      linear-gradient(135deg, var(--accent), var(--accent2), var(--accent3));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 20px 60px rgba(0, 255, 204, 0.2);
    transition: all 0.5s ease;
    position: relative;
}

.featured-video::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent), var(--accent2), var(--accent3), var(--accent));
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: border-pulse 3s ease-in-out infinite;
}

@keyframes border-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.featured-video:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 255, 204, 0.3);
}

.featured-video:hover::before {
    opacity: 0.5;
}

.featured-video-wrapper {
    position: relative;
    padding-top: 56.25%;
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.1), rgba(255, 0, 255, 0.1));
}

.featured-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.featured-video-info {
    padding: 35px 40px;
    background: rgba(15, 15, 25, 0.8);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.featured-video-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--accent2), var(--accent3), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.featured-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0, 255, 204, 0.4);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.featured-video-info h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--accent);
    font-size: 1.8rem;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 0 20px rgba(0, 255, 204, 0.5);
}

.featured-video-info p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== RESPONSIVE FEATURED VIDEO ===== */
@media (max-width: 992px) {
    .featured-video-info h3 {
        font-size: 1.5rem;
    }

    .featured-video-info p {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .featured-video-info {
        padding: 25px 20px;
    }

    .featured-video-info h3 {
        font-size: 1.3rem;
    }

    .featured-video-info p {
        font-size: 1rem;
    }

    .featured-badge {
        font-size: 0.75rem;
        padding: 6px 16px;
    }
}

@media (max-width: 480px) {
    .featured-video-info h3 {
        font-size: 1.1rem;
    }

    .featured-video-info p {
        font-size: 0.95rem;
    }
}


