body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #111;
}

#container {
    display: none; /* Hidden by default */
    width: 100%;
    height: 100%;
}

#cover-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    gap: 20px;
}

.cover-circle {
    font-size: 10em;
    text-shadow: 3px 3px 6px #000000;
}

.player-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 5em;
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px #000000;
    transition: background-color 0.1s ease;
}

#reset {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    font-size: 1.2em;
    cursor: pointer;
}

#countdown {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15em;
    color: white;
    text-shadow: 3px 3px 6px #000000;
    pointer-events: none; /* Allows clicks to go through */
}

#status-indicator {
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-size: 5em;
    pointer-events: none;
}