/* RESET Y ESTILOS BASE OPTIMIZADOS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #0a0a14;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
    opacity: 0;
    animation: bodyFadeIn 0.8s ease-out forwards;
}

@keyframes bodyFadeIn {
    to { opacity: 1; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* MENÚ DE NAVEGACIÓN CON ANIMACIÓN */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 1000;
    background: rgba(10, 10, 20, 0.95);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    transform: translateY(-100%);
    animation: slideDown 0.6s ease-out 0.3s forwards;
}

@keyframes slideDown {
    to { transform: translateY(0); }
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    animation: fadeInUp 0.5s ease-out 0.5s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo:hover {
    transform: scale(1.05) translateY(-2px);
}

.logo i {
    margin-right: 10px;
    color: #00ffff;
    transition: transform 0.3s ease;
}

.logo:hover i {
    transform: rotate(15deg);
}

.logo-highlight {
    color: #ff00ff;
    transition: color 0.3s ease;
}

.logo:hover .logo-highlight {
    color: #00ffff;
}

.menu-right {
    display: flex;
    opacity: 0;
    animation: fadeInUp 0.5s ease-out 0.6s forwards;
}

.discord-btn-header {
    background: linear-gradient(45deg, #5865F2, #7289DA);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.discord-btn-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);
    transition: left 0.6s ease;
}

.discord-btn-header:hover::before {
    left: 100%;
}

.discord-btn-header:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(88, 101, 242, 0.4);
}

/* SECCIÓN HERO CON ANIMACIONES */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 100%);
    opacity: 0;
    animation: heroFadeIn 1s ease-out 0.4s forwards;
}

@keyframes heroFadeIn {
    to { opacity: 1; }
}

.hero-content {
    text-align: center;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    animation: contentSlideUp 0.8s ease-out 0.8s forwards;
}

@keyframes contentSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.title-gradient {
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 900;
    opacity: 0;
    animation: gradientFadeIn 1s ease-out 1s forwards;
}

@keyframes gradientFadeIn {
    from {
        opacity: 0;
        background-size: 200% 200%;
        background-position: 200% center;
    }
    to {
        opacity: 1;
        background-size: 200% 200%;
        background-position: -200% center;
    }
}

.title-sub {
    font-size: 1.8rem;
    color: #aaa;
    font-weight: 300;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 1.2s forwards;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
    color: #ccc;
    line-height: 1.6;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 1.4s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* BOTÓN MEGA CON ANIMACIONES MEJORADAS */
.games-button-container {
    margin: 40px 0 60px;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.6s forwards;
}

.mega-btn {
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    padding: 0;
    border-radius: 20px;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    min-width: 400px;
    height: 100px;
    border: 2px solid transparent;
    overflow: hidden;
}

.mega-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mega-btn:hover::after {
    opacity: 1;
}

.mega-btn:hover {
    transform: scale(1.05) translateY(-5px);
    border-color: #00ffff;
    box-shadow: 0 15px 35px rgba(0, 255, 255, 0.3);
}

.btn-inner {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.05), rgba(255, 0, 255, 0.05));
    padding: 20px 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    height: 100%;
    transition: transform 0.3s ease;
}

.mega-btn:hover .btn-inner {
    transform: scale(0.98);
}

.mega-btn i:first-child {
    font-size: 2.5rem;
    color: #00ffff;
    transition: all 0.4s ease;
}

.mega-btn:hover i:first-child {
    transform: rotate(360deg) scale(1.2);
}

.btn-text-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: left;
    transition: transform 0.3s ease;
}

.mega-btn:hover .btn-text-container {
    transform: translateX(5px);
}

.btn-main-text {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 1px;
}

.btn-sub-text {
    font-size: 1rem;
    color: #aaa;
    font-weight: 300;
}

.mega-btn i:last-child {
    font-size: 1.8rem;
    color: #ffff00;
    transition: all 0.4s ease;
}

.mega-btn:hover i:last-child {
    transform: scale(1.3) translateX(5px);
}

.btn-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #00ffff);
    border-radius: 22px;
    z-index: 1;
    opacity: 0.3;
    filter: blur(5px);
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.5; }
}

/* CARACTERÍSTICAS HERO CON ANIMACIONES ESCALONADAS */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    width: 200px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
}

