@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap');
body {
    margin: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b0c10;
    font-family: "Exo 2", sans-serif;
    color: #fff;
}

.player {
    background: transparent;
    padding: 20px 24px;
    border-radius: 14px;
    max-width: 360px;
    width: 100%;
    text-align: center;
}

.player h1 {
    font-size: 1.1rem;
    margin: 0 0 10px;
}

.player p {
    font-size: 0.9rem;
    margin: 0 0 14px;
    color: #9ca3af;
}

audio {
    width: 100%;
    outline: none;
}

#unmute-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 12, 16, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

#unmute-content {
    text-align: center;
}

#unmute-content h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

#unmute-content p {
    font-size: 1rem;
    color: #9ca3af;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.offline {
    color: #ef4444;
}

.online {
    color: #10b981;
    animation: pulse 2s infinite;
}

.checking {
    color: #fbbf24;
    animation: pulse 1.5s infinite;
}