.controls-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.control-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.time-selector {
    display: flex;
    background: rgba(0,0,0,0.3);
    border-radius: 30px;
    padding: 0.25rem;
    border: 1px solid rgba(255,255,255,0.05);
}

.btn-time {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
    font-family: inherit;
}

.btn-time:hover {
    color: white;
}

.btn-time.active {
    background: rgba(251, 146, 60, 0.2);
    color: #fb923c;
}

.click-area {
    min-height: 350px;
    background: rgba(0,0,0,0.2);
    border: 2px dashed rgba(251, 146, 60, 0.3);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.1s;
    user-select: none;
    margin-bottom: 2rem;
}

.click-area:active {
    background: rgba(251, 146, 60, 0.1);
    transform: scale(0.98);
}

.click-area.state-playing {
    border-color: #fb923c;
    box-shadow: inset 0 0 50px rgba(251, 146, 60, 0.1);
}

.click-area.state-done {
    border-color: #4ade80;
    background: rgba(74, 222, 128, 0.05);
    cursor: default;
}

.click-area.state-done:active {
    transform: none;
}

.click-content {
    text-align: center;
    pointer-events: none;
}

.icon-main {
    font-size: 4rem;
    color: #fb923c;
    margin-bottom: 1rem;
    transition: all 0.2s;
}

.state-done .icon-main {
    color: #4ade80;
}

#click-title {
    font-size: 2.5rem;
    margin: 0 0 0.5rem 0;
    color: white;
}

#click-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.stat-box {
    background: rgba(0,0,0,0.3);
    padding: 1.5rem 2.5rem;
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 150px;
}

.stat-val {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-val.highlight {
    color: #fb923c;
    text-shadow: 0 0 15px rgba(251, 146, 60, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-row {
    display: flex;
    justify-content: center;
}
