/* ===== VARIABLES GLOBALES ===== */
:root {
    --neon-blue: #00f3ff;
    --neon-pink: #ff00cc;
    --neon-purple: #9d00ff;
    --neon-green: #00ff88;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --grid-color: rgba(0, 243, 255, 0.1);
    --terminal-green: #39ff14;
    --cyber-black: #0c0c1d;
}

/* ===== RESET Y ESTILOS BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--dark-bg);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
    font-weight: 500;
    padding-top: 80px;
    background-image: linear-gradient(rgba(12, 12, 29, 0.9), rgba(12, 12, 29, 0.9));
}

/* ===== EFECTOS DE FONDO CYBERPUNK ===== */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 243, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 204, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(157, 0, 255, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, var(--darker-bg) 0%, #1a1a2e 50%, #16213e 100%);
    z-index: -3;
    animation: backgroundPulse 8s ease-in-out infinite alternate;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 243, 255, 0.03) 2px,
        rgba(0, 243, 255, 0.03) 4px
    );
    z-index: -2;
    animation: scanlines 0.1s linear infinite;
}

.cyber-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
    animation: gridMove 20s linear infinite;
    opacity: 0.5;
}

.circuit-connections {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

.crt-effect {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1),
        rgba(0, 0, 0, 0.1) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    z-index: 1;
    opacity: 0.15;
}

.glitch-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://i.imgur.com/3YQ5z0G.png') center/cover;
    opacity: 0.03;
    z-index: -1;
    animation: glitch-flicker 0.1s infinite alternate;
}

/* ===== ANIMACIONES ===== */
@keyframes backgroundPulse {
    0% { 
        background: 
            radial-gradient(circle at 20% 80%, rgba(0, 243, 255, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(255, 0, 204, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 40% 40%, rgba(157, 0, 255, 0.1) 0%, transparent 50%),
            linear-gradient(135deg, var(--darker-bg) 0%, #1a1a2e 50%, #16213e 100%);
    }
    100% { 
        background: 
            radial-gradient(circle at 80% 20%, rgba(0, 243, 255, 0.2) 0%, transparent 60%),
            radial-gradient(circle at 20% 80%, rgba(255, 0, 204, 0.2) 0%, transparent 60%),
            radial-gradient(circle at 60% 60%, rgba(157, 0, 255, 0.15) 0%, transparent 60%),
            linear-gradient(135deg, var(--darker-bg) 0%, #1a1a2e 50%, #16213e 100%);
    }
}

@keyframes scanlines {
    0% { transform: translateY(0); }
    100% { transform: translateY(4px); }
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

@keyframes neonGlow {
    0%, 100% { text-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue); }
    50% { text-shadow: 0 0 5px var(--neon-blue), 0 0 10px var(--neon-blue); }
}

@keyframes neonPulse {
    0%, 100% { box-shadow: 0 0 10px 0 rgba(0, 243, 255, 0.7); }
    50% { box-shadow: 0 0 20px 5px rgba(0, 243, 255, 0.9); }
}

@keyframes glitch {
    0% { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
    20% { clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%); }
    40% { clip-path: polygon(0 30%, 100% 30%, 100% 40%, 0 40%); }
    60% { clip-path: polygon(0 50%, 100% 50%, 100% 60%, 0 60%); }
    80% { clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%); }
    100% { clip-path: polygon(0 90%, 100% 90%, 100% 100%, 0 100%); }
}

@keyframes circuitFlow {
    0% { stroke-dashoffset: 1000; }
    100% { stroke-dashoffset: 0; }
}

@keyframes menuSlideDown {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes vip-glow {
    from {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    }
    to {
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.3);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% { text-shadow: 0 0 15px rgba(255, 42, 109, 0.7); }
    50% { text-shadow: 0 0 25px rgba(255, 42, 109, 0.9); }
    100% { text-shadow: 0 0 15px rgba(255, 42, 109, 0.7); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

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

@keyframes glitch-flicker {
    0% { opacity: 0.02; }
    100% { opacity: 0.05; }
}

@keyframes menuHop {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

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

@keyframes glitch-effect {
    0% { transform: translate(0); }
    20% { transform: translate(-5px, 5px); }
    40% { transform: translate(-5px, -5px); }
    60% { transform: translate(5px, 5px); }
    80% { transform: translate(5px, -5px); }
    100% { transform: translate(0); }
}

@keyframes rainbow {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* ===== MENÚ DE NAVEGACIÓN ===== */
.cyber-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background: rgba(10, 10, 10, 0);
    backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    padding: 20px 15px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateY(0);
    box-shadow: 0 0 0 rgba(0, 243, 255, 0);
}

.cyber-menu.sticky {
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--neon-blue);
    padding: 12px 15px;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
    animation: menuSlideDown 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cyber-menu.hidden {
    transform: translateY(-100%);
}

.cyber-menu::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-pink));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    z-index: -1;
}

.cyber-menu.sticky::before {
    transform: scaleX(1);
}

.cyber-menu a {
    color: var(--neon-blue);
    text-decoration: none;
    padding: 12px 20px;
    margin: 0 5px;
    border-radius: 30px;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    transform: translateY(0);
}

.cyber-menu.sticky a {
    transform: translateY(0);
}

.cyber-menu a:hover {
    color: white;
    background: rgba(0, 243, 255, 0.1);
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
    transform: translateY(-3px);
}

.cyber-menu a.active {
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    color: white;
    box-shadow: 0 5px 20px rgba(157, 0, 255, 0.5);
    border-color: var(--neon-pink);
    transform: translateY(-5px);
}

.cyber-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 243, 255, 0.2),
        transparent
    );
    transition: all 0.6s ease;
}

.cyber-menu a:hover::before {
    left: 100%;
}

.cyber-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--neon-pink);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.cyber-menu a.active::after,
.cyber-menu a:hover::after {
    width: 60%;
}