.feature-card:nth-child(1) { animation: fadeInUp 0.6s ease-out 1.8s forwards; }
.feature-card:nth-child(2) { animation: fadeInUp 0.6s ease-out 2s forwards; }
.feature-card:nth-child(3) { animation: fadeInUp 0.6s ease-out 2.2s forwards; }

.feature-card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: #ff00ff;
    box-shadow: 0 15px 30px rgba(255, 0, 255, 0.25);
}

.feature-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ff00ff;
    transition: all 0.4s ease;
}

.feature-card:hover i {
    transform: scale(1.2) rotate(10deg);
    color: #00ffff;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #00ffff;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: #ff00ff;
}

.feature-card p {
    color: #aaa;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.feature-card:hover p {
    color: #fff;
}

/* SECCIÓN JUEGOS CON TRANSICIONES */
.games-section {
    padding: 120px 0 80px;
    display: none;
    background: #0a0a14;
    min-height: 100vh;
}

.games-section.active {
    display: block;
    animation: sectionTransition 0.6s ease-out;
}

@keyframes sectionTransition {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    animation: titleReveal 0.8s ease-out forwards;
}

@keyframes titleReveal {
    from {
        opacity: 0;
        letter-spacing: 20px;
        filter: blur(10px);
    }
    to {
        opacity: 1;
        letter-spacing: normal;
        filter: blur(0);
    }
}

.title-1 {
    color: #00ffff;
    font-weight: 900;
}

.title-2 {
    color: #ff00ff;
    font-weight: 900;
}

/* FILTROS CON ANIMACIÓN */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.3s forwards;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #aaa;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: bold;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.filter-btn:hover::before {
    width: 300px;
    height: 300px;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    color: #000;
    font-weight: 900;
    box-shadow: 0 5px 15px rgba(255, 0, 255, 0.3);
}

/* GRID DE JUEGOS CON ANIMACIONES ESCALONADAS */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.game-card {
    background: rgba(20, 20, 40, 0.8);
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    animation: cardAppear 0.6s ease-out forwards;
}

.game-card:nth-child(1) { animation-delay: 0.1s; }
.game-card:nth-child(2) { animation-delay: 0.2s; }
.game-card:nth-child(3) { animation-delay: 0.3s; }
.game-card:nth-child(4) { animation-delay: 0.4s; }
.game-card:nth-child(5) { animation-delay: 0.5s; }
.game-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes cardAppear {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.game-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #00ffff;
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.25);
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.game-card:hover img {
    transform: scale(1.1);
}

.game-card-content {
    padding: 20px;
    transition: transform 0.3s ease;
}

.game-card:hover .game-card-content {
    transform: translateY(-5px);
}

.game-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
    transition: color 0.3s ease;
}

.game-card:hover h3 {
    color: #00ffff;
}

.game-card p {
    color: #aaa;
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 0.9rem;
    min-height: 60px;
    transition: color 0.3s ease;
}

.game-card:hover p {
    color: #fff;
}

.game-genre {
    display: inline-block;
    background: rgba(0, 255, 255, 0.1);
    color: #00ffff;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    border: 1px solid rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.game-card:hover .game-genre {
    background: rgba(0, 255, 255, 0.2);
    transform: scale(1.05);
}

/* BOTÓN VOLVER CON ANIMACIÓN */
.back-to-top {
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.8s forwards;
}

.back-home-btn {
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    color: #000;
    border: none;
    padding: 15px 35px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.back-home-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.back-home-btn:hover::after {
    left: 100%;
}

.back-home-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 0, 255, 0.4);
}

.back-home-btn i {
    transition: transform 0.4s ease;
}

.back-home-btn:hover i {
    transform: translateX(-5px) rotate(-45deg);
}

/* DETALLE DEL JUEGO CON ANIMACIONES MEJORADAS */
.game-detail {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: none;
    background: #0a0a14;
}

.game-detail.active {
    display: block;
    animation: detailEntrance 0.6s ease-out;
}

@keyframes detailEntrance {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.detail-content {
    max-width: 1200px;
    margin: 0 auto;
}

.detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.2s forwards;
}

.back-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.back-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10px;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translateY(-50%);
    transition: all 0.4s ease;
}

.back-btn:hover::before {
    width: 100%;
    height: 100%;
    left: 0;
    border-radius: 25px;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-8px) scale(1.05);
}

.back-btn i {
    transition: transform 0.3s ease;
}

.back-btn:hover i {
    transform: translateX(-3px);
}

.detail-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.4s forwards;
}

