:root {
    color-scheme: dark;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    color: #eee;
    font-family: system-ui, -apple-system, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

main {
    text-align: center;
    padding: 2rem;
    max-width: 40rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.nowplaying {
    font-size: 1.1rem;
    color: #888;
    min-height: 1.5em;
    margin-bottom: 1.5rem;
}

audio {
    display: none;
}

.controls {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

button {
    background: none;
    border: 1px solid #444;
    color: #eee;
    font: inherit;
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    cursor: pointer;
}

button:hover {
    border-color: #888;
}

input[type="range"] {
    width: 12rem;
    accent-color: #eee;
}

.vol {
    font-size: 0.85rem;
    color: #888;
    min-width: 3rem;
    text-align: left;
}

.hint {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: #555;
}
