:root {
  --bg0: #0b1016;
  --bg1: #121a24;
  --card: rgba(12, 18, 28, 0.92);
  --line: rgba(226, 192, 126, 0.28);
  --gold: #e2c07e;
  --gold-soft: rgba(226, 192, 126, 0.14);
  --rose: #c45c6a;
  --rose-soft: rgba(196, 92, 106, 0.18);
  --text: #e8eef7;
  --muted: #9aacc0;
  --ok: #5ecf9a;
  --warn: #e0a45a;
  --danger: #e06a6a;
  --love: #f0a0b0;
  --radius: 14px;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC",
    "Microsoft YaHei", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1000px 500px at 10% -10%, rgba(196, 92, 106, 0.16), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(226, 192, 126, 0.12), transparent 50%),
    linear-gradient(160deg, var(--bg0), var(--bg1) 55%, #0a0f15);
  overflow-x: hidden;
}

.main-content {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 18px 12px 28px;
}

.mk-wrap {
  width: min(720px, 100%);
}

.mk-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 18px 20px;
  margin-bottom: 14px;
}

.mk-card h1 {
  margin: 0 0 10px;
  font-size: 1.55rem;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, #f0d7a2, #e2c07e 40%, #c45c6a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: center;
}

.mk-card h2 {
  margin: 22px 0 12px;
  font-size: 1.15rem;
  color: var(--gold);
}

.mk-card h2.h2-checklist {
  margin-top: 32px;
  padding-top: 6px;
}

.mk-lead {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.95rem;
  margin: 0 0 14px;
  text-align: center;
}

.mk-note {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
  border-left: 3px solid var(--gold);
  padding: 8px 10px;
  background: var(--gold-soft);
  border-radius: 0 10px 10px 0;
  margin: 12px 0;
}

.mk-warn {
  border-left-color: var(--danger);
  background: rgba(224, 106, 106, 0.12);
  color: #f0c4c4;
}

.hidden {
  display: none !important;
}

.mk-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 16px;
}

.btn {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 11px 18px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, #c45c6a, #a84858);
  color: #fff;
  box-shadow: 0 8px 20px rgba(196, 92, 106, 0.28);
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.btn-ghost:hover {
  background: var(--gold-soft);
  border-color: var(--gold);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
  color: var(--gold);
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.field {
  margin: 12px 0;
  text-align: left;
}

.field label {
  display: block;
  font-size: 0.86rem;
  color: var(--gold);
  margin-bottom: 6px;
}

.field .hint {
  font-size: 0.76rem;
  color: var(--muted);
  margin-top: 5px;
}

.field input[type="text"],
.field input[type="password"],
.field input[type="email"],
.field input[type="search"],
.field input:not([type]),
.field select {
  width: 100%;
  box-sizing: border-box;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 11px 12px;
  font-size: 0.95rem;
  font-family: inherit;
  line-height: 1.4;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

/* 密码框与文字框字重/占位符一致，避免浏览器默认差异 */
.field input[type="password"] {
  letter-spacing: 0.04em;
}

.field input::placeholder {
  color: var(--muted);
  opacity: 0.85;
  letter-spacing: normal;
}

.field input[type="password"]::placeholder {
  letter-spacing: normal;
}

.field input:focus,
.field select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(226, 192, 126, 0.12);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.86rem;
  cursor: pointer;
}

.chip.active {
  border-color: var(--rose);
  background: var(--rose-soft);
  color: #ffd7de;
}

.section-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0 14px;
  justify-content: center;
}

.section-pill {
  font-size: 0.72rem;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
}

.section-pill.done {
  border-color: rgba(94, 207, 154, 0.4);
  color: var(--ok);
}

.section-pill.current {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-soft);
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  overflow: hidden;
  margin: 6px 0 8px;
}

.progress-bar > i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  transition: width 0.25s ease;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.q-section-tag {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--gold);
  background: var(--gold-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 10px;
  margin-bottom: 10px;
}

.q-text {
  font-size: 1.32rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin: 4px 0 18px;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 1px 12px rgba(226, 192, 126, 0.18);
}

