body {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #050505;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.skip-link {
    position: absolute;
    top: -50px;
    left: 10px;
    background: #00e5ff;
    color: #000;
    padding: 10px;
    z-index: 100;
}
.skip-link:focus { top: 10px; }

header h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin: 0;
    color: #00e5ff;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.tagline {
    font-size: 1.1rem;
    color: #888;
    margin-top: 10px;
}

.player-container {
    margin-top: 40px;
    background: #111;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.1);
    border: 1px solid #222;
    width: 300px;
}

#status {
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.status-online { color: #00ff88; text-shadow: 0 0 10px #00ff88; }
.status-offline { color: #555; }

.play-button {
    background: #00e5ff;
    border: none;
    width: 100%;
    padding: 18px;
    font-size: 1.2rem;
    font-weight: 900;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.play-button:hover {
    background: #ffffff;
    transform: translateY(-3px);
}

/* Estilos para el enlace de WhatsApp */
.social-container {
    margin-top: 10px;
}

.whatsapp-link {
    display: inline-block;
    color: #25d366; /* Verde oficial de WhatsApp */
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    padding: 10px;
    border: 1px solid #25d366;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    background: #25d366;
    color: #000;
}

.info-text {
    margin-top: 20px;
    font-size: 0.8rem;
    color: #444;
}