* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* Evitamos el desplazamiento en toda la página */
html, body {
    height: 100%;
    overflow: hidden; /* Prohibido el scroll */
}

body {
    background: url(consola.jpg) no-repeat center top;
    background-size: cover;
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
}

h1 {
    text-align: left;
    background-color: black;
    color: white;
    padding: 10px;
    font-family: "Orbitron", sans-serif;
    font-size: 1.2rem;
}

/* Este contenedor ocupa el espacio restante entre el título y la barra gris */
.contenedor-principal {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Centra el reproductor verticalmente */
    text-align: center;
    padding: 10px;
}

h2, h3 {
    color: white;
    font-family: "Orbitron", sans-serif;
}

.subtitulo {
    font-size: clamp(34px, 5vh, 45px);
}

.subtitulo2 {
    font-size: clamp(24px, 3vh, 20px);
    margin-bottom: 10px;
}

/* Reproductor con tamaño controlado */
#extassisnetwork {
    width: 290px;
    height: 340px;
    max-height: 50vh; /* No deja que el reproductor sea más alto que la mitad de la pantalla */
}

/* BARRA INFERIOR */
.footer-bar {
    position: relative;
    height: 100px; /* Alto de la franja gris */
    width: 100%;
    flex-shrink: 0;
}

.solido {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-icons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 25px;
}

.iconow, .iconof, .iconoi {
    transition: transform 0.2s;
    height: 55px; /* Tamaño de los iconos para que quepan bien */
    width: auto;
}

.iconow { background-color: #25d366; border-radius: 50%; }

.iconow:hover, .iconof:hover, .iconoi:hover {
    transform: scale(1.1);
}

/* Ajustes para pantallas pequeñas (celulares) */
@media (max-height: 650px) {
    .footer-bar { height: 70px; }
    .iconow, .iconof, .iconoi { height: 40px; }
    #extassisnetwork { transform: scale(0.8); height: 300px; }
    .subtitulo { font-size: 20px; }
}