.q-hard-note {
  font-size: 0.78rem;
  color: #f0c4c4;
  background: rgba(224, 106, 106, 0.12);
  border: 1px solid rgba(224, 106, 106, 0.28);
  border-radius: 10px;
  padding: 8px 10px;
  margin: 0 0 12px;
  text-align: left;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

@media (min-width: 560px) {
  .options-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.opt-btn {
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 14px 8px;
  cursor: pointer;
  text-align: center;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease,
    box-shadow 0.15s ease, color 0.15s ease;
  min-height: 76px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.opt-btn .opt-label {
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.opt-btn .opt-hint {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.3;
}

.opt-btn:hover {
  transform: translateY(-2px);
}

/* 0 不要 → 冷淡 / 边界 */
.opt-btn.opt-no {
  border-color: rgba(120, 138, 158, 0.42);
  background: linear-gradient(165deg, rgba(90, 108, 128, 0.16), rgba(255, 255, 255, 0.02));
  color: #b8c6d6;
  box-shadow: none;
}

.opt-btn.opt-no .opt-label {
  font-size: 0.98rem;
  font-weight: 700;
  color: #c5d0dc;
}

.opt-btn.opt-no .opt-hint {
  color: rgba(154, 172, 192, 0.85);
}

.opt-btn.opt-no:hover,
.opt-btn.opt-no.selected {
  border-color: rgba(154, 172, 192, 0.62);
  background: linear-gradient(165deg, rgba(110, 128, 148, 0.28), rgba(255, 255, 255, 0.04));
  color: #d7e0ea;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

/* 1 或许 → 试探 / 暖黄 */
.opt-btn.opt-maybe {
  border-color: rgba(224, 164, 90, 0.4);
  background: linear-gradient(165deg, rgba(224, 164, 90, 0.12), rgba(255, 255, 255, 0.02));
  color: #e8c9a0;
}

.opt-btn.opt-maybe .opt-label {
  font-size: 1.02rem;
  color: #f0d2a8;
}

.opt-btn.opt-maybe .opt-hint {
  color: rgba(224, 180, 120, 0.82);
}

.opt-btn.opt-maybe:hover,
.opt-btn.opt-maybe.selected {
  border-color: rgba(224, 164, 90, 0.72);
  background: linear-gradient(165deg, rgba(224, 164, 90, 0.26), rgba(224, 164, 90, 0.06));
  color: #f8dfb8;
  box-shadow: 0 4px 16px rgba(180, 120, 40, 0.18);
}

/* 2 想要 → 明确兴趣 / 玫瑰 */
.opt-btn.opt-yes {
  border-color: rgba(196, 92, 106, 0.48);
  background: linear-gradient(165deg, rgba(196, 92, 106, 0.18), rgba(255, 255, 255, 0.02));
  color: #f0c0c8;
}

.opt-btn.opt-yes .opt-label {
  font-size: 1.06rem;
  color: #ffc8d2;
}

.opt-btn.opt-yes .opt-hint {
  color: rgba(232, 160, 172, 0.88);
}

.opt-btn.opt-yes:hover,
.opt-btn.opt-yes.selected {
  border-color: rgba(196, 92, 106, 0.78);
  background: linear-gradient(165deg, rgba(196, 92, 106, 0.32), rgba(196, 92, 106, 0.08));
  color: #ffd4dc;
  box-shadow: 0 6px 18px rgba(196, 92, 106, 0.22);
}

/* 3 很爱 → 最热 / 金粉高光 */
.opt-btn.opt-love {
  border-color: rgba(240, 160, 176, 0.58);
  background: linear-gradient(155deg, rgba(196, 92, 106, 0.28), rgba(226, 192, 126, 0.14));
  color: #ffe4ec;
  box-shadow: 0 0 0 1px rgba(226, 192, 126, 0.12), 0 4px 16px rgba(196, 92, 106, 0.12);
}

.opt-btn.opt-love .opt-label {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffe8c8;
  text-shadow: 0 0 18px rgba(226, 192, 126, 0.35);
}

.opt-btn.opt-love .opt-hint {
  color: rgba(255, 210, 180, 0.9);
}

.opt-btn.opt-love:hover,
.opt-btn.opt-love.selected {
  border-color: rgba(255, 190, 160, 0.85);
  background: linear-gradient(155deg, rgba(196, 92, 106, 0.42), rgba(226, 192, 126, 0.28));
  color: #fff0e8;
  box-shadow: 0 0 0 1px rgba(226, 192, 126, 0.35), 0 8px 22px rgba(196, 92, 106, 0.28);
  transform: translateY(-2px) scale(1.02);
}

.quiz-nav {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
}

/* Result */
.archetype-block {
  text-align: center;
  padding: 8px 0 4px;
}

.archetype-name {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin: 4px 0 8px;
  color: var(--gold);
}

.archetype-one {
  color: #e4ebf5;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.65;
  margin: 10px auto 12px;
  max-width: 36em;
  text-align: left;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(226, 192, 126, 0.08);
  border: 1px solid rgba(226, 192, 126, 0.22);
}

.archetype-tips {
  text-align: left;
  max-width: 36em;
  margin: 0 auto 14px;
  padding: 12px 14px 10px;
  border-radius: 12px;
  background: rgba(196, 92, 106, 0.1);
  border: 1px solid rgba(196, 92, 106, 0.28);
}

.archetype-tips .tips-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffd0d8;
  margin: 0 0 8px;
}

.archetype-tips ul {
  margin: 0;
  padding: 0 0 0 1.15em;
}

.archetype-tips li {
  color: #e8eef7;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0 0 6px;
}

.score-max {
  font-size: 0.72em;
  font-weight: 600;
  opacity: 0.55;
  margin-left: 1px;
}

.score-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 12px 0 6px;
}

.score-cell {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 8px;
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
}

.score-cell .k {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.score-cell .v {
  font-size: 1.6rem;
  font-weight: 800;
  margin-top: 4px;
  color: var(--gold);
}

.meter {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  margin-top: 8px;
}

.meter > i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #7aa2ff, var(--gold), var(--rose));
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 8px 0 2px;
}

.badge {
  border-radius: 999px;
  border: 1px solid rgba(196, 92, 106, 0.4);
  background: var(--rose-soft);
  color: #ffd7de;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.section-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
  margin-bottom: 8px;
}

.section-bar-item .label {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  margin-bottom: 4px;
  color: var(--muted);
}

.section-bar-item .bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.section-bar-item .bar > i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--rose));
}