.cyber-menu.sticky a:hover {
    animation: menuHop 0.4s ease;
}

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
    padding: 0 !important;
    background: none !important;
    border: none !important;
}

.nav-logo {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(0, 255, 157, 0.5));
    transition: all 0.3s ease;
}

.nav-logo:hover {
    filter: drop-shadow(0 0 20px rgba(0, 255, 157, 0.8));
    transform: scale(1.1);
}

/* Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
    user-select: none;
    color: #ccc !important;
    text-decoration: none;
    font-weight: 500;
    margin: 0 12px;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 20, 40, 0.95);
    border: 2px solid #00ff9d;
    border-radius: 10px;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 255, 157, 0.3);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #e0e0e0;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 255, 157, 0.2);
    transition: all 0.3s ease;
    margin: 0;
    font-size: 1rem;
    text-transform: none;
    letter-spacing: normal;
    border-radius: 0;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: rgba(0, 255, 157, 0.1);
    color: #00ff9d;
    transform: translateX(5px);
}

.dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeInDown 0.3s ease;
}

/* VIP Link */
.vip-link {
    background: linear-gradient(45deg, #ffd700, #ffed4e) !important;
    color: #000 !important;
    font-weight: 900 !important;
    text-shadow: none !important;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5) !important;
    animation: vip-glow 2s infinite alternate;
}

.vip-link:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8) !important;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    width: 30px;
    height: 25px;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--neon-blue);
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(0, 243, 255, 0.5);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: var(--neon-pink);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
    background: var(--neon-pink);
}

/* Mobile Menu */
.nav-mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding-top: 100px;
    overflow-y: auto;
}

.nav-mobile.active {
    display: block;
    animation: slideInRight 0.4s ease;
}

.nav-mobile-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.nav-mobile a {
    color: var(--neon-blue);
    text-decoration: none;
    padding: 15px 30px;
    border: 2px solid var(--neon-blue);
    border-radius: 30px;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
    transition: all 0.4s ease;
    width: 90%;
    max-width: 300px;
    text-align: center;
    background: rgba(0, 243, 255, 0.05);
}

