:root {
  --paper: #f7f2e8;
  --paper-deep: #efe4d2;
  --paper-soft: #fbf8f0;
  --vellum: #f2e6cf;
  --ink: #221d18;
  --ink-soft: #463c33;
  --coffee: #8a6b52;
  --coffee-light: #c9b79e;
  --gold: #b7985a;
  --gold-soft: rgba(183, 152, 90, 0.22);
  --gold-line: rgba(183, 152, 90, 0.42);
  --green: #526356;
  --line: rgba(79, 62, 45, 0.24);
  --shadow: 0 18px 45px rgba(54, 39, 24, 0.11);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  font-family:
    "Noto Serif SC", "Source Han Serif SC", "Songti SC", "SimSun",
    Georgia, serif;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 252, 241, 0.72), transparent 42%),
    repeating-linear-gradient(
      0deg,
      rgba(78, 58, 34, 0.028) 0,
      rgba(78, 58, 34, 0.028) 1px,
      transparent 1px,
      transparent 12px
    ),
    linear-gradient(180deg, #faf5ea 0%, #f2e7d6 54%, #ead9bd 100%);
}

button {
  font: inherit;
}

.app-shell {
  width: 100%;
  min-height: 100vh;
  padding: 18px 14px 30px;
}

.app {
  width: min(100%, 430px);
  margin: 0 auto;
}

.loading-view,
.screen {
  animation: fade-in 260ms ease both;
}

.screen {
  min-height: calc(100vh - 48px);
}

.home {
  width: min(100%, 430px);
  margin: 0 auto;
  display: grid;
  align-content: start;
  gap: 18px;
  padding-top: 10px;
}

.home-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(138, 105, 62, 0.34);
  border-radius: var(--radius);
  background: var(--vellum);
  box-shadow:
    0 18px 42px rgba(71, 48, 23, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.home-visual img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: saturate(0.85) contrast(0.96);
}

.home-visual::after {
  display: none;
}

.hero-copy {
  padding: 2px 2px 0;
}

.brand-mark,
.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  margin-top: 9px;
  font-size: 2rem;
  line-height: 1.22;
  font-weight: 800;
}

h2 {
  font-size: 1.42rem;
  line-height: 1.34;
  font-weight: 800;
}

h3 {
  font-size: 1.06rem;
  line-height: 1.45;
  font-weight: 800;
}

.lead {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.8;
}

.intro-list {
  display: grid;
  gap: 10px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.intro-list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.75;
}

.intro-list li::before {
  content: "";
  position: absolute;
  top: 0.82em;
  left: 2px;
  width: 7px;
  height: 1px;
  background: var(--gold);
}

.panel,
.result-card,
.question-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.38)),
    var(--paper-soft);
  box-shadow: var(--shadow);
}

.panel {
  padding: 18px;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag,
.keyword,
.score-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid rgba(183, 152, 90, 0.35);
  border-radius: 999px;
  color: #594734;
  background: rgba(183, 152, 90, 0.1);
  font-size: 0.84rem;
  line-height: 1.25;
  padding: 5px 10px;
}

.button-row {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.button {
  min-height: 48px;
  border: 1px solid #7c613f;
  border-radius: var(--radius);
  color: #fffaf0;
  background: linear-gradient(180deg, #9c7b4a, #76583a);
  box-shadow: 0 12px 22px rgba(72, 49, 25, 0.18);
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  padding: 12px 16px;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(72, 49, 25, 0.2);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.44;
  transform: none;
  box-shadow: none;
}

.button--wide {
  width: 100%;
}

.button--ghost {
  color: var(--coffee);
  background: rgba(255, 255, 255, 0.26);
  border-color: var(--line);
  box-shadow: none;
}

.quiz {
  width: min(100%, 430px);
  margin: 0 auto;
  display: grid;
  gap: 14px;
  padding-top: 8px;
}

.quiz-top {
  display: grid;
  gap: 10px;
}

.progress-line {
  position: relative;
  overflow: hidden;
  height: 7px;
  border-radius: 999px;
  background: rgba(102, 78, 55, 0.16);
}

.progress-line span {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--progress);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--gold));
}

.question-card {
  padding: 20px 16px;
  border-color: var(--gold-line);
  background:
    linear-gradient(180deg, rgba(255, 252, 245, 0.84), rgba(244, 235, 218, 0.7)),
    repeating-linear-gradient(
      0deg,
      rgba(87, 65, 41, 0.024) 0,
      rgba(87, 65, 41, 0.024) 1px,
      transparent 1px,
      transparent 10px
    ),
    var(--paper-soft);
}

.question-title {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.5;
}

.question-text {
  margin-top: 10px;
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1.55;
}

