/* Extracted from pages/practice/index.html; edit the source CSS file directly. */
.page-coming-soon {
  min-height: calc(100vh - 140px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-6) var(--space-4);
  gap: var(--space-4);
}
.cs-kanji {
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 8rem);
  font-weight: 800;
  color: var(--text-ghost);
  line-height: 1;
  user-select: none;
}
.cs-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-ghost);
  border: 1px solid var(--gold-dim);
  color: var(--gold-light);
  border-radius: var(--radius-full);
  padding: 4px 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cs-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  margin: 0;
}
.cs-desc {
  color: var(--text-faint);
  max-width: 380px;
  line-height: 1.7;
  font-size: var(--fs-sm);
  margin: 0;
}
.cs-divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  opacity: 0.5;
}
.cs-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  margin-top: var(--space-2);
}
.cs-kana-hint {
  margin-top: var(--space-2);
  padding: var(--space-3) var(--space-4);
  background: var(--ink-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  max-width: 360px;
  font-size: 12px;
  color: var(--text-faint);
  line-height: 1.6;
}
.cs-kana-hint strong {
  color: var(--text-soft);
}
