[hidden] { display: none !important; }

/* ============================================ */
/* :root variables (visual.md 確定値)             */
/* ============================================ */
:root {
  --c-bg: #1A0E06;
  --c-amber-light: #C5791C;
  --c-amber-deep: #8B3A0F;
  --c-text: #F0EAE0;
  --c-score: #E8D4A8;
  --c-gold: #D4A430;

  --c-overlay-dark: rgba(15, 6, 2, 0.72);
  --c-overlay-game: rgba(15, 6, 2, 0.55);
  --c-surface: rgba(26, 14, 6, 0.70);
  --c-border: rgba(197, 121, 28, 0.30);

  --font-serif-en: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-serif-jp: 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 20px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --radius-sm: 4px;
  --radius-md: 6px;
  --max-content: 480px;

  --shadow-text: 0 2px 12px rgba(0, 0, 0, 0.60);
  --shadow-btn: 0 4px 16px rgba(197, 121, 28, 0.45);
  --shadow-glow-score: 0 0 24px rgba(197, 121, 28, 0.60);
  --shadow-secret: 0 0 20px rgba(212, 164, 48, 0.70);

  --ease-btn: 0.2s ease-out;
}

/* ============================================ */
/* Reset                                         */
/* ============================================ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  background-color: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-serif-jp);
  font-weight: 300;
  line-height: 1.8;
  min-height: 100vh;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; }
ul { list-style: none; }

/* ============================================ */
/* Screen layout                                 */
/* ============================================ */
.screen {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
}
.bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.bg-photo--game {
  opacity: 0.20;
}
.bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.bg-overlay--hero {
  background: linear-gradient(to bottom, rgba(15,6,2,0.10) 0%, rgba(15,6,2,0.72) 100%);
}
.bg-overlay--game {
  background: var(--c-overlay-game);
}
.bg-overlay--result {
  background: linear-gradient(to bottom, rgba(15,6,2,0.30) 0%, rgba(15,6,2,0.85) 100%);
}
.content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-content);
  margin: 0 auto;
  padding: var(--space-5) var(--space-3) var(--space-5);
  text-align: center;
}

/* ============================================ */
/* HERO                                          */
/* ============================================ */
.content--hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  gap: var(--space-3);
}
.app-name {
  font-family: var(--font-serif-jp);
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--c-score);
  opacity: 0.9;
  margin-bottom: var(--space-1);
}
.hero-catch {
  font-family: var(--font-serif-jp);
  font-weight: 700;
  font-size: clamp(1.9rem, 7vw, 2.8rem);
  line-height: 1.4;
  color: var(--c-text);
  text-shadow: var(--shadow-text);
  letter-spacing: 0.02em;
  margin-bottom: var(--space-1);
}
.hero-sub {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--c-text);
  opacity: 0.88;
  text-shadow: var(--shadow-text);
  margin-bottom: var(--space-3);
}

/* Demo UI */
.demo-panel {
  background: var(--c-surface);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}
.demo-target-row {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.demo-target-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: hsl(30, 70%, 55%);
  border: 3px solid rgba(240, 234, 224, 0.80);
  flex-shrink: 0;
}
.demo-label {
  font-size: 0.85rem;
  color: var(--c-text);
}
.demo-wheel {
  width: 120px;
  height: 60px;
  border-top-left-radius: 120px;
  border-top-right-radius: 120px;
  background: conic-gradient(
    from 270deg at 50% 100%,
    hsl(20, 75%, 30%) 0deg,
    hsl(25, 75%, 40%) 45deg,
    hsl(30, 75%, 50%) 90deg,
    hsl(40, 75%, 60%) 135deg,
    hsl(45, 75%, 65%) 180deg
  );
  position: relative;
  border: 1.5px solid rgba(240, 234, 224, 0.40);
  overflow: hidden;
}
.demo-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-text);
  border: 2px solid var(--c-bg);
  top: 35px;
  left: 55px;
  animation: demoOrbit 3s ease-in-out infinite;
}
@keyframes demoOrbit {
  0%   { top: 38px; left: 18px; }
  25%  { top: 12px; left: 38px; }
  50%  { top: 8px;  left: 60px; }
  75%  { top: 12px; left: 82px; }
  100% { top: 38px; left: 102px; }
}
.demo-hint {
  font-size: 0.78rem;
  color: var(--c-text);
  opacity: 0.7;
  line-height: 1.6;
}

