
.category-display {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 20px;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
}

.category-display h1 {
    font-family: var(--font-fancy);
    color: var(--cream);
    text-align: center;
    font-size: 2.5rem;
    letter-spacing: 0.01em;
}

.player-progress{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 80%;
    flex-shrink: 0;
}
.player-progress-dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.player-progress-dot{
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.locked-in {
    justify-content: center;
}

.locked-in-msg {
    font-family: var(--font-fancy);
    font-size: 1.5rem;
    color: var(--cream);
    text-align: center;
    opacity: 0;
    animation: fade-in 0.3s ease forwards;
}

@keyframes fade-in {
    to { opacity: 1; }
}

@keyframes punch {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.15); }
    100% { transform: scale(1); }
}
.lock-in-punch {
    animation: punch 0.15s ease-out;
}

@keyframes dot-pop {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.3); }
    100% { transform: scale(1); }
}
.dot-pop {
    animation: dot-pop 0.2s ease-out;
}

@keyframes char-in {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
}
.typewriter-char {
    display: inline-block;
    animation: char-in 0.15s ease-out both;
}

.timer-urgent circle {
    stroke: var(--coral) !important;
}
@keyframes timer-pulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.5; }
}
.timer-urgent {
    animation: timer-pulse 0.8s ease-in-out infinite;
}

.timer-critical-screen::after {
    content: '';
    position: absolute;
    inset: -100vw;
    pointer-events: none;
    background: radial-gradient(ellipse at center, transparent 50%, rgba(232,100,90,0.15) 100%);
    z-index: 0;
}