@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    --primary: #FF4D4D;
    --primary-hover: #E53E3E;
    --gradient: linear-gradient(135deg, #FF4D4D 0%, #FF6B35 100%);
    --glass: rgba(255, 255, 255, 0.05);
    --dark-bg: #0f0f0f;
    --text: #ffffff;
    --text-secondary: #cccccc;
    --shadow: 0 8px 32px rgb(255, 0, 0);
}

/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, sans-serif;
}

body {
    background: var(--dark-bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


/* Main Content */
.container {
    max-width: 1200px;
    margin: 60px auto 2rem;
    /* Antes: 15px auto 2rem */
    padding: 0 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 77, 77, 0.1);
    box-shadow: var(--shadow);
    animation: shadowColorCycle 3s linear infinite;
}

h1 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 2rem;
}

/* Carrusel */
/* Carrusel más ancho y centrado */
.programa-carousel {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 24px auto;
    /* Cambia 200px por 24px o el valor que prefieras */
    height: 280px;
    border-radius: 16px;
    /* <-- Aplica a todas las esquinas */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #181818;
    box-shadow: 0 4px 24px #0004;
    border: 4px solid #ff4d4d;
    /* Cambia el color si lo deseas */
}

/* Swiper styles */
.swiper-container {
    width: 100%;
    height: 300px;
    /* Ajusta la altura según tus necesidades */
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}




.requisitos {
    margin-top: 5%;

}



/*VERCION*/


.version h4 {
    margin: 0;
    font-size: 18px;
    color: #fe0000;

}

.version p {
    font-family: 'Press Start 2P', cursive;
    /* Fuente 8-bit */
    margin: 5px 0 0;
    font-size: 16px;
    color: #ffcc00;
    /* Amarillo vibrante */
    text-shadow: 2px 2px 0px #000,
        /* Sombra negra para efecto 8-bit */
        4px 4px 0px rgba(0, 0, 0, 0.5);
    /* Sombra adicional */
}