/* ============================================ */
/* Buttons                                       */
/* ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  min-width: 200px;
  padding: 0 var(--space-4);
  background-color: var(--c-amber-light);
  color: #1A0E06;
  font-family: var(--font-serif-jp);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  transition: filter var(--ease-btn), box-shadow var(--ease-btn), transform var(--ease-btn);
  text-decoration: none;
  width: 100%;
  max-width: 320px;
}
.btn-primary:hover:not(:disabled):not([aria-disabled="true"]) {
  filter: brightness(1.12);
  box-shadow: var(--shadow-btn);
}
.btn-primary:focus-visible {
  outline: 2px solid var(--c-text);
  outline-offset: 3px;
}
.btn-primary[aria-disabled="true"],
.btn-primary:disabled {
  opacity: 0.45;
  pointer-events: none;
  cursor: not-allowed;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  min-width: 160px;
  padding: 0 var(--space-3);
  background: transparent;
  color: var(--c-text);
  border: 1px solid rgba(240, 234, 224, 0.40);
  border-radius: var(--radius-sm);
  font-family: var(--font-serif-jp);
  font-weight: 300;
  font-size: 0.9rem;
  transition: background-color var(--ease-btn), border-color var(--ease-btn);
}
.btn-secondary:hover {
  background-color: rgba(240, 234, 224, 0.08);
  border-color: rgba(240, 234, 224, 0.70);
}
.btn-secondary:focus-visible {
  outline: 2px solid var(--c-text);
  outline-offset: 3px;
}
.btn-sound {
  position: fixed;
  top: var(--space-2);
  right: var(--space-2);
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  background: var(--c-surface);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 1.1rem;
  z-index: 10;
  border: 1px solid var(--c-border);
}

/* ============================================ */
/* Caveats / Disclaimers                         */
/* ============================================ */
.caveat {
  font-size: 0.72rem;
  line-height: 1.6;
  color: var(--c-text);
  opacity: 0.55;
  margin-top: var(--space-2);
  letter-spacing: 0.02em;
}
.caveat--colorblind { opacity: 0.65; }

/* ============================================ */
/* GAME                                          */
/* ============================================ */
.content--game {
  padding: var(--space-3) var(--space-3) var(--space-5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  min-height: 100vh;
}
.game-header {
  width: 100%;
  text-align: center;
  margin-bottom: var(--space-1);
}
.progress {
  font-family: var(--font-serif-en);
  font-style: italic;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--c-score);
  letter-spacing: 0.05em;
}
.target-zone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-1);
}
.target-circle, .user-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid rgba(240, 234, 224, 0.80);
  background: hsl(30, 70%, 55%);
  flex-shrink: 0;
  transition: background-color 0.05s linear;
}
.user-circle {
  border: 3px dashed rgba(240, 234, 224, 0.60);
  background: hsl(30, 75%, 45%);
}
.target-circle::after, .user-circle::after {
  content: attr(data-label);
}
.question-block {
  text-align: center;
  margin-bottom: var(--space-1);
}
.question-title {
  font-family: var(--font-serif-jp);
  font-weight: 700;
  font-size: 1rem;
  color: var(--c-text);
  line-height: 1.6;
  margin-bottom: 4px;
}
.question-context {
  font-size: 0.82rem;
  color: var(--c-text);
  opacity: 0.75;
  letter-spacing: 0.03em;
  line-height: 1.6;
}
.guide-text {
  font-size: 0.85rem;
  color: var(--c-text);
  opacity: 0.78;
  text-align: center;
  margin-bottom: var(--space-1);
}
.wheel-wrapper {
  position: relative;
  width: min(300px, 80vw);
  height: min(300px, 80vw);
  margin: var(--space-1) auto;
}
#wheel {
  width: 100%;
  height: 100%;
  touch-action: none;
  display: block;
  cursor: crosshair;
  border-radius: 50%;
}
#wheel:focus-visible {
  outline: 2px solid var(--c-amber-light);
  outline-offset: 4px;
}
.wheel-label {
  position: absolute;
  font-size: 0.875rem;
  color: var(--c-text);
  opacity: 0.6;
  letter-spacing: 0.05em;
  pointer-events: none;
  white-space: nowrap;
}
.wheel-label--top { top: -4px; left: 50%; transform: translateX(-50%); }
.wheel-label--bottom { bottom: -4px; left: 50%; transform: translateX(-50%); }
.wheel-label--right { right: -8px; top: 50%; transform: translateY(-50%) rotate(90deg); transform-origin: right center; }