.nav-mobile a:hover,
.nav-mobile a:active {
    background: rgba(0, 243, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
    transform: scale(1.05);
}

.nav-mobile a.active {
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    color: white;
    border-color: var(--neon-pink);
}

.nav-mobile .vip-link {
    background: linear-gradient(45deg, #ffd700, #ffed4e) !important;
    color: #000 !important;
    border-color: #ffd700 !important;
    font-weight: 900 !important;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.5) !important;
}

.submenu-mobile {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 90%;
    max-width: 300px;
}

.submenu-mobile a {
    padding: 12px 25px !important;
    font-size: 14px !important;
    background: rgba(0, 255, 157, 0.05) !important;
    border: 1px solid var(--neon-green) !important;
    color: var(--neon-green) !important;
}

.submenu-mobile a:hover {
    background: rgba(0, 255, 157, 0.15) !important;
    box-shadow: 0 0 15px rgba(0, 255, 157, 0.3) !important;
}

/* ===== CONTENEDOR PRINCIPAL ===== */
.container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
    position: relative;
    z-index: 2;
}

/* ===== TIPOGRAFÍA ===== */
h1, h2, h3, .cyber-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    animation: neonGlow 2s infinite alternate;
}

h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--neon-pink);
    padding-bottom: 10px;
    display: inline-block;
}

h3 {
    font-size: 1.5rem;
    color: var(--neon-green);
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* ===== HEADER SECTION ===== */
.header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px;
    background: rgba(10, 10, 10, 0.7);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--neon-blue);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        transparent,
        transparent,
        transparent,
        var(--neon-blue),
        transparent
    );
    transform: rotate(30deg);
    animation: shine 3s infinite;
    z-index: -1;
}

.logo {
    max-width: 350px;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 20px rgba(0, 243, 255, 0.7));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px rgba(0, 243, 255, 0.9));
}

/* Compatibility Section */
.compatibility-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.compatibility-logo {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(0, 243, 255, 0.5));
    transition: all 0.3s ease;
}

.compatibility-logo:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 15px var(--neon-pink));
}

/* ===== WELCOME SECTION ===== */
.welcome-section {
    background: rgba(10, 10, 25, 0.8);
    border: 1px solid var(--neon-pink);
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 0 30px rgba(255, 42, 109, 0.3);
    position: relative;
    overflow: hidden;
}

.welcome-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-purple), var(--neon-blue));
}

.welcome-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    color: var(--neon-blue);
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(5, 217, 232, 0.7);
    letter-spacing: 2px;
}

.thank-you {
    font-size: 1.8rem;
    color: var(--neon-pink);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(255, 42, 109, 0.7);
    animation: pulse 2s infinite;
}

.welcome-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #e0e0ff;
    text-align: center;
}

.android-info {
    background: rgba(255, 42, 109, 0.1);
    border: 1px solid var(--neon-pink);
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
    text-align: center;
}

.android-info h3 {
    color: var(--neon-pink);
    margin-bottom: 15px;
    font-family: 'Orbitron', sans-serif;
}

/* ===== CYBERPUNK PACKS SECTION ===== */
.cyberpunk-packs {
    text-align: center;
    margin-bottom: 60px;
}

.glitch-text {
    position: relative;
    font-size: 2.5rem;
    color: white;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    margin-bottom: 30px;
    display: inline-block;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-text::before {
    color: var(--neon-pink);
    z-index: -1;
    animation: glitch-effect 3s infinite;
}

.glitch-text::after {
    color: var(--neon-blue);
    z-index: -2;
    animation: glitch-effect 2s infinite reverse;
}

.pack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.pack-card {
    background: rgba(10, 10, 10, 0.8);
    border-radius: 10px;
    padding: 25px;
    border: 1px solid var(--neon-blue);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
}

.pack-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.4);
    border-color: var(--neon-pink);
}

.pack-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-pink));
}

.pack-card[data-tier="basic"]::before {
    background: var(--neon-blue);
}

.pack-card[data-tier="advance"]::before {
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-green));
}

.pack-card[data-tier="pro"]::before {
    background: linear-gradient(90deg, var(--neon-green), var(--neon-pink));
}

.pack-card[data-tier="ultimate"]::before {
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-purple));
    animation: rainbow 3s linear infinite;
}

.pack-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.pulse-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green);
    animation: pulse 2s infinite;
}

.pack-card[data-tier="basic"] .pulse-dot {
    background: var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-blue);
}

.pack-card[data-tier="advance"] .pulse-dot {
    background: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green);
}

