* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: white;
}

/* Fondo con Zoom Suave */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #000;
}

.background-image {
    width: 100%;
    height: 100%;
    background: url('assets/background.jpg') center/cover no-repeat;
    filter: blur(20px) brightness(0.5);
    animation: zoomEffect 20s infinite alternate ease-in-out;
}

@keyframes zoomEffect {
    from { transform: scale(1); }
    to { transform: scale(1.15); }
}

/* Contenedor Principal */
.player-container {
    width: 350px;
    text-align: center;
    z-index: 1;
}

.station-name {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.cover-art img {
    width: 280px;
    height: 280px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    object-fit: cover;
}

/* Redes Sociales */
.social-links {
    margin: 15px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    color: white;
    font-size: 18px;
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 0.7;
}

/* Info del Track */
.track-info {
    margin: 15px 0;
}

#track-title {
    font-size: 18px;
    font-weight: 500;
}

#track-artist {
    font-size: 14px;
    opacity: 0.8;
}

/* Vumeter Animado */
.vumeter {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 30px;
    gap: 3px;
    margin-bottom: 15px;
}

.vumeter .bar {
    width: 4px;
    height: 5px;
    background: white;
    border-radius: 2px;
}

.playing .bar {
    animation: dance 1s infinite ease-in-out alternate;
}

.vumeter .bar:nth-child(2) { animation-delay: 0.2s; }
.vumeter .bar:nth-child(3) { animation-delay: 0.4s; }
.vumeter .bar:nth-child(4) { animation-delay: 0.1s; }
.vumeter .bar:nth-child(5) { animation-delay: 0.3s; }

@keyframes dance {
    from { height: 5px; }
    to { height: 25px; }
}

/* Controles */
.progress-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 20px;
}

.progress-bar {
    flex: 1;
    height: 2px;
    background: rgba(255,255,255,0.3);
    margin: 0 10px;
}

.controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-small {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

.play-pause {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.7);
    color: #333;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}