@media (max-width: 768px) {
    .detail-main {
        grid-template-columns: 1fr;
    }
}

.game-image-large {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.game-image-large:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

.game-image-large img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.game-image-large:hover img {
    transform: scale(1.05);
}

.game-info {
    background: rgba(20, 20, 40, 0.8);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.game-info:hover {
    transform: translateY(-5px);
    border-color: #00ffff;
}

.game-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% 200%;
    animation: titleGradient 3s ease infinite;
}

@keyframes titleGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.game-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.6s forwards;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    transition: transform 0.3s ease;
}

.meta-item:hover {
    transform: translateY(-3px);
}

.meta-label {
    color: #aaa;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.meta-value {
    color: #ff00ff;
    font-size: 1.1rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

.meta-item:hover .meta-value {
    color: #00ffff;
}

.meta-value.rating {
    color: #ffff00;
}

.meta-value.size {
    color: #00ff00;
}

.section-divider {
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    animation: fadeIn 0.6s ease-out 0.8s forwards;
}

.section-title-small {
    color: #00ffff;
    font-size: 1.5rem;
    margin-bottom: 15px;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 1s forwards;
}

.game-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1.1rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 1.1s forwards;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 1.2s forwards;
}

.feature-tag {
    background: rgba(0, 255, 255, 0.1);
    color: #00ffff;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    border: 1px solid rgba(0, 255, 255, 0.3);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.feature-tag:hover {
    background: rgba(0, 255, 255, 0.2);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 255, 255, 0.2);
}

.platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 1.3s forwards;
}

.platform-tag {
    background: rgba(255, 0, 255, 0.1);
    color: #ff00ff;
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 0, 255, 0.3);
    transition: all 0.3s ease;
}

.platform-tag:hover {
    background: rgba(255, 0, 255, 0.2);
    transform: translateY(-3px) scale(1.05);
}

/* BOTONES DE ACCIÓN CON ANIMACIONES MEJORADAS */
.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 1.4s forwards;
}

.download-btn-primary {
    flex: 1;
    min-width: 250px;
    background: linear-gradient(45deg, #00ff00, #00cc00);
    color: #000;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.download-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.download-btn-primary:hover::before {
    left: 100%;
}

.download-btn-primary:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 255, 0, 0.4);
}

.download-btn-primary i {
    font-size: 1.5rem;
    transition: transform 0.4s ease;
}

.download-btn-primary:hover i {
    transform: translateY(-3px) rotate(360deg);
}

.download-info {
    flex: 1;
    min-width: 250px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s ease;
}

.download-info:hover {
    transform: translateY(-5px);
    border-color: #00ffff;
    background: rgba(255, 255, 255, 0.08);
}

.download-info i {
    color: #00ffff;
    font-size: 1.5rem;
    transition: transform 0.4s ease;
}

.download-info:hover i {
    transform: scale(1.2) rotate(15deg);
}

.download-info span {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.download-info:hover span {
    color: #fff;
}

/* PIE DE PÁGIMA CON ANIMACIÓN */
footer {
    background: rgba(10, 10, 20, 0.95);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.3s forwards;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #00ffff;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.4s forwards;
}

.footer-logo i {
    color: #ff00ff;
    transition: transform 0.4s ease;
}

.footer-logo:hover i {
    transform: rotate(360deg);
}

.footer-text {
    color: #aaa;
    margin-bottom: 20px;
    font-size: 0.9rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.5s forwards;
}

.footer-links {
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.6s forwards;
}

.footer-discord {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(88, 101, 242, 0.1);
    color: #7289DA;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.footer-discord::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: left 0.6s ease;
}

.footer-discord:hover::before {
    left: 100%;
}

.footer-discord:hover {
    background: rgba(88, 101, 242, 0.2);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(88, 101, 242, 0.3);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .title-sub {
        font-size: 1.3rem;
    }
    
    .mega-btn {
        min-width: 300px;
        height: 80px;
    }
    
    .btn-main-text {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .game-title {
        font-size: 2rem;
    }
    
    .action-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .mega-btn {
        min-width: 280px;
    }
    
    .btn-inner {
        padding: 15px 20px;
        gap: 10px;
    }
    
    .btn-main-text {
        font-size: 1.2rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-card {
        width: 100%;
        max-width: 300px;
    }
}

/* ANIMACIONES DE SALIDA */
.page-exit {
    animation: pageExit 0.4s ease-out forwards;
}

@keyframes pageExit {
    from