.result-block {
  text-align: center;
  margin: var(--space-2) 0;
  padding: var(--space-3);
  background: var(--c-surface);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
  width: 100%;
  max-width: 320px;
}
.result-score {
  font-family: var(--font-serif-en);
  font-style: italic;
  font-weight: 700;
  font-size: 4.2rem;
  line-height: 1;
  color: var(--c-score);
  font-feature-settings: "tnum" 1;
  margin-bottom: var(--space-1);
}
.result-score.is-glow {
  text-shadow: var(--shadow-glow-score);
}
.result-feedback {
  font-family: var(--font-serif-jp);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--c-amber-light);
  margin-bottom: var(--space-2);
}
.compare-row {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
}
.compare-pair {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.compare-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(240, 234, 224, 0.70);
  background: hsl(30, 70%, 55%);
}
.compare-label {
  font-size: 0.72rem;
  color: var(--c-text);
  opacity: 0.7;
}
.action-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  width: 100%;
  margin-top: var(--space-2);
}

/* ============================================ */
/* RESULT                                        */
/* ============================================ */
.content--result {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-5) var(--space-3);
}
.result-eye-caption {
  font-family: var(--font-serif-en);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--c-score);
  letter-spacing: 0.1em;
}
.rank-name {
  font-family: var(--font-serif-en);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.8rem, 6vw, 2.4rem);
  color: var(--c-text);
  text-shadow: var(--shadow-text);
  line-height: 1.3;
  text-align: center;
}
.rank-name.is-secret {
  color: var(--c-gold);
  text-shadow: var(--shadow-secret);
}
.rank-desc {
  font-family: var(--font-serif-jp);
  font-weight: 300;
  font-size: 0.92rem;
  color: var(--c-text);
  opacity: 0.85;
  line-height: 1.8;
  text-align: center;
  max-width: 360px;
}
.total-score {
  font-family: var(--font-serif-jp);
  font-weight: 700;
  font-size: 1rem;
  color: var(--c-text);
}
.total-score-num {
  font-family: var(--font-serif-en);
  font-style: italic;
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--c-score);
  font-feature-settings: "tnum" 1;
  letter-spacing: 0.03em;
  margin: 0 6px;
}
.secret-banner {
  width: 100%;
  max-width: 360px;
  padding: var(--space-3);
  border: 1px solid rgba(212, 164, 48, 0.50);
  border-radius: var(--radius-md);
  background: rgba(212, 164, 48, 0.10);
  text-align: center;
}
.secret-text {
  font-family: var(--font-serif-en);
  font-style: italic;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--c-gold);
  line-height: 1.6;
}
.score-list {
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.score-row {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: 10px var(--space-2);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.score-row .swatches {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.score-row .sw {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid rgba(240, 234, 224, 0.50);
}
.score-row .lbl {
  flex: 1;
  font-size: 0.8rem;
  color: var(--c-text);
  opacity: 0.85;
  line-height: 1.4;
  text-align: left;
}
.score-row .pts {
  font-family: var(--font-serif-en);
  font-style: italic;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--c-score);
  font-feature-settings: "tnum" 1;
}
.score-row.is-q4 {
  border-color: rgba(212, 164, 48, 0.60);
}
.score-row.is-q4 .pts {
  color: var(--c-gold);
}

.cta-block {
  width: 100%;
  max-width: 400px;
  padding: var(--space-3);
  background: var(--c-surface);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
}
.cta-text {
  font-family: var(--font-serif-jp);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--c-text);
}

.info-cards {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.info-card {
  padding: var(--space-3);
  background: var(--c-surface);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
  text-align: left;
}
.info-card-title {
  font-family: var(--font-serif-jp);
  font-weight: 700;
  font-size: 1rem;
  color: var(--c-amber-light);
  margin-bottom: var(--space-1);
  line-height: 1.5;
}
.info-card-body {
  font-size: 0.85rem;
  line-height: 1.85;
  color: var(--c-text);
  opacity: 0.88;
}
.info-card--cta .info-card-body {
  color: var(--c-text);
  opacity: 1;
  font-weight: 700;
  font-family: var(--font-serif-jp);
}

.progress-list {
  width: 100%;
  max-width: 360px;
  padding: var(--space-3);
  background: var(--c-surface);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
}
.progress-title {
  font-family: var(--font-serif-jp);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--c-score);
  margin-bottom: var(--space-2);
  text-align: center;
}
.rank-checklist {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rank-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--c-text);
  opacity: 0.55;
  line-height: 1.4;
}
.rank-checklist li.is-unlocked {
  opacity: 1;
  font-weight: 700;
  color: var(--c-amber-light);
}
.rank-checklist li.is-secret-locked {
  color: var(--c-gold);
  opacity: 0.7;
  animation: pulse 2.4s ease-in-out infinite;
}
.rank-checklist li.is-secret-unlocked {
  color: var(--c-gold);
  opacity: 1;
  font-weight: 700;
}
.rank-checklist .mark {
  flex-shrink: 0;
  width: 18px;
  text-align: center;
  font-weight: 700;
}
@keyframes pulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