.pack-card[data-tier="pro"] .pulse-dot {
    background: var(--neon-pink);
    box-shadow: 0 0 10px var(--neon-pink);
}

.pack-card[data-tier="ultimate"] .pulse-dot {
    background: var(--neon-purple);
    box-shadow: 0 0 10px var(--neon-purple);
    animation: pulse 1s infinite;
}

.cyber-list {
    list-style: none;
    text-align: left;
    margin-top: 20px;
}

.cyber-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 1rem;
}

.cyber-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-weight: bold;
}

/* ===== BOTONES ===== */
.pack-button {
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-purple));
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(157, 0, 255, 0.3);
    border: 1px solid var(--neon-blue);
    z-index: 1;
}

.pack-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 243, 255, 0.4),
        transparent
    );
    transition: all 0.6s ease;
    z-index: -1;
}

.pack-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(157, 0, 255, 0.6);
}

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

.pack-button.active {
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-green));
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.6);
}

.start-button-container {
    text-align: center;
    margin: 50px 0 30px;
}

.start-button {
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-purple));
    color: white;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    padding: 20px 60px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 42, 109, 0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.start-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 42, 109, 0.7);
}

.start-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20px;
    height: 200%;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(30deg);
    transition: all 0.6s;
}

.start-button:hover::after {
    left: 120%;
}

.download-button {
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    margin: 15px 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Orbitron', sans-serif;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.download-button:hover {
    background: linear-gradient(45deg, var(--neon-purple), var(--neon-blue));
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(0, 243, 255, 0.5);
}

.download-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: all 0.5s ease;
}

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

.whatsapp-button {
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    margin: 20px 10px;
    transition: all 0.3s ease;
    font-size: 16px;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
}

.whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: all 0.5s ease;
}

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

.remote-button {
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-purple));
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    margin: 20px 10px;
    transition: all 0.3s ease;
    font-size: 16px;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(255, 0, 204, 0.3);
    position: relative;
    overflow: hidden;
}

.remote-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 0, 204, 0.6);
}

.remote-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: all 0.5s ease;
}

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

/* ===== CONTENT SECTIONS ===== */
.content-section {
    background: rgba(10, 10, 10, 0.7);
    border-radius: 10px;
    padding: 30px;
    margin: 40px 0;
    backdrop-filter: blur(10px);
    border: 1px solid var(--neon-blue);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.content-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    border-top: 2px solid var(--neon-pink);
    border-right: 2px solid var(--neon-pink);
    border-radius: 0 10px 0 0;
}

.content-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 50px;
    border-bottom: 2px solid var(--neon-blue);
    border-left: 2px solid var(--neon-blue);
    border-radius: 0 0 0 10px;
}

.section-title {
    color: var(--neon-blue);
    font-size: 1.8rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.section-title::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-blue), transparent);
    margin-left: 15px;
}

/* Step Cards */
.step-card {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    padding: 25px;
    margin: 20px 0;
    border-left: 4px solid var(--neon-blue);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 243, 255, 0.3);
    border-left-color: var(--neon-pink);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(0, 243, 255, 0.05),
        transparent
    );
    z-index: -1;
}

.step-number {
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    font-family: 'Orbitron', sans-serif;
    box-shadow: 0 0 10px var(--neon-blue);
}

/* Activation Links */
.activation-links {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.activation-links.active {
    display: grid;
    animation: fadeIn 0.5s ease;
}

.server-group {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.1);
    transition: all 0.3s ease;
}

.server-group:hover {
    border-color: var(--neon-pink);
    box-shadow: 0 0 25px rgba(255, 0, 204, 0.2);
}

.server-title {
    color: var(--neon-blue);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Orbitron', sans-serif;
}

.link-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    margin: 10px 0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.link-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 243, 255, 0.1),
        transparent
    );
    transition: all 0.5s ease;
}

.link-item:hover {
    background: rgba(0, 243, 255, 0.1);
    border-color: var(--neon-blue);
    transform: translateX(5px);
}

.link-item:hover::before {
    left: 100%;
}

.link-item i {
    font-size: 1.2rem;
    color: var(--neon-blue);
}

/* Download Section */
.download-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.download-card {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--neon-blue);
    position: relative;
    overflow: hidden;
}

