.timer-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100dvh - 70px);
  padding: 1rem;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.timer-display {
  font-family: var(--font-mono);
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: -2px;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  text-align: center;
  color: var(--text-primary);
}

.timer-display.ready {
  color: var(--accent-green);
  text-shadow: 0 0 30px rgba(34, 197, 94, 0.5), 0 0 60px rgba(34, 197, 94, 0.2);
}

.timer-display.running {
  color: var(--accent-red);
  text-shadow: 0 0 30px rgba(239, 68, 68, 0.5), 0 0 60px rgba(239, 68, 68, 0.2);
}

.timer-display.stopped {
  color: var(--accent-cyan);
  text-shadow: 0 0 20px rgba(6, 182, 212, 0.4);
}

.timer-area {
  width: 100%;
  max-width: 400px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  background: var(--bg-card);
}

.timer-area.ready {
  border-color: var(--accent-green);
  background: var(--accent-green-dim);
  box-shadow: 0 0 30px rgba(34, 197, 94, 0.1);
}

.timer-area.running {
  border-color: var(--accent-red);
  background: var(--accent-red-dim);
  box-shadow: 0 0 30px rgba(239, 68, 68, 0.1);
}

.timer-hint {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.timer-controls {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.timer-controls .btn {
  min-width: 100px;
}

.timer-meta {
  margin-top: 1.5rem;
  width: 100%;
  max-width: 400px;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
