.elementor-kit-7{--e-global-color-primary:#AE2828;--e-global-color-secondary:#12042A;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.elementor-kit-7 e-page-transition{background-color:#FFBC7D;}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Orbitron:wght@400;700;900&display=swap');

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

body {
    font-family: 'Orbitron', monospace;
    background: linear-gradient(135deg, #1a0933 0%, #2d1b69 50%, #1a0933 100%);
    color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ===== CURSOR PERSONALIZADO ===== */
.cursor {
    width: 20px; height: 20px; border: 3px solid #ff4fd8;
    border-radius: 50%; position: fixed; pointer-events: none;
    z-index: 9999; transition: transform 0.1s; mix-blend-mode: difference;
}
.cursor-follower {
    width: 40px; height: 40px;
    background: radial-gradient(circle, rgba(255,79,216,0.3) 0%, transparent 70%);
    border-radius: 50%; position: fixed; pointer-events: none;
    z-index: 9998; transition: transform 0.3s ease;
}
.cursor.hover { transform: scale(2); background: rgba(255, 79, 216, 0.5); }

/* ===== FONDO ANIMADO ===== */
.bg-animation {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1; overflow: hidden;
}
.star {
    position: absolute; background: #fff; border-radius: 50%;
    animation: twinkle var(--duration) ease-in-out infinite;
}
@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}
.floating-shape {
    position: absolute; opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}
@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

/* ===== HEADER Y NAVEGACIÓN ===== */
header {
    background: linear-gradient(180deg, #2d1b69 0%, #1a0933 100%);
    padding: 20px 0; border-bottom: 4px solid #ff4fd8;
    box-shadow: 0 0 30px rgba(255, 79, 216, 0.5);
    position: relative; overflow: hidden;
}
header::before {
    content: ''; position: absolute; top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shine 3s infinite;
}
@keyframes shine { 0% { left: -100%; } 100% { left: 100%; } }

nav {
    max-width: 1200px; margin: 0 auto; padding: 0 20px;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
}
.logo {
    font-family: 'Press Start 2P', cursive; font-size: 28px;
    background: linear-gradient(180deg, #ff4fd8 0%, #ffe66d 50%, #ff4fd8 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; text-shadow: 0 0 30px rgba(255, 79, 216, 0.8);
    animation: logoPulse 2s infinite; position: relative;
}
@keyframes logoPulse { 0%, 100% { filter: brightness(1); } 50% { filter: brightness(1.3); } }

.nav-links { display: flex; gap: 30px; list-style: none; flex-wrap: wrap; }
.nav-links a {
    color: #fff; text-decoration: none; font-weight: 700; font-size: 14px;
    position: relative; transition: all 0.3s; padding: 5px 15px;
    border: 2px solid transparent; border-radius: 20px;
}
.nav-links a::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, #ff4fd8, #ffe66d);
    border-radius: 20px; opacity: 0; transform: scale(0.8); transition: all 0.3s; z-index: -1;
}
.nav-links a:hover::before { opacity: 1; transform: scale(1); }
.nav-links a:hover {
    color: #1a0933; transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 79, 216, 0.6);
}

/* ===== SECCIÓN HERO ===== */
.hero { padding: 80px 20px; text-align: center; position: relative; overflow: hidden; }
.hero-title {
    font-family: 'Press Start 2P', cursive;
    font-size: clamp(28px, 7vw, 64px);
    background: linear-gradient(180deg, #ff4fd8 0%, #00ffff 50%, #ffe66d 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; margin-bottom: 20px; position: relative;
    display: inline-block; animation: titleGlitch 3s infinite;
    text-shadow: 0 0 20px rgba(255, 79, 216, 0.8), 0 0 40px rgba(0, 255, 255, 0.5), 0 0 60px rgba(255, 230, 109, 0.3);
    cursor: pointer; user-select: none;
}
@keyframes titleGlitch {
    0%, 90%, 100% { transform: translate(0); }
    92% { transform: translate(-5px, 2px); }
    94% { transform: translate(5px, -2px); }
    96% { transform: translate(-2px, 0); }
    98% { transform: translate(2px, 0); }
}
.hero-title:hover { animation: titleShake 0.5s ease; }
@keyframes titleShake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg) scale(1.1); }
    75% { transform: rotate(5deg) scale(1.1); }
}
.hero-subtitle {
    font-size: 24px; color: #00ffff; margin-bottom: 40px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
    animation: subtitlePulse 2s infinite;
}
@keyframes subtitlePulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }

.hero-buttons { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; }