.download-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 243, 255, 0.2);
    border-color: var(--neon-pink);
}

.download-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-pink));
}

/* Alert Boxes */
.warning-box, .success-box, .info-box {
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    border-left: 5px solid;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.warning-box {
    background: rgba(255, 193, 7, 0.1);
    border-color: #ffc107;
    color: #ffc107;
}

.success-box {
    background: rgba(40, 167, 69, 0.1);
    border-color: #28a745;
    color: #28a745;
}

.info-box {
    background: rgba(0, 243, 255, 0.1);
    border-color: var(--neon-blue);
    color: var(--neon-blue);
}

/* Terminal Effect */
.terminal-effect {
    position: relative;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--neon-green);
    border-radius: 5px;
    padding: 15px;
    font-family: 'Courier New', monospace;
    margin: 20px 0;
    overflow: hidden;
}

.terminal-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(0, 255, 128, 0.05),
        transparent
    );
    pointer-events: none;
}

.terminal-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--neon-green);
}

.terminal-dots {
    display: flex;
    gap: 8px;
    margin-right: 15px;
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dot:nth-child(1) {
    background: #ff5f56;
}

.terminal-dot:nth-child(2) {
    background: #ffbd2e;
}

.terminal-dot:nth-child(3) {
    background: #27c93f;
}

.terminal-text {
    color: var(--neon-green);
    line-height: 1.5;
    font-size: 0.9rem;
}

.terminal-cursor {
    display: inline-block;
    width: 10px;
    height: 15px;
    background: var(--neon-green);
    vertical-align: middle;
    margin-left: 2px;
    animation: blink 1s infinite;
}

/* ===== FOOTER ===== */
.footer {
    text-align: center;
    margin-top: 80px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    border-top: 1px solid var(--neon-blue);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--neon-pink),
        var(--neon-blue),
        transparent
    );
}

.footer h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    animation: neonGlow 2s infinite alternate;
}

.footer p {
    margin: 10px 0;
    color: #aaa;
    font-size: 1.1rem;
}

.footer a {
    color: var(--neon-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 10px rgba(255, 0, 204, 0.5);
}

/* ===== LANGUAGE SELECTOR ===== */
.language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 20px;
    z-index: 1000;
    border: 1px solid var(--neon-blue);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
    display: none;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.language-selector.visible {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.language-selector h4 {
    color: var(--neon-blue);
    margin: 0 0 15px 0;
    font-size: 1rem;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#google_translate_element {
    margin: 0;
}

.goog-te-gadget {
    font-family: 'Rajdhani', sans-serif !important;
}

.goog-te-gadget-simple {
    background-color: rgba(0, 0, 0, 0.7) !important;
    border: 1px solid var(--neon-blue) !important;
    border-radius: 8px !important;
    padding: 10px !important;
    font-size: 14px !important;
    color: white !important;
}

.goog-te-gadget-simple .goog-te-menu-value {
    color: white !important;
    font-family: 'Rajdhani', sans-serif !important;
}

.goog-te-gadget-simple .goog-te-menu-value span {
    color: var(--neon-blue) !important;
}

.goog-te-banner-frame {
    display: none !important;
}

.language-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    z-index: 1001;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.language-toggle:hover {
    transform: scale(1.1) rotate(180deg);
    box-shadow: 0 0 30px rgba(157, 0, 255, 0.7);
}

/* ===== PARTICLE SYSTEM ===== */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--neon-blue);
    opacity: 0.7;
    animation: float 15s infinite linear;
    filter: blur(1px);
}

/* ===== CONSOLE ICONS ===== */
.console-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    filter: drop-shadow(0 0 5px var(--neon-blue));
}

