/* Estilos generales */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: white;
}

/* Header y Logo */
header {
    background-color: #1a1a1a;
}

.header-content {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    gap: 2rem;
}

.logo {
    height: 100px;
    width: auto;
}

/* Menú visual */
.menu-visual {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    background-color: #1a1a1a;
}

.menu-item {
    text-align: center;
    transition: transform 0.3s;
}

.menu-item:hover {
    transform: scale(1.05);
}

.menu-item img {
    width: 200px;
    height: 200px;
    border-radius: 10px;
    margin-bottom: 1rem;
    object-fit: cover;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.menu-item span {
    display: block;
    font-size: 1.2rem;
    color: #fff;
}

.menu-item a {
    text-decoration: none;
}

/* Secciones de contenido */
.seccion-contenido {
    display: none;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Botón volver */
.volver-container {
    margin-bottom: 2rem;
}

.boton-volver {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.boton-volver:hover {
    background-color: #444;
}

/* Tarjetas de juegos */
.juego-card {
    background-color: #1a1a1a;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.juego-card h3 {
    margin-top: 0;
    color: #fff;
}

.boton-descarga {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.boton-descarga:hover {
    background-color: #45a049;
}

/* Tarjetas de proyectos */
.proyecto-card {
    background-color: #1a1a1a;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem;
    background-color: #1a1a1a;
    margin-top: 2rem;
}

/* Asegurarse que el menú principal sea flex por defecto */
#menu-principal {
    display: flex;
}