.options {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.option-button {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  width: 100%;
  min-height: 64px;
  border: 1px solid rgba(183, 152, 90, 0.24);
  border-radius: var(--radius);
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(246, 238, 222, 0.5));
  text-align: left;
  cursor: pointer;
  padding: 13px 12px;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.option-button:hover,
.option-button:focus-visible {
  border-color: rgba(183, 152, 90, 0.7);
  background: rgba(255, 252, 244, 0.78);
}

.option-button.is-selected {
  border-color: rgba(183, 152, 90, 0.86);
  background:
    linear-gradient(180deg, rgba(255, 248, 230, 0.9), rgba(238, 222, 190, 0.48));
  box-shadow: inset 0 0 0 1px rgba(183, 152, 90, 0.3);
}

.option-key {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(142, 103, 49, 0.46);
  color: #73532c;
  background:
    radial-gradient(circle, rgba(255, 252, 241, 0.9) 0 45%, rgba(183, 152, 90, 0.18) 46% 100%);
  font-weight: 800;
}

.option-text {
  align-self: center;
  font-size: 0.98rem;
  line-height: 1.6;
}

.quiz-actions {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 10px;
}

.result-page {
  width: min(100%, 430px);
  margin: 0 auto;
  display: grid;
  gap: 16px;
  padding-bottom: 32px;
}

.free-image-page {
  width: min(100%, 480px);
  min-height: 0;
  margin: 0 auto;
  display: grid;
  align-content: start;
  gap: 14px;
  padding-bottom: 32px;
}

.free-result-figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(148, 108, 58, 0.24);
  border-radius: var(--radius);
  background: var(--vellum);
  box-shadow:
    0 18px 42px rgba(71, 48, 23, 0.13),
    inset 0 0 0 1px rgba(255, 255, 255, 0.38);
}

.free-result-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.result-image-unlock {
  position: absolute;
  left: 17%;
  bottom: 3.4%;
  width: 66%;
  height: 5.4%;
  border: 0;
  border-radius: 7px;
  background: transparent;
  cursor: pointer;
}

.result-image-unlock:focus-visible {
  outline: 2px solid rgba(111, 76, 35, 0.9);
  outline-offset: 3px;
}

.report-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 128px;
  align-items: center;
  gap: 12px;
  min-height: 430px;
  border: 1px solid rgba(148, 108, 58, 0.36);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 82% 10%, rgba(183, 152, 90, 0.18), transparent 29%),
    radial-gradient(circle at 15% 88%, rgba(255, 255, 255, 0.44), transparent 36%),
    linear-gradient(135deg, rgba(255, 249, 235, 0.92), rgba(226, 205, 166, 0.66)),
    repeating-linear-gradient(
      0deg,
      rgba(87, 65, 41, 0.026) 0,
      rgba(87, 65, 41, 0.026) 1px,
      transparent 1px,
      transparent 11px
    ),
    var(--paper-soft);
  box-shadow:
    0 22px 48px rgba(54, 39, 24, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.45);
  padding: 22px 18px 18px;
}

.report-hero::before,
.report-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.report-hero::before {
  inset: 9px;
  border: 1px solid rgba(148, 108, 58, 0.28);
  border-radius: 6px;
}

.report-hero::after {
  right: -54px;
  top: -62px;
  width: 168px;
  height: 168px;
  border: 1px solid rgba(183, 152, 90, 0.22);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(183, 152, 90, 0.12), rgba(183, 152, 90, 0) 68%);
}

.report-hero__copy,
.philosopher-portrait {
  position: relative;
  z-index: 1;
}

.report-hero__copy {
  align-self: center;
}

.report-title {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  font-size: 1.2rem;
  line-height: 1.35;
}

.report-title span {
  color: var(--coffee);
  font-size: 1rem;
  font-weight: 700;
}

.report-title strong {
  display: block;
  color: var(--ink);
  font-size: clamp(2.72rem, 15.6vw, 4.1rem);
  font-weight: 900;
  line-height: 0.96;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
}

.report-title.is-long strong {
  font-size: clamp(2.08rem, 10.9vw, 3.4rem);
  line-height: 1;
}

.report-hero--paid .report-title strong {
  font-size: clamp(1.88rem, 11vw, 2.75rem);
  line-height: 1.08;
}

.subtitle {
  margin-top: 10px;
  color: var(--coffee);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.55;
}