/* ===== RETRO BADGES ===== */
.retro-badge {
    display: inline-block;
    background: var(--neon-pink);
    color: black;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-left: 10px;
    transform: rotate(-5deg);
    font-family: 'Courier New', monospace;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .nav-desktop a {
        padding: 10px 16px;
        font-size: 13px;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .pack-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-desktop a {
        padding: 10px 14px;
        font-size: 12px;
    }
    
    .cyber-menu {
        padding: 15px 10px;
    }
    
    .cyber-menu.sticky {
        padding: 10px 10px;
    }
    
    .cyber-menu a {
        padding: 10px 15px;
        font-size: 12px;
        margin: 0 3px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .header {
        padding: 30px 20px;
    }
    
    .logo {
        max-width: 250px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .welcome-title {
        font-size: 2rem;
    }
    
    .thank-you {
        font-size: 1.5rem;
    }
    
    .welcome-text {
        font-size: 1.1rem;
    }
    
    .start-button {
        font-size: 1.5rem;
        padding: 15px 40px;
    }
    
    .pack-grid {
        grid-template-columns: 1fr;
    }
    
    .compatibility-logo {
        height: 40px;
    }
    
    .content-section {
        padding: 20px;
    }
    
    .download-section, .activation-links {
        grid-template-columns: 1fr;
    }
    
    .footer {
        padding: 30px 20px;
    }
    
    body {
        padding-top: 70px;
    }
    
    .cyber-menu {
        flex-direction: column;
        align-items: center;
        padding: 10px 5px;
        height: auto;
        background: rgba(10, 10, 10, 0.9) !important;
        backdrop-filter: blur(5px) !important;
    }
    
    .cyber-menu.sticky {
        padding: 8px 5px;
    }
    
    .cyber-menu a {
        width: 100%;
        text-align: center;
        margin: 3px 0;
        padding: 8px 10px;
        transform: translateY(0) !important;
    }
    
    .cyber-menu a.active {
        transform: translateY(0) !important;
    }
    
    .nav-desktop {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-logo {
        height: 35px;
    }
    
    .dropdown {
        width: 100%;
        text-align: center;
    }
    
    .dropdown-menu {
        position: fixed;
        top: auto;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .language-toggle {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .language-selector {
        width: calc(100% - 40px);
        right: 20px;
    }
    
    .cyber-menu {
        padding: 12px 15px;
    }
    
    .cyber-menu.sticky {
        padding: 10px 15px;
    }
    
    .nav-logo {
        height: 32px;
    }
    
    body {
        padding-top: 65px;
    }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
    
    .particles-container, .crt-effect, .glitch-overlay {
        display: none;
    }
}




/* Mostrar hamburguesa solo en móviles */
.hamburger {
    display: none;
}

/* Ocultar menú móvil por defecto */
.nav-mobile {
    display: none;
}

@media (max-width: 768px) {
    /* Ocultar elementos de escritorio */
    .cyber-menu > a:not(.logo-link),
    .dropdown {
        display: none;
    }
    
    /* Mostrar hamburguesa */
    .hamburger {
        display: flex;
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 1001;
    }
    
    /* Ajustar posición del logo */
    .logo-link {
        margin-right: auto;
    }
    
    /* Estilos para menú móvil activo */
    .nav-mobile.active {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(10, 10, 10, 0.98);
        z-index: 1000;
        padding-top: 80px;
    }
}



/* ===== VIP PAGE STYLES - VERSIÓN MEJORADA ===== */
.vip-title {
    font-size: 3rem;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.7);
    margin: 20px 0;
    animation: vip-glow 2s infinite alternate;
}

.vip-offer-section {
    text-align: center;
    margin: 60px 0;
}

.vip-offer-card {
    background: rgba(10, 10, 10, 0.8);
    border: 3px solid var(--gold);
    border-radius: 20px;
    padding: 50px 30px;
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 40px auto;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
    animation: offer-pulse 3s infinite;
}

.vip-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: shine 4s linear infinite;
    z-index: 0;
}

.vip-offer-card h2 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

/* ===== PRECIO MEJORADO - AMARILLO NEÓN ===== */
.vip-price {
    font-size: 4rem;
    font-weight: 900;
    /* Cambio principal: color amarillo neón brillante */
    background: linear-gradient(45deg, #ffff00, #ffed4e, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Respaldo para navegadores que no soporten background-clip */
    color: #ffff00;
    /* Sombra amarilla neón intensa */
    text-shadow: 
        0 0 10px rgba(255, 255, 0, 0.8),
        0 0 20px rgba(255, 255, 0, 0.6),
        0 0 30px rgba(255, 255, 0, 0.4),
        0 0 40px rgba(255, 255, 0, 0.3);
    margin: 30px 0;
    position: relative;
    z-index: 1;
    transition: all 0.5s ease;
    /* Animación de pulso para mayor visibilidad */
    animation: price-neon-pulse 2s infinite alternate;
}

/* Animación específica para el precio */
@keyframes price-neon-pulse {
    0% { 
        text-shadow: 
            0 0 10px rgba(255, 255, 0, 0.8),
            0 0 20px rgba(255, 255, 0, 0.6),
            0 0 30px rgba(255, 255, 0, 0.4);
    }
    100% { 
        text-shadow: 
            0 0 15px rgba(255, 255, 0, 1),
            0 0 25px rgba(255, 255, 0, 0.8),
            0 0 35px rgba(255, 255, 0, 0.6),
            0 0 45px rgba(255, 255, 0, 0.4);
    }
}

.vip-month {
    font-size: 1.5rem;
    color: var(--neon-blue);
    -webkit-text-fill-color: var(--neon-blue);
}

.vip-details {
    font-size: 1.2rem;
    color: #e0e0e0;
    position: relative;
    z-index: 1;
}

.vip-note {
    display: block;
    margin-top: 20px;
    font-size: 1rem;
    color: var(--neon-pink);
    font-weight: bold;
}

.vip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 60px 0;
}

/* ===== TARJETAS VIP CON FONDO ELECTRIZANTE ===== */
.vip-card {
    /* Fondo degradado retro electrizante */
    background: linear-gradient(135deg, 
        rgba(255, 0, 150, 0.15) 0%, 
        rgba(0, 243, 255, 0.15) 25%, 
        rgba(157, 0, 255, 0.15) 50%, 
        rgba(0, 255, 157, 0.15) 75%, 
        rgba(255, 215, 0, 0.15) 100%);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 2px solid var(--neon-blue);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    /* Sombra base más intensa */
    box-shadow: 
        0 0 20px rgba(0, 243, 255, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.05);
}

/* Efecto de ondas eléctricas de fondo */
.vip-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(0, 243, 255, 0.1) 10px,
        rgba(0, 243, 255, 0.1) 20px,
        transparent 20px,
        transparent 30px,
        rgba(255, 0, 150, 0.1) 30px,
        rgba(255, 0, 150, 0.1) 40px
    );
    animation: electric-waves 4s linear infinite;
    z-index: 0;
}

/* Animación de ondas eléctricas */
@keyframes electric-waves {
    0% { transform: rotate(45deg) translate(-50%, -50%); }
    100% { transform: rotate(45deg) translate(50%, 50%); }
}

/* Efecto adicional de pulso eléctrico */
.vip-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, 
        rgba(0, 243, 255, 0.1) 0%, 
        transparent 70%);
    animation: electric-pulse 3s ease-in-out infinite;
    z-index: 0;
}

