.videojuego-container {
    width: 90%;
    max-width: 1100px;
    margin: 50px auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    padding: 40px;
}

.titulo-proyecto {
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 30px;
    text-align: center;
}

.info-general {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
}

.imagen-principal img {
    width: 320px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.detalles {
    flex: 1;
    min-width: 280px;
    font-size: 1rem;
    color: #444;
}

.detalles p {
    margin-bottom: 10px;
}

.boton-descarga {
    display: inline-block;
    background: #1e90ff;
    color: white;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 6px;
    transition: 0.3s ease;
}

.boton-descarga:hover {
    background: #0072e5;
}

.galeria {
    margin-top: 50px;
}

.galeria h2 {
    text-align: center;
    margin-bottom: 25px;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.galeria-grid img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.galeria-grid img:hover {
    transform: scale(1.05);
}

.descripcion {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.descripcion h2 {
    margin-bottom: 15px;
    text-align: center;
}