.keyword-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.philosopher-portrait {
  justify-self: end;
  align-self: center;
  width: 128px;
  height: 184px;
  overflow: hidden;
  border: 1px solid rgba(148, 108, 58, 0.34);
  border-radius: 68px 68px 8px 8px;
  background:
    linear-gradient(180deg, rgba(255, 251, 238, 0.8), rgba(221, 202, 164, 0.48));
  box-shadow:
    0 16px 30px rgba(62, 43, 22, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.48),
    inset 0 0 0 7px rgba(255, 250, 238, 0.22);
}

.philosopher-portrait img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 72% 18%;
  filter: sepia(0.16) saturate(0.82) contrast(0.96);
}

.philosopher-portrait--image {
  background-image:
    linear-gradient(180deg, rgba(255, 248, 231, 0.06), rgba(240, 221, 184, 0.18)),
    var(--portrait-image);
  background-repeat: no-repeat;
  background-size: var(--portrait-size);
  background-position: var(--portrait-position);
}

.philosopher-portrait--image img {
  opacity: 0;
}

.philosopher-portrait figcaption {
  position: absolute;
  right: 5px;
  bottom: 18px;
  color: rgba(72, 52, 29, 0.64);
  font-size: 0.78rem;
  font-weight: 900;
  writing-mode: vertical-rl;
}

.philosopher-portrait--placeholder {
  display: grid;
  place-items: center;
  width: 128px;
  height: 184px;
  border-radius: 68px 68px 8px 8px;
}

.philosopher-portrait--placeholder::before,
.philosopher-portrait--placeholder::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(142, 103, 49, 0.24);
  border-radius: 50%;
}

.philosopher-portrait--placeholder::after {
  inset: 38px;
}

.philosopher-portrait--placeholder span {
  position: relative;
  z-index: 1;
  color: rgba(65, 47, 28, 0.72);
  font-size: 2.2rem;
  font-weight: 900;
}

.report-grid {
  display: grid;
  gap: 13px;
}

.result-card {
  position: relative;
  overflow: hidden;
  padding: 18px 16px 19px;
  border-color: rgba(148, 108, 58, 0.34);
  background:
    radial-gradient(circle at 100% 0%, rgba(183, 152, 90, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 250, 238, 0.92), rgba(238, 222, 191, 0.68)),
    repeating-linear-gradient(
      0deg,
      rgba(87, 65, 41, 0.021) 0,
      rgba(87, 65, 41, 0.021) 1px,
      transparent 1px,
      transparent 10px
    ),
    var(--paper-soft);
  box-shadow:
    0 10px 24px rgba(54, 39, 24, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.result-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(183, 152, 90, 0.18);
  border-radius: 6px;
  pointer-events: none;
}

.result-card p,
.result-card li {
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.78;
}

.result-card__title {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 10px;
  margin-bottom: 11px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(183, 152, 90, 0.22);
}

.section-seal {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(142, 103, 49, 0.42);
  border-radius: 50%;
  color: #75572e;
  background:
    radial-gradient(circle, rgba(255, 252, 241, 0.96) 0 44%, rgba(183, 152, 90, 0.18) 45% 100%);
  font-size: 0.82rem;
  font-weight: 900;
}

.result-card__title h3 {
  color: var(--ink);
  font-size: 1.02rem;
}

.result-card > p,
.result-card > .keyword-row,
.result-card > .book-title,
.result-card > .movie-title,
.result-card > .star-line {
  position: relative;
  z-index: 1;
}

.result-card .keyword-row {
  margin-top: 0;
  margin-bottom: 10px;
}

.quote {
  position: relative;
  padding: 12px 14px 12px 18px;
  border-left: 2px solid rgba(148, 108, 58, 0.42);
  background: rgba(255, 252, 244, 0.46);
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.7;
}

.quote::before {
  content: "“";
  position: absolute;
  left: 5px;
  top: -6px;
  color: rgba(183, 152, 90, 0.35);
  font-size: 2rem;
  line-height: 1;
}

.star-line {
  color: var(--gold);
  font-size: 1.42rem;
  line-height: 1.4;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.75);
}

.book-title,
.movie-title {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.55;
}

.two-line {
  display: grid;
  gap: 8px;
}

.report-meta {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.report-meta p {
  display: grid;
  gap: 4px;
  padding: 10px 11px;
  border: 1px solid rgba(183, 152, 90, 0.24);
  border-radius: 6px;
  color: var(--ink-soft);
  background: rgba(255, 253, 247, 0.52);
  font-size: 0.94rem;
  line-height: 1.55;
}

.report-meta span {
  color: #75572e;
  font-size: 0.78rem;
  font-weight: 900;
}

.home-actions,
.unlock-actions {
  margin-top: 18px;
}

.unlock-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 108, 58, 0.46);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 82% 18%, rgba(183, 152, 90, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(255, 252, 244, 0.96), rgba(232, 213, 179, 0.76)),
    repeating-linear-gradient(
      0deg,
      rgba(87, 65, 41, 0.024) 0,
      rgba(87, 65, 41, 0.024) 1px,
      transparent 1px,
      transparent 9px
    );
  box-shadow:
    0 22px 50px rgba(62, 43, 22, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.unlock-card::before,
.unlock-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.unlock-card::before {
  inset: 10px;
  border: 1px solid rgba(183, 152, 90, 0.36);
  border-radius: 6px;
}

.unlock-card::after {
  right: -34px;
  top: -42px;
  width: 156px;
  height: 156px;
  border: 1px solid rgba(183, 152, 90, 0.24);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183, 152, 90, 0.12), rgba(183, 152, 90, 0));
}