/* ===== BOTONES RETRO ===== */
.btn-retro {
    padding: 20px 40px; font-family: 'Press Start 2P', cursive; font-size: 14px;
    border: none; border-radius: 10px; cursor: none; position: relative;
    overflow: hidden; transition: all 0.3s; text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.btn-retro::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    transition: left 0.5s;
}
.btn-retro:hover::before { left: 100%; }
.btn-pink {
    background: linear-gradient(135deg, #ff4fd8, #ff2e88); color: #fff;
    box-shadow: 0 0 30px rgba(255, 79, 216, 0.6), inset 0 0 20px rgba(255,255,255,0.3);
}
.btn-green {
    background: linear-gradient(135deg, #00ff88, #00cc66); color: #1a0933;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.6), inset 0 0 20px rgba(255,255,255,0.3);
}
.btn-retro:hover { transform: translateY(-5px) scale(1.05); box-shadow: 0 15px 40px rgba(0,0,0,0.6); }
.btn-retro:active { transform: translateY(-2px) scale(1.02); }

/* ===== SECCIÓN DE CATEGORÍAS ===== */
.categories { padding: 60px 20px; max-width: 1200px; margin: 0 auto; }
.categories-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px; margin-top: 40px;
}
.category-card {
    background: linear-gradient(135deg, rgba(255,79,216,0.1), rgba(0,255,255,0.1));
    border: 3px solid; border-image: linear-gradient(135deg, #ff4fd8, #00ffff, #ffe66d) 1;
    border-radius: 20px; padding: 30px; text-align: center;
    position: relative; overflow: hidden; transition: all 0.4s; cursor: none;
}
.category-card::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg); transition: all 0.6s; opacity: 0;
}
.category-card:hover::before { animation: cardShine 0.6s ease; }
@keyframes cardShine {
    0% { left: -50%; opacity: 0; } 50% { opacity: 1; } 100% { left: 150%; opacity: 0; }
}
.category-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 79, 216, 0.4);
}
.category-icon {
    font-size: 80px; margin-bottom: 20px; display: block;
    animation: iconBounce 2s infinite;
}
@keyframes iconBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}
.category-card:nth-child(2) .category-icon { animation-delay: 0.3s; }
.category-card:nth-child(3) .category-icon { animation-delay: 0.6s; }
.category-title {
    font-family: 'Press Start 2P', cursive; font-size: 18px; margin-bottom: 15px;
    background: linear-gradient(135deg, #ff4fd8, #ffe66d);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.category-desc { font-size: 14px; color: #ccc; margin-bottom: 20px; line-height: 1.6; }
.category-btn {
    padding: 12px 25px; font-family: 'Orbitron', monospace; font-weight: 700;
    border: 2px solid #ff4fd8; background: transparent; color: #ff4fd8;
    border-radius: 25px; cursor: none; transition: all 0.3s;
    text-transform: uppercase; font-size: 12px;
}
.category-btn:hover {
    background: linear-gradient(135deg, #ff4fd8, #ff2e88); color: #fff;
    box-shadow: 0 0 20px rgba(255, 79, 216, 0.6); transform: scale(1.1);
}

/* ===== SECCIÓN PACKS ===== */
.packs-section {
    padding: 80px 20px; text-align: center; position: relative;
    background: linear-gradient(180deg, transparent, rgba(255,79,216,0.1), transparent);
}
.packs-title {
    font-family: 'Press Start 2P', cursive; font-size: clamp(24px, 5vw, 42px);
    color: #ffe66d; margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 230, 109, 0.8);
    animation: packsPulse 2s infinite;
}
@keyframes packsPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
.packs-subtitle { font-size: 20px; color: #00ffff; margin-bottom: 40px; }
.mystery-box {
    font-size: 120px; margin: 30px 0; animation: boxShake 3s infinite;
    display: inline-block; filter: drop-shadow(0 0 30px rgba(255, 230, 109, 0.6));
    cursor: pointer; transition: transform 0.3s;
}
@keyframes boxShake { 0%, 100% { transform: rotate(-3deg); } 50% { transform: rotate(3deg); } }
.mystery-box:hover { transform: scale(1.2) rotate(0deg); }

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(180deg, #1a0933, #0d021f);
    padding: 40px 20px; text-align: center;
    border-top: 3px solid #ff4fd8; margin-top: 60px;
}
.features { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-bottom: 30px; }
.feature { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 700; }
.feature-icon { font-size: 24px; animation: featureBounce 2s infinite; }
@keyframes featureBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.copyright { color: #888; font-size: 12px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .cursor, .cursor-follower { display: none; }
    * { cursor: auto; }
    .nav-links { gap: 15px; margin-top: 20px; }
    .hero-buttons { flex-direction: column; align-items: center; }
}

/* ===== EFECTO PARTÍCULAS ===== */
.particle {
    position: fixed; pointer-events: none; border-radius: 50%;
    animation: particleExplode 1s ease-out forwards;
}
@keyframes particleExplode {
    0% { transform: translate(0, 0) scale(1); opacity: 1; }
    100% { transform: translate(var(--tx), var(--ty)) scale(0); opacity: 0; }
}

/* ===== MENSAJE SORPRESA ===== */
@keyframes surprisePop {
    0% { transform: translate(-50%, -50%) scale(0) rotate(-180deg); opacity: 0; }
    50% { transform: translate(-50%, -50%) scale(1.5) rotate(10deg); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1) rotate(0deg); opacity: 0; }
}/* End custom CSS */