.checklist details {
  border: 1px solid var(--line);
  border-radius: 12px;
  margin: 8px 0;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.checklist summary {
  cursor: pointer;
  padding: 11px 12px;
  font-weight: 700;
  color: var(--gold);
  list-style: none;
}

.checklist summary::-webkit-details-marker {
  display: none;
}

.checklist summary::after {
  content: "▾";
  float: right;
  color: var(--muted);
}

.checklist details[open] summary::after {
  content: "▴";
}

.check-items {
  padding: 0 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.check-item {
  font-size: 0.86rem;
  color: #d5e0ee;
  padding: 7px 9px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid transparent;
}

.check-item.love {
  border-left-color: var(--love);
}

.check-item.need {
  border-left-color: var(--rose);
}

.check-item.maybe {
  border-left-color: var(--warn);
}

.check-item.no {
  border-left-color: #6a7a8c;
  color: var(--muted);
}

.lookup-result {
  margin-top: 12px;
  padding: 12px;
  border-radius: 12px;
  border: 1px dashed var(--line);
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted);
}

.lookup-result strong {
  color: var(--gold);
}

.pair-code-box {
  margin: 12px 0;
  padding: 14px 12px;
  border-radius: 12px;
  border: 1px solid rgba(232, 200, 122, 0.45);
  background: linear-gradient(160deg, rgba(232, 200, 122, 0.12), rgba(122, 162, 255, 0.06));
  text-align: center;
}

.pair-code-label {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 6px;
}

.pair-code-value {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.pair-code-hint {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 6px;
}

.pair-input {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

/* Couple compare */
.compare-result {
  margin-top: 14px;
  text-align: left;
}

.cmp-fit {
  text-align: center;
  padding: 14px 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(196, 92, 106, 0.35);
  background: linear-gradient(160deg, rgba(196, 92, 106, 0.12), rgba(122, 162, 255, 0.06));
  margin-bottom: 14px;
}

.cmp-fit-score {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.cmp-fit-unit {
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.65;
  margin-left: 2px;
}

.cmp-fit-label {
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 6px;
  color: #ffd7de;
}

.cmp-role {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 10px auto 6px;
  max-width: 36em;
}

.cmp-fit-meta {
  font-size: 0.78rem;
  color: var(--muted);
  opacity: 0.9;
}

.cmp-pair-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
  align-items: stretch;
  margin-bottom: 12px;
}

.cmp-person {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 10px;
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
}

.cmp-nick {
  font-weight: 800;
  color: var(--gold);
  font-size: 1rem;
}

.cmp-src {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 1px 6px;
  vertical-align: middle;
}

.cmp-arch {
  margin-top: 4px;
  font-size: 0.92rem;
  color: #e8eef7;
}

.cmp-scores {
  margin-top: 6px;
  font-size: 0.8rem;
  color: var(--muted);
}

.cmp-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
  margin-top: 8px;
}

.cmp-badges .badge {
  font-size: 0.72rem;
  padding: 4px 8px;
}

.cmp-vs {
  align-self: center;
  font-weight: 800;
  color: var(--rose);
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.cmp-block {
  margin: 14px 0 8px;
}

.cmp-block h3 {
  font-size: 0.98rem;
  margin: 0 0 8px;
  color: var(--gold);
}

.cmp-count {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}

.cmp-empty {
  font-size: 0.84rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.cmp-items {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cmp-items .check-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 6px 10px;
  align-items: baseline;
}

.cmp-items .check-item.hard {
  border-left-color: var(--danger);
  background: rgba(220, 80, 90, 0.08);
}

.cmp-who {
  font-size: 0.75rem;
  color: var(--muted);
  white-space: nowrap;
}

.cmp-dual,
.cmp-heat-row {
  margin-bottom: 10px;
}

.cmp-dual-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 4px;
}

.cmp-dual-bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cmp-dual-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.cmp-dual-bar > i {
  display: block;
  height: 100%;
  border-radius: 999px;
}

.cmp-dual-bar.a > i {
  background: linear-gradient(90deg, #7aa2ff, #a8c0ff);
}

.cmp-dual-bar.b > i {
  background: linear-gradient(90deg, var(--rose), #f0a0aa);
}

.cmp-legend {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 6px;
}

.cmp-legend .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 3px;
}

.cmp-legend .dot.a {
  background: #7aa2ff;
}

.cmp-legend .dot.b {
  background: var(--rose);
}

@media (max-width: 480px) {
  .cmp-pair-row {
    grid-template-columns: 1fr;
  }
  .cmp-vs {
    text-align: center;
    padding: 2px 0;
  }
  .cmp-fit-score {
    font-size: 2rem;
  }
}

.status-msg {
  min-height: 1.2em;
  font-size: 0.82rem;
  margin-top: 8px;
  text-align: center;
}

.status-msg.error {
  color: var(--danger);
}

.status-msg.ok {
  color: var(--ok);
}

.share-box {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.55;
  white-space: pre-wrap;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
}

.share-canvas {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.share-image-preview {
  margin-top: 14px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.22);
  text-align: center;
}

.share-image-preview img {
  display: block;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0b1016;
}

.share-image-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
}

.share-image-actions .btn {
  text-decoration: none;
}

.footer-safe {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 12px;
  text-align: center;
}

@media (max-width: 480px) {
  .mk-card {
    padding: 18px 14px 16px;
  }
  .mk-card h1 {
    font-size: 1.32rem;
  }
  .q-text {
    font-size: 1.18rem;
  }
  .score-cell .v {
    font-size: 1.35rem;
  }
}