@keyframes electric-pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

.vip-card:hover::before {
    animation-duration: 2s;
}

.vip-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 
        0 20px 40px rgba(0, 243, 255, 0.4),
        0 0 30px rgba(0, 255, 157, 0.3),
        inset 0 0 30px rgba(255, 255, 255, 0.1);
    border-color: var(--neon-green);
    /* Fondo más intenso en hover */
    background: linear-gradient(135deg, 
        rgba(255, 0, 150, 0.25) 0%, 
        rgba(0, 243, 255, 0.25) 25%, 
        rgba(157, 0, 255, 0.25) 50%, 
        rgba(0, 255, 157, 0.25) 75%, 
        rgba(255, 215, 0, 0.25) 100%);
}

/* Logo con mejor contraste */
.vip-logo {
    width: 120px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 20px;
    /* Filtros mejorados para mayor visibilidad */
    filter: 
        brightness(1.5) 
        contrast(1.3) 
        drop-shadow(0 0 15px rgba(255, 255, 255, 0.8))
        drop-shadow(0 0 10px rgba(0, 243, 255, 0.5));
    /* Fondo semi-transparente para logos oscuros */
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 0.1) 30%, 
        transparent 70%);
    border-radius: 10px;
    padding: 10px;
    position: relative;
    z-index: 1;
}