.action-row--result {
  flex-direction: column;
  margin-top: var(--space-3);
}

/* ============================================ */
/* Share dialog                                  */
/* ============================================ */
.share-dialog {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3);
}
.share-dialog-inner {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  max-width: 420px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  text-align: center;
}
.btn-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 36px;
  height: 36px;
  font-size: 1.4rem;
  color: var(--c-text);
  opacity: 0.8;
  background: transparent;
}
.btn-close:hover { opacity: 1; }
.share-title {
  font-family: var(--font-serif-en);
  font-style: italic;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--c-score);
  margin-bottom: var(--space-2);
}
.share-preview {
  background: var(--c-surface);
  border-radius: var(--radius-sm);
  padding: var(--space-2);
  margin-bottom: var(--space-3);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.share-preview img {
  max-width: 100%;
  border-radius: var(--radius-sm);
}
.share-loading {
  color: var(--c-text);
  opacity: 0.7;
  font-size: 0.9rem;
}
.share-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  margin-bottom: var(--space-2);
}
.share-emoji-grid {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: var(--c-text);
}

/* ============================================ */
/* Hidden share card (html2canvas target)        */
/* ============================================ */
.share-card {
  position: absolute;
  left: -9999px;
  top: 0;
  width: 360px;
  height: 640px;
  overflow: hidden;
  background: var(--c-bg);
}
.share-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.share-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,6,2,0.15) 0%, rgba(15,6,2,0.78) 100%);
}
.share-card-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  color: var(--c-text);
}
.share-card-app {
  font-family: var(--font-serif-jp);
  font-weight: 300;
  font-size: 11px;
  color: var(--c-score);
  opacity: 0.9;
  letter-spacing: 0.12em;
}
.share-card-rank {
  font-family: var(--font-serif-en);
  font-style: italic;
  font-weight: 700;
  font-size: 38px;
  color: var(--c-text);
  text-shadow: 0 2px 14px rgba(0,0,0,0.7);
  line-height: 1.2;
  margin-top: 14px;
}
.share-card-rank.is-secret {
  color: var(--c-gold);
  text-shadow: 0 0 22px rgba(212, 164, 48, 0.75);
}
.share-card-score-label {
  font-family: var(--font-serif-jp);
  font-weight: 300;
  font-size: 12px;
  color: var(--c-text);
  opacity: 0.8;
  margin-top: 18px;
}
.share-card-score {
  font-family: var(--font-serif-en);
  font-style: italic;
  font-weight: 700;
  font-size: 56px;
  color: var(--c-score);
  font-feature-settings: "tnum" 1;
  line-height: 1;
  margin-top: 4px;
}
.share-card-compare {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 10px;
}
.share-card-compare .pair {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.share-card-compare .swatch-pair {
  display: flex;
  gap: 3px;
}
.share-card-compare .sw {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(240,234,224,0.6);
}
.share-card-compare .pts {
  font-family: var(--font-serif-en);
  font-style: italic;
  font-weight: 700;
  font-size: 14px;
  color: var(--c-text);
  font-feature-settings: "tnum" 1;
}
.share-card-emoji {
  font-size: 28px;
  letter-spacing: 0.15em;
  margin-top: 12px;
}
.share-card-tags {
  font-family: var(--font-serif-jp);
  font-weight: 300;
  font-size: 12px;
  color: var(--c-score);
  letter-spacing: 0.06em;
}
.share-card-disclaimer {
  font-family: var(--font-serif-jp);
  font-weight: 300;
  font-size: 9px;
  color: var(--c-text);
  opacity: 0.55;
  margin-top: 6px;
  line-height: 1.5;
}

/* ============================================ */
/* App footer                                    */
/* ============================================ */
.app-footer {
  position: relative;
  z-index: 2;
  background: #0a0502;
  text-align: center;
  padding: var(--space-3);
}
.footer-ai {
  font-size: 0.72rem;
  color: var(--c-text);
  opacity: 0.55;
}

/* ============================================ */
/* Tablet                                        */
/* ============================================ */
@media (min-width: 600px) {
  .content {
    padding: var(--space-5) var(--space-4);
  }
  .wheel-wrapper {
    width: 320px;
    height: 320px;
  }
}

/* ============================================ */
/* PC                                            */
/* ============================================ */
@media (min-width: 1024px) {
  .hero-catch {
    font-size: 3.4rem;
  }
  .wheel-wrapper {
    width: 340px;
    height: 340px;
  }
  .total-score-num { font-size: 2.8rem; }
}

/* ============================================ */
/* Reduced motion                                */
/* ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .demo-dot { animation: none; }
  .rank-checklist li.is-secret-locked { animation: none; }
}
