.pk-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  gap: 20px;
}

.pk-timer-wrapper {
  text-align: center;
  margin-top: 20px;
}

.pk-display {
  font-size: 64px;
  font-weight: 800;
  color: var(--ios-blue);
  font-variant-numeric: tabular-nums;
}

.pk-total-today {
  font-size: 17px;
  color: var(--text-secondary);
  margin-top: 8px;
}

.pk-card {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1 / 1;
  background-color: var(--bg-secondary);
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px var(--shadow);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
}

.pk-card.active {
  background-color: var(--ios-red);
  transform: scale(1.05);
}

.pk-card.active p {
  color: white;
}

.pk-card span {
  font-size: 80px;
}

.pk-card p {
  margin-top: 15px;
  font-weight: 700;
  color: var(--text-secondary);
}

.pk-reset-btn {
  background: none;
  border: none;
  color: var(--text-tertiary);
  text-decoration: underline;
  font-size: 14px;
}