: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 {
    width: 100%;
    max-width: 30rem;
}

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