main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 52px 1rem 1.5rem; /* top: fixed navbar height */
    min-height: 100dvh;
    text-align: center;
    box-sizing: border-box;
}

main h1 {
    font-size: clamp(1.4rem, 5vw, 2rem);
    margin: 0 0 0.5rem;
}

#storyImage {
    max-width: min(80vw, 600px);
    max-height: 40vh;
    margin: 1rem auto;
    display: none;
    border-radius: var(--radius);
    object-fit: contain;
}

#micIcon {
    width: 48px;
    height: 48px;
    margin: 0.75rem auto;
    display: block;
}

.game-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin: 0.75rem 0;
}

#results {
    margin-top: 1rem;
    font-size: 1.1rem;
    white-space: pre-wrap;
    color: var(--color-text);
    min-height: 3rem;
}

#score,
#timer {
    font-weight: bold;
    font-size: 1rem;
    color: var(--color-text-muted);
    margin: 0.25rem 0;
}

@media (max-width: 480px) {
    #storyImage { max-height: 30vh; }
}