.unlock-card__inner {
  position: relative;
  z-index: 1;
  padding: 24px 18px 22px;
}

.unlock-card__top {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 12px;
}

.lock-seal {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(148, 113, 57, 0.42);
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(255, 247, 226, 0.92), rgba(196, 163, 95, 0.22));
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.35);
}

.lock-seal svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: #7c5a2e;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.unlock-card h3 {
  margin-top: 4px;
  font-size: 1.22rem;
  line-height: 1.38;
}

.unlock-lead {
  display: grid;
  gap: 5px;
  margin-top: 18px;
}

.unlock-lead p {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.68;
}

.unlock-questions {
  display: grid;
  gap: 7px;
  margin-top: 14px;
  padding: 13px 14px;
  border-left: 2px solid rgba(183, 152, 90, 0.62);
  background: rgba(255, 255, 255, 0.34);
}

.unlock-questions p {
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.62;
}

.unlock-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: #8c6b35;
  font-size: 0.78rem;
  font-weight: 800;
}

.unlock-divider::before,
.unlock-divider::after {
  content: "";
  height: 1px;
  background: rgba(183, 152, 90, 0.4);
}

.unlock-points {
  display: grid;
  gap: 9px;
  margin-top: 14px;
}

.unlock-points p {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 10px;
  margin: 0;
  padding: 9px 10px;
  border: 1px solid rgba(183, 152, 90, 0.23);
  border-radius: 6px;
  background: rgba(255, 253, 247, 0.58);
}

.unlock-points strong {
  color: #6f522d;
  font-size: 0.9rem;
  line-height: 1.45;
}

.unlock-points span {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.45;
}

.unlock-button {
  position: relative;
  display: block;
  width: 100%;
  min-height: 56px;
  margin-top: 20px;
  border: 1px solid #8a652d;
  border-radius: 6px;
  color: #fff8e8;
  background:
    linear-gradient(180deg, rgba(255, 241, 193, 0.22), rgba(255, 241, 193, 0) 42%),
    linear-gradient(180deg, #b08a48 0%, #8a642f 54%, #6e4b24 100%);
  box-shadow:
    0 14px 28px rgba(97, 62, 24, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.2;
  padding: 14px 16px;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.unlock-button::before,
.unlock-button::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 26px;
  height: 1px;
  background: rgba(255, 242, 199, 0.5);
}

.unlock-button::before {
  left: 12px;
}

.unlock-button::after {
  right: 12px;
}

.unlock-button:hover,
.unlock-button:focus-visible {
  filter: saturate(1.04);
  transform: translateY(-1px);
  box-shadow:
    0 18px 34px rgba(97, 62, 24, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.unlock-note {
  margin-top: 10px;
  color: #7c6a56;
  font-size: 0.82rem;
  line-height: 1.55;
  text-align: center;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.modal.is-open {
  display: flex;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 22, 16, 0.42);
}

.modal__panel {
  position: relative;
  width: min(100%, 420px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-soft);
  box-shadow: 0 28px 70px rgba(28, 22, 16, 0.24);
  padding: 20px;
}

.modal__panel p {
  margin-top: 12px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.modal__actions {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.loading-view {
  display: grid;
  place-items: center;
  min-height: 70vh;
  gap: 10px;
  color: var(--ink-soft);
}

.error-view {
  display: grid;
  gap: 12px;
  padding: 24px 16px;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 680px) {
  .app-shell {
    padding: 28px 20px 44px;
  }

  .home {
    max-width: 430px;
    margin: 0 auto;
    min-height: auto;
  }

  .home-visual {
    min-height: 0;
  }

  .home-visual img {
    min-height: 0;
  }

  h1 {
    font-size: 2rem;
  }

  .question-card,
  .result-card {
    padding: 20px 16px;
  }

  .home-actions,
  .unlock-actions {
    position: static;
    margin: 0;
    padding: 0;
    background: transparent;
  }

  .quiz {
    padding-top: 20px;
  }
}
