/* ==================================================
   BLOQUE JUEGOS 1 - CONTENEDOR GENERAL
================================================== */
.juegos-contenedor {
    max-width: 900px;
    margin: 0 auto;
}

/* ==================================================
   BLOQUE JUEGOS 2 - TEXTO INTRODUCTORIO
================================================== */
.juegos-intro {
    max-width: 720px;
    margin: 0 auto 30px;
    text-align: center;
    color: white;
    line-height: 1.7;
}

/* ==================================================
   BLOQUE JUEGOS 3 - SECCIONES DESPLEGABLES
================================================== */
.juegos-seccion {
    max-width: 700px;
    margin: 20px auto;
}

.juegos-boton-seccion {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    background-color: #22c55e;
    color: #0f172a;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s ease;
}

.juegos-boton-seccion:hover {
    background-color: #16a34a;
}

.juegos-contenido-seccion {
    display: none;
    margin-top: 12px;
}

/* ==================================================
   BLOQUE JUEGOS 4 - TARJETAS DE ACTIVIDADES
================================================== */
.juego-item {
    max-width: 700px;
    margin: 0 auto 15px;
    text-align: center;
}

.juego-item h3 {
    margin-bottom: 12px;
}

.juego-item p {
    margin-bottom: 14px;
    color: white;
    line-height: 1.6;
}

.juego-item .boton-verde {
    margin: 12px auto 0;
    font-size: 14px;
    padding: 8px 18px;
}

/* ==================================================
   BLOQUE JUEGOS 5 - MENSAJES Y BOTÓN VER TODO
================================================== */
.juegos-mensaje-vacio {
    text-align: center;
    color: #fca5a5;
    font-weight: bold;
    margin-top: 20px;
}

.juego-ver-todo {
    text-align: center;
    margin-top: 20px;
}

/* ==================================================
   BLOQUE JUEGOS 6 - DETALLES SECUNDARIOS
================================================== */
.juego-detalle {
    display: inline-block;
    margin-top: 6px;
    font-size: 14px;
    color: #cbd5e1;
}

/* ==================================================
   BLOQUE JUEGOS 7 - RESPONSIVE
================================================== */
@media (max-width: 768px) {
    .juegos-boton-seccion {
        font-size: 16px;
    }
}