* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    width: 100%;
    background-color: #000;
    color: #fff;
    font-family: 'Inter', sans-serif;
    overflow: hidden; /* Evita scroll doble */
}

/* BARRA SUPERIOR */
.header-nsc {
    height: 80px;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border-bottom: 2px solid #222;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 50px;
    border-radius: 5px;
}

.info-radio h1 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-radio p {
    font-size: 0.7rem;
    color: #888;
}

/* REPRODUCTOR */
.player-area audio {
    height: 35px;
    filter: invert(1); /* Hace que el reproductor combine con el fondo oscuro */
}

/* BOTONES */
.links-area {
    display: flex;
    gap: 10px;
}

.btn {
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 5px 15px;
    font-size: 0.7rem;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background: #fff;
    color: #000;
}

/* EL CHAT (Ocupa todo el resto) */
.chat-main {
    height: calc(100vh - 80px); /* Resta la altura del header */
    width: 100vw;
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* AJUSTES PARA MÓVIL */
@media (max-width: 768px) {
    .header-nsc {
        height: auto;
        flex-direction: column;
        padding: 10px;
    }
    .player-area, .links-area {
        margin-top: 10px;
    }
    .chat-main {
        height: calc(100vh - 160px);
    }
}