html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

body {
    background: url('../background.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: Arial, sans-serif;
}

/* Logo centrado */
.center-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.logo {
    max-width: 70%;
}

/* Barra del player */
.player-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    box-sizing: border-box;
}

/* Botón play */
.player-bar button {
    font-size: 26px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* Info */
.info {
    flex: 1;
}

.radio-name {
    font-size: 16px;
    font-weight: bold;
}

.live {
    font-size: 12px;
    color: #ff3b3b;
    animation: blink 1.2s infinite;
}

@keyframes blink {
    50% {
        opacity: 0.4;
    }
}

/* Volumen */
#volume {
    width: 120px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    box-sizing: border-box;
    z-index: 1000;
}

.header a {
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    opacity: 0.9;
}

.header a:hover {
    opacity: 1;
}

/* Ajustes SOLO para celular */
@media (max-width: 600px) {

    /* Cabecera */
    .header {
        height: 120px;
    }

    .header a {
        font-size: 14px;
    }

    /* Contenido central (para que no quede tapado) */
    .center-content {
        padding-top: 60px;
    }

    /* Player inferior */
    .player-bar {
        height: 220px;
        padding: 0 20px;
    }

    .player-bar button {
        font-size: 28px;
        width: 56px;
        height: 56px;
    }

    #volume {
        width: 150px;
    }
}