.vip-count {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--neon-pink);
    margin-bottom: 10px;
    text-shadow: 
        0 0 15px rgba(255, 0, 128, 0.8),
        0 0 25px rgba(255, 0, 128, 0.5);
    position: relative;
    z-index: 1;
}

.vip-name {
    font-size: 1.2rem;
    color: var(--neon-blue);
    font-weight: bold;
    /* Mejor contraste para el texto */
    text-shadow: 
        0 0 10px rgba(0, 243, 255, 0.8),
        0 0 20px rgba(0, 243, 255, 0.4);
    position: relative;
    z-index: 1;
}

/* Estilos específicos para tarjetas especiales */
.vip-more {
    border-color: var(--neon-green);
    background: linear-gradient(135deg, 
        rgba(0, 255, 157, 0.2) 0%, 
        rgba(0, 255, 157, 0.1) 100%);
}

.vip-more .vip-count {
    color: var(--neon-green);
    text-shadow: 
        0 0 15px rgba(0, 255, 157, 0.8),
        0 0 25px rgba(0, 255, 157, 0.5);
}

.vip-more .vip-name {
    color: var(--neon-green);
    text-shadow: 
        0 0 10px rgba(0, 255, 157, 0.8),
        0 0 20px rgba(0, 255, 157, 0.4);
}

.vip-frontend {
    background: rgba(157, 0, 255, 0.05);
    border: 2px solid var(--neon-purple);
}

.vip-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.feature-card {
    background: rgba(10, 10, 10, 0.8);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    border: 1px solid var(--neon-purple);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card:hover {
    transform: translateY(-5px) scale(1.05) !important;
    box-shadow: 0 15px 30px rgba(157, 0, 255, 0.2);
}

.feature-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
    border-radius: 10px;
    filter: drop-shadow(0 0 10px rgba(157, 0, 255, 0.5));
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--neon-purple);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.4;
}

.vip-coming {
    background: linear-gradient(145deg, rgba(0, 255, 157, 0.1), rgba(0, 255, 157, 0.05));
    border: 2px solid var(--neon-green);
}

/* Animaciones existentes */
@keyframes vip-glow {
    0% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
    100% { text-shadow: 0 0 30px rgba(255, 215, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.3); }
}

@keyframes offer-pulse {
    0%, 100% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 0 60px rgba(255, 215, 0, 0.5), 0 0 80px rgba(255, 215, 0, 0.2); }
}

@keyframes shine {
    0% { transform: rotate(45deg) translate(-200%, -200%); }
    100% { transform: rotate(45deg) translate(200%, 200%); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .vip-title {
        font-size: 2rem;
    }
    
    .vip-offer-card {
        padding: 30px 20px;
    }
    
    .vip-price {
        font-size: 3rem;
    }
    
    .vip-grid, .vip-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .vip-card, .feature-card {
        padding: 20px;
    }
    
    .vip-logo {
        width: 100px;
        height: 50px;
    }
    
    .feature-logo {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .vip-offer-card h2 {
        font-size: 1.5rem;
    }
    
    .vip-price {
        font-size: 2.5rem;
    }
    
    .vip-details {
        font-size: 1rem;
    }
}


/* Estilos para los botones VIP */
.vip-join-button {
    display: inline-block;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
    color: #000 !important;
    font-weight: 900;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    margin: 25px 0;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.2rem;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.7);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid #ffd700;
    animation: vip-glow 2s infinite alternate;
}

.vip-join-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.9);
    color: #000;
    animation: none;
}

.vip-join-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.vip-join-button:hover::before {
    left: 100%;
    top: 100%;
}

/* Botón flotante */
.floating-vip-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: inline-block;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000 !important;
    font-weight: 900;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    animation: vip-glow 2s infinite alternate;
    transition: all 0.3s ease;
    border: 2px solid #ffd700;
    opacity: 0;
    transform: translateY(100px);
}

.floating-vip-button.show {
    opacity: 1;
    transform: translateY(0);
}

.floating-vip-button:hover {
    transform: translateY(-5px) scale(1.05) !important;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.9);
}

/* Animación para el botón flotante */
@keyframes float-button {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
    100% { transform: translateY(0) scale(1); }
}

.floating-vip-button.show {
    animation: float-button 3s ease-in-out infinite;
}