.especificaciones {

    margin-top: 1%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.spec-item {
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    animation: shadowColorCycle 3s linear infinite;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #000000;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.spec-item img {
    width: 30px;
}

.descripcion {
    font-family: 'Press Start 2P', cursive;
    /* Fuente 8-bit */
    margin: 30px 0;
    line-height: 1.6;
    color: var(--text-secondary);
}

.stats {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
}

.like-btn {

    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, #ff4d4d 0%, #ff9800 100%);
    color: #fff;
    border: none;
    padding: 10px 26px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.08rem;
    letter-spacing: 1px;
    box-shadow: 0 2px 12px rgba(255, 77, 77, 0.18), 0 1.5px 0 #fff2 inset;
    cursor: pointer;
    transition:
        background 0.2s,
        color 0.2s,
        transform 0.2s,
        box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}

.like-btn::before {
    font-size: 1.2em;
    margin-right: 6px;
}

.like-btn:hover {
    background: linear-gradient(90deg, #ff9800 0%, #ff4d4d 100%);
    color: #fff;
    transform: scale(1.07);
    box-shadow: 0 6px 24px rgba(255, 152, 0, 0.25);
}

.descargas {
    font-size: 1.2em;
    color: #ffffff;
}

.descargar-opciones {
    position: relative;
    display: flex;
    align-items: center;
}

.descargar-btn {
    display: inline-block;
    background: linear-gradient(90deg, #ff4d4d 0%, #ff9800 100%);
    color: #fff;
    padding: 12px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.08rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 16px rgba(255, 77, 77, 0.25), 0 1.5px 0 #fff2 inset;
    border: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}

.descargar-btn:hover {
    background: linear-gradient(90deg, #ff9800 0%, #ff4d4d 100%);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(255, 152, 0, 0.35);
}

.opciones-descarga {
    display: none;
}

.opciones-descarga.show {
    display: flex;
}

.opcion-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #23272f 0%, #ff9800 100%);
    color: #fff;
    padding: 10px 44px 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid #ff9800;
    box-shadow: 0 2px 12px rgba(255, 152, 0, 0.18);
    transition:
        background 0.25s,
        color 0.2s,
        transform 0.2s,
        box-shadow 0.2s,
        border 0.2s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.opcion-btn::before {
    content: 'Ad';
    position: absolute;
    top: 6px;
    right: 10px;
    padding: 2px 7px;
    border-radius: 999px;
    font-size: 0.65rem;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.6);
    color: #ffcc7a;
    border: 1px solid rgba(255, 204, 122, 0.6);
    box-shadow: 0 0 8px rgba(255, 152, 0, 0.25);
    pointer-events: none;
}

.opcion-btn img {
    width: 22px;
    height: 22px;
    filter: drop-shadow(0 2px 8px #ff9800aa);
}

.opcion-btn::after {
    content: '';
    position: absolute;
    left: -40%;
    top: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.18) 100%);
    transform: skewX(-20deg);
    transition: left 0.4s;
    pointer-events: none;
}

.opcion-btn:hover {
    background: linear-gradient(90deg, #ff9800 0%, #23272f 100%);
    color: #ffffff;
    border: 2px solid #fff;
    transform: scale(1.07);
    box-shadow: 0 6px 24px #ff9800cc;
}

.opcion-btn:hover::after {
    left: 100%;
}

/* Configuración de las partículas */
.particle {
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: #0c2bc8;
    border-radius: 50%;
    animation: moveParticles 5s infinite;
    opacity: 0.6;
}


.opcion-btn.pro-border {
    border: 3px solid #ff4d4d;
    animation: proBorderColorCycle 1s linear infinite;
}







/* Animación para las partículas */
@keyframes moveParticles {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(calc(100vw - 50px), calc(100vh - 50px), 0);
    }
}

/* Poner el contenedor de las partículas */
#particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* Para que las partículas no interfieran con el clic en otros elementos */
}

.swiper-container {
    width: 100%;
    height: 300px;
    /* Ajusta la altura según tus necesidades */
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.reportar-enlace {
    text-align: center;
    margin-top: 1px;
    margin-bottom: 50px;
}

.reportar-btn {
    display: inline-block;
    background: linear-gradient(90deg, #000000 0%, #ff0000 100%);
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-size: 1.08rem;
    font-weight: bold;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 16px rgba(255, 77, 77, 0.18), 0 1.5px 0 #fff2 inset;
    transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.reportar-btn:hover {
    background: linear-gradient(90deg, #ff9800 0%, #ff4d4d 100%);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(255, 152, 0, 0.25);
}

.comentarios-juego {
    width: 100%;
    max-width: 1200px;
    margin: 10px auto 60px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.comentarios-juego h3 {
    margin-bottom: 12px;
    color: #f2f2f2;
    letter-spacing: 0.4px;
}

.comentarios-vacio {
    color: #bdbdbd;
}

.comentario-item {
    padding: 14px 16px;
    margin-top: 12px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.comentario-header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.9rem;
    color: #d6d6d6;
}

.comentario-autor {
    font-weight: 600;
    color: #ffffff;
}

.comentario-texto {
    margin-top: 8px;
    color: #e0e0e0;
    line-height: 1.6;
    word-break: break-word;
}

.comentario-imagen {
    display: block;
    margin-top: 10px;
    width: 300px;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.comentario-form {
    margin-top: 18px;
    display: grid;
    gap: 10px;
}

.comentario-form textarea {
    min-height: 110px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    resize: vertical;
}

.comentario-hint {
    font-size: 0.85rem;
    color: #bdbdbd;
}

.comentario-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    color: #bdbdbd;
    font-size: 0.85rem;
}

.comentario-upload {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px dashed rgba(255, 255, 255, 0.35);
    background: rgba(0, 0, 0, 0.4);
    color: #f5f5f5;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.comentario-upload:hover {
    border-color: rgba(255, 152, 0, 0.8);
    background: rgba(0, 0, 0, 0.55);
    transform: translateY(-1px);
}

.comentario-upload:focus-visible {
    outline: 2px solid rgba(255, 152, 0, 0.8);
    outline-offset: 2px;
}

.upload-icon {
    display: inline-flex;
    color: #ffcc7a;
}

.upload-plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 152, 0, 0.25);
    color: #ffcc7a;
    font-weight: 700;
    font-size: 0.9rem;
}

.upload-text {
    font-size: 0.9rem;
}

.comentario-btn {
    align-self: flex-start;
    padding: 10px 22px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(90deg, #ff4d4d 0%, #ff9800 100%);
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
}

.comentario-btn:hover {
    background: linear-gradient(90deg, #ff9800 0%, #ff4d4d 100%);
}

.comentario-login {
    margin-top: 12px;
    color: #d6d6d6;
}

.comentario-login a {
    color: #ff9800;
}

.reportar-enlace {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.reportar-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #d9534f;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.reportar-btn:hover {
    background-color: #c9302c;
}

/* Modal styles */
.modal {
    margin-top: -150px;
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 130%;
    overflow: hidden;
    /* Evitar el desplazamiento */
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #000;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    text-align: center;
    color: #fff;
    border: 2px solid #FF4D4D;
    /* Bordes de colores */
    overflow: hidden;
    /* Evitar el desplazamiento */
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: red;
    text-decoration: none;
    cursor: pointer;
}

.instrucciones-lista {
    text-align: left;
    margin: 20px 0;
    padding: 0;
    list-style-type: none;
}

.instrucciones-lista li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.instrucciones-lista li::before {
    content: "•";
    color: #FF4D4D;
    /* Color del borde */
    position: absolute;
    left: 0;
}

.instrucciones-lista .sin-punto {
    list-style-type: none;
    padding-left: 0;
    position: static;
    /* Remove the bullet point */
}

.gif-centrado {
    width: 100px;
    height: 100px;
    display: block;
    margin: 0 auto 10px auto;
    /* Centrar la imagen y añadir margen inferior */
}

.texto-centrado {
    color: #c9302c;
    text-align: center;
    margin-top: 10px;
}

/* Estilo para el botón "Continuar" */
#continueButton {
    display: inline-block;
    padding: 10px 20px;
    background-color: #FF4D4D;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.descargas {
    font-family: 'Press Start 2P', cursive;
    font-size: 14px;
    color: #fff;
}

#continueButton:hover {
    background-color: rgba(250, 175, 14, 0.86);
}

.tutorial-boton {
    text-align: center;
    margin-top: 2%;
}

.btn-tutorial {
    animation: shadowColorCycle 3s linear infinite;
    display: inline-block;
    background-color: rgba(231, 112, 0, 0.97);
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-tutorial:hover {
    background-color: #0056b3;
}

/* Estilos para el área de contraseña */
.area-contrasena {
    display: flex;
    margin-top: 20px;
    margin-bottom: 20px;
    gap: 10px;
    animation: fadeIn 1s ease-in-out;
}

.contrasena-label {
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: bold;
    color: rgb(255, 255, 255);
    /* Amarillo vibrante */
    text-shadow: 1px 1px 2px #000;
}

#contrasena {
    margin-left: 10px;
    font-size: 16px;
    padding: 10px;
    border: 2px solidrgb(255, 0, 0);
    /* Amarillo vibrante */
    border-radius: 10px;
    width: 220px;
    text-align: center;
    background-color: #333;
    /* Fondo oscuro */
    color: rgb(255, 255, 255);
    /* Texto amarillo */
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#contrasena:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgb(255, 102, 0);
}

.copiar-btn {
    font-size: 16px;
    padding: 10px 15px;
    background: linear-gradient(45deg, rgba(231, 57, 3, 0.66), #ff9800);
    /* Degradado naranja */
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background 0.3s ease;
}

.copiar-btn:hover {
    transform: scale(1.1);
    background: linear-gradient(45deg, #ff9800, #ff5722);
    /* Invertir degradado */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.5);
}

/* Animación de entrada */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shadowColorCycle {
    0% {
        box-shadow: 0 8px 32px rgb(255, 0, 0);
    }

    33% {
        box-shadow: 0 8px 32px rgb(255, 153, 0);
    }

    66% {
        box-shadow: 0 8px 32px rgb(0, 153, 255);
    }

    100% {
        box-shadow: 0 8px 32px rgb(255, 0, 0);
    }
}

/* Animación para el borde de los botones PRO */
@keyframes proBorderColorCycle {
    0% {
        border-color: #ff4d4d;
    }

    33% {
        border-color: #ffae33;
    }

    66% {
        border-color: #00cfff;
    }

    100% {
        border-color: #ff4d4d;
    }
}

/* Modal más ancho y texto más grande en móvil */
@media (max-width: 600px) {
    .modal-content {
        margin-top: 110px;
        width: 96%;
        max-width: 98vw;
        font-size: 1.08rem;
        padding: 16px;
    }

    .modal-content h2 {
        font-size: 1.2rem;
    }

    .modal-content ul,
    .modal-content li {
        font-size: 1rem;
    }
}

.sidebar {
    border: none !important;
    box-shadow: none !important;
    animation: none !important;
}

/* Media query para móvil: DEBE estar fuera de cualquier otra regla */
@media (max-width: 600px) {
    body {
        overflow-x: hidden;
    }

    .container {
        width: min(94vw, 560px);
        margin: 62px auto 1rem !important;
        padding: 1rem !important;
        border-radius: 14px;
        border: 1px solid rgba(255, 77, 77, 0.28);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
        animation: none;
    }

    h1 {
        margin: 0 0 0.9rem;
        font-size: clamp(1.55rem, 6vw, 2rem);
        line-height: 1.15;
        letter-spacing: 0.3px;
    }

    .programa-carousel {
        margin: 0 auto 0.75rem !important;
        width: 100%;
        max-width: 100%;
        height: clamp(215px, 58vw, 280px);
        border-radius: 12px;
        border-width: 3px;
        box-shadow: 0 8px 26px rgba(0, 0, 0, 0.45);
        position: relative;
        overflow: hidden;
    }

    .programa-carousel.swiper-container {
        width: 100% !important;
        height: clamp(215px, 58vw, 280px) !important;
    }

    .swiper-wrapper {
        height: 100% !important;
    }

    .swiper-slide {
        width: 100% !important;
        height: 100% !important;
        display: block;
    }

    .programa-carousel .swiper-slide img {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        border-radius: 10px;
        display: block;
    }

    .swiper-button-next,
    .swiper-button-prev {
        position: absolute;
        width: 34px;
        height: 34px;
        top: 50%;
        margin-top: 0;
        transform: translateY(-50%);
        border-radius: 999px;
        background: rgba(5, 10, 20, 0.72);
        border: 1px solid rgba(255, 255, 255, 0.18);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.35);
        color: #0a84ff;
        backdrop-filter: blur(2px);
        z-index: 20;
    }

    .swiper-button-prev {
        left: 8px;
    }

    .swiper-button-next {
        right: 8px;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 17px;
        font-weight: 700;
    }

    .swiper-pagination {
        bottom: 6px !important;
    }

    .version {
        margin: 0.25rem auto 0.75rem;
        width: fit-content;
        padding: 0.3rem 0.75rem;
        border-radius: 999px;
        background: rgba(255, 152, 0, 0.14);
        border: 1px solid rgba(255, 152, 0, 0.45);
    }

    .version p {
        margin: 0;
        font-size: 0.98rem;
        text-shadow: none;
    }

    .tutorial-boton {
        margin: 0.2rem 0 0.95rem;
    }

    .btn-tutorial {
        width: 100%;
        text-align: center;
        border-radius: 10px;
        font-size: 1rem;
        padding: 0.8rem 0.9rem;
    }

    .requisitos {
        margin-top: 0.7rem !important;
    }

    .requisitos h4 {
        margin-bottom: 0.55rem;
        font-size: 1.05rem;
        color: #ffb347;
    }

    .especificaciones {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.55rem;
        margin-top: 0;
    }

    .spec-item {
        margin-bottom: 0;
        border-radius: 10px;
        padding: 0.72rem 0.78rem;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    }

    .spec-item img {
        width: 24px;
        flex-shrink: 0;
    }

    .spec-item span {
        font-size: 0.95rem;
        line-height: 1.35;
    }

    .descripcion {
        margin: 0.95rem 0 0.65rem;
        padding: 0.95rem;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.07);
        font-size: 1rem;
        line-height: 1.7;
    }

    h4 {
        margin-top: 0.4rem;
    }

    .stats {
        margin: 0.7rem 0 0.9rem;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.6rem;
    }

    .like-btn,
    .descargas {
        margin: 0;
    }

    .like-btn {
        width: auto;
        padding: 0.58rem 1rem;
        border-radius: 999px;
        font-size: 0.95rem;
    }

    .descargas {
        padding: 0.53rem 0.9rem;
        border-radius: 999px;
        font-size: 0.92rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .descargar-opciones {
        display: block;
        width: 100%;
    }

    .descargar-btn {
        width: 100%;
        padding: 0.86rem 1rem;
        font-size: 0.95rem;
        letter-spacing: 0.3px;
    }

    .opciones-descarga.show {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.6rem;
        margin-top: 0.6rem;
        width: 100%;
    }

    .opcion-btn {
        width: 100%;
        justify-content: flex-start;
        padding: 0.72rem 2.6rem 0.72rem 0.85rem;
        font-size: 0.94rem;
    }

    .area-contrasena {
        margin-top: 0.95rem;
        margin-bottom: 0;
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 0.5rem;
        align-items: center;
    }

    .contrasena-label {
        margin: 0;
        font-size: 0.95rem;
        white-space: nowrap;
    }

    #contrasena {
        margin-left: 0;
        width: 100%;
        min-width: 0;
        font-size: 0.95rem;
        padding: 0.75rem;
    }

    .copiar-btn {
        grid-column: 1 / -1;
        width: 100%;
        padding: 0.75rem 0.9rem;
        font-size: 0.95rem;
    }

    .reportar-enlace {
        margin-top: 0.55rem;
        margin-bottom: 1rem;
    }

    .reportar-btn {
        width: min(94vw, 560px);
        padding: 0.78rem 1rem;
        border-radius: 10px;
        font-size: 0.9rem;
    }

    .comentarios-juego {
        width: min(94vw, 560px);
        margin: 0.3rem auto 1.2rem;
        padding: 0.95rem;
        border-radius: 14px;
    }

    .comentarios-juego h3 {
        font-size: 1.08rem;
    }

    .comentario-item {
        padding: 0.72rem;
        border-radius: 10px;
    }

    .comentario-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }

    .comentario-imagen {
        width: 100%;
        height: auto;
        max-height: 190px;
    }

    .comentario-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 0.45rem;
    }

    .comentario-upload {
        justify-content: center;
    }

    .comentario-btn {
        width: 100%;
        text-align: center;
    }
}

/* Media query para escritorio */
@media (min-width: 601px) {
    .version {
        margin-bottom: 8px !important;
    }

    .programa-carousel {
        margin: 8px auto 24px auto !important;
    }
}

/* Desktop-only polish for the main content area */
@media (min-width: 901px) {
    .container {
        max-width: 1180px;
        padding: 3.5rem 4rem;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 20px;
        box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 77, 77, 0.08);
        animation: none;
        font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
    }

    h1 {
        color: #f5f5f5;
        font-size: 2.4rem;
        letter-spacing: 0.4px;
        margin-bottom: 1.5rem;
        text-transform: none;
        text-shadow: none;
    }

    h1::after {
        content: '';
        display: block;
        width: 120px;
        height: 4px;
        margin: 12px auto 0;
        border-radius: 999px;
        background: linear-gradient(90deg, #ff4d4d 0%, #ff9800 100%);
        opacity: 0.8;
    }

    .programa-carousel {
        max-width: 720px;
        height: 360px;
        border-radius: 18px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
    }

    .requisitos {
        margin-top: 2.5rem;
    }

    .requisitos h4 {
        font-size: 1.1rem;
        letter-spacing: 0.4px;
        color: #f0f0f0;
    }

    .especificaciones {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px 20px;
        margin-top: 0.75rem;
    }

    .spec-item {
        padding: 14px 16px;
        border-radius: 12px;
        background: rgba(10, 10, 10, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.06);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
        animation: none;
    }

    .spec-item span {
        color: #e6e6e6;
        font-size: 0.98rem;
    }

    .descripcion {
        font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
        font-size: 1.02rem;
        line-height: 1.85;
        color: #d6d6d6;
        margin: 28px 0 18px;
    }

    .stats {
        gap: 24px;
        margin: 18px 0 24px;
    }

    .like-btn {
        padding: 12px 30px;
        border-radius: 999px;
        font-size: 1rem;
        letter-spacing: 0.6px;
    }

    .descargas {
        font-size: 1rem;
        color: #dcdcdc;
    }

    .descargar-opciones {
        margin-top: 10px;
    }

    .opciones-descarga.show {
        margin-top: 12px;
    }

    .tutorial-boton {
        margin-top: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .area-contrasena {
        margin-top: 26px;
        padding: 14px 16px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        align-items: center;
    }
}