:root {
  --bg: #f7f8f4;
  --surface: #ffffff;
  --surface-strong: #fff8e8;
  --cream: #fffdf5;
  --ink: #19211f;
  --ink-soft: #2d3a36;
  --muted: #65716c;
  --green: #12614e;
  --green-dark: #0b3e33;
  --felt: #17705a;
  --felt-dark: #08362d;
  --gold: #dba53b;
  --gold-light: #ffe29a;
  --gold-dark: #8a6314;
  --red: #cf4146;
  --blue: #2770b8;
  --line: #dfe5dd;
  --shadow: 0 18px 40px rgba(11, 62, 51, 0.12);
  --shadow-soft: 0 12px 26px rgba(25, 33, 31, 0.07);
  --shadow-lift: 0 18px 34px rgba(11, 62, 51, 0.16);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(18, 97, 78, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 97, 78, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, rgba(219, 165, 59, 0.12) 0 1px, transparent 1px 20px),
    linear-gradient(180deg, #fbfcf7 0%, var(--bg) 42%, #eef4ef 100%);
  background-size: 26px 26px, 26px 26px, 20px 20px, auto;
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-feature-settings: "palt";
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 64px;
  padding: 12px 18px;
  background: rgba(247, 248, 244, 0.92);
  border-bottom: 1px solid rgba(223, 229, 221, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 22px rgba(25, 33, 31, 0.05);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border: 2px solid var(--green-dark);
  border-radius: 8px;
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.12);
  font-size: 0.82rem;
  letter-spacing: 0;
}

.brand-mark::before {
  position: absolute;
  inset: 5px;
  content: "";
  border: 2px dashed rgba(255, 255, 255, 0.42);
  border-radius: 6px;
  pointer-events: none;
}

.brand-mark {
  isolation: isolate;
}

.brand-name {
  font-size: 0.95rem;
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 0 rgba(11, 62, 51, 0.12);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.menu-toggle:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 rgba(11, 62, 51, 0.12);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 999px;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle span + span {
  margin-top: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.header-nav {
  position: absolute;
  top: calc(100% + 8px);
  right: 18px;
  left: 18px;
  display: none;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 14px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.98);
  border: 2px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  font-size: 0.82rem;
  font-weight: 700;
}

.header-nav.is-open {
  display: grid;
}

.nav-intro {
  display: grid;
  gap: 3px;
  padding: 4px 4px 2px;
}

.nav-intro span,
.nav-link span {
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-intro strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.35;
}

.nav-link {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px 12px;
  min-height: 62px;
  align-items: center;
  padding: 12px 42px 12px 14px;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 4px 0 rgba(16, 75, 60, 0.08);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 9px;
  height: 9px;
  border-top: 3px solid var(--green);
  border-right: 3px solid var(--green);
  transform: translateY(-50%) rotate(45deg);
}

.nav-link span {
  grid-column: 1;
}

.nav-link strong {
  grid-column: 1;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.35;
}

.nav-link em {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.5;
}

.header-nav a[aria-current="page"] {
  color: var(--green-dark);
  background: #e8f3ed;
  border-color: #bedfcf;
  font-weight: 900;
}

.hero,
.section,
.page-hero {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 38px 18px;
}

.hero {
  position: relative;
  display: grid;
  gap: 28px;
  padding-top: 34px;
}

.hero::before {
  position: absolute;
  top: 18px;
  right: 18px;
  left: 18px;
  height: 5px;
  content: "";
  background: repeating-linear-gradient(90deg, var(--green-dark) 0 30px, var(--gold) 30px 42px, transparent 42px 54px);
  border-radius: 999px;
  opacity: 0.16;
  pointer-events: none;
}

.page-hero {
  padding-top: 42px;
  padding-bottom: 24px;
}

.page-hero h1 {
  max-width: 8em;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.basics-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.basics-subnav a {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  padding: 7px 10px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.basics-subnav a[aria-current="page"] {
  color: #fff;
  background: var(--green);
  border-color: var(--green-dark);
  box-shadow: 0 4px 0 var(--green-dark);
}

.breadcrumb {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 14px 18px 0;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 6px;
}

.breadcrumb li + li::before {
  color: #9ba8a0;
  content: "/";
}

.breadcrumb a {
  color: var(--green-dark);
  font-weight: 900;
}

.breadcrumb span {
  overflow-wrap: anywhere;
}

.breadcrumb [aria-current="page"] span {
  color: var(--muted);
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  margin: 0 0 10px;
  padding: 4px 9px;
  color: var(--green);
  background: rgba(232, 243, 237, 0.88);
  border: 1px solid rgba(18, 97, 78, 0.12);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 10em;
  font-size: clamp(2rem, 10vw, 3.8rem);
  line-height: 1.12;
  letter-spacing: 0;
  color: var(--ink-soft);
}

.hero h1 {
  max-width: 11em;
  font-size: clamp(2.05rem, 9.5vw, 4.1rem);
}

h2 {
  margin: 0;
  font-size: clamp(1.6rem, 7.2vw, 2.8rem);
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  line-height: 1.35;
  letter-spacing: 0;
}

.lead {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.85;
}

.player-status {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-top: 18px;
  padding: 12px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 226, 154, 0.42), transparent 30%),
    linear-gradient(135deg, #0b3e33 0%, #12614e 58%, #193f38 100%);
  border: 2px solid rgba(255, 226, 154, 0.58);
  border-radius: 12px;
  box-shadow: 0 18px 34px rgba(11, 62, 51, 0.22);
}

.player-status::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent 24%, rgba(255, 255, 255, 0.08) 48%, transparent 72%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 10px);
  opacity: 0.45;
  pointer-events: none;
}

.player-status::after {
  position: absolute;
  right: -28px;
  bottom: -42px;
  width: 112px;
  height: 112px;
  content: "";
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.status-avatar,
.player-emblem {
  display: grid;
  place-items: center;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 226, 154, 0.26), transparent),
    var(--green-dark);
  border: 2px solid rgba(255, 226, 154, 0.72);
  box-shadow:
    inset 0 -5px 0 rgba(0, 0, 0, 0.18),
    0 10px 18px rgba(0, 0, 0, 0.18);
  font-weight: 900;
}

.status-avatar {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  font-size: 0.86rem;
}

.status-body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  min-width: 0;
}

.status-main,
.status-sub {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.level-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  min-height: 34px;
  padding: 6px 10px;
  color: var(--green-dark);
  background: var(--gold-light);
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 900;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.16);
}

.rank-title {
  min-width: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.86rem;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.xp-track {
  height: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(11, 62, 51, 0.08);
}

.xp-track span {
  display: block;
  width: var(--xp, 0%);
  height: 100%;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), #6ed0a1);
  border-radius: inherit;
  box-shadow: 0 0 18px rgba(255, 226, 154, 0.5);
  transition: width 220ms ease;
}

.status-sub {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 900;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.hero-stats span {
  display: grid;
  min-width: 0;
  min-height: 54px;
  align-content: center;
  padding: 8px 10px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.84);
  border: 2px solid var(--line);
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 5px 0 rgba(16, 75, 60, 0.08), 0 8px 18px rgba(25, 33, 31, 0.06);
}

.hero-stats strong {
  display: block;
  color: var(--green-dark);
  font-size: 1.25rem;
  line-height: 1.1;
}

.hero-actions,
.quiz-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.card-actions {
  margin-top: 4px;
}

.quiz-card > .quiz-actions .button {
  width: 100%;
  justify-content: center;
}

.hero-quiz-section {
  margin-top: 24px;
}

.hero-quiz-section .section-heading {
  margin-bottom: 14px;
}

.hero-quiz-section h2 {
  max-width: 12em;
  font-size: clamp(1.45rem, 6.4vw, 2.15rem);
}

.hero-quiz-section .quiz-card {
  padding: 16px;
}

.challenge-card-section {
  padding-top: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 16px;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:focus-visible,
.choice-button:focus-visible,
.menu-toggle:focus-visible,
.nav-link:focus-visible,
.text-link:focus-visible {
  outline: 3px solid rgba(219, 165, 59, 0.42);
  outline-offset: 3px;
}

.button:active {
  transform: translateY(1px);
}

.button.primary {
  color: #fff;
  background:
    linear-gradient(180deg, #16725c, var(--green));
  border-color: var(--green-dark);
  box-shadow: 0 3px 0 rgba(11, 62, 51, 0.85);
}

.button.secondary {
  color: var(--green-dark);
  background: var(--surface);
  border-color: var(--line);
}

.button.ghost {
  color: var(--muted);
  background: transparent;
  border-color: var(--line);
}

.icon-button {
  gap: 8px;
}

.button-icon {
  display: inline-grid;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--green-dark);
  background: #ffe9a8;
  border-radius: 50%;
  font-size: 0.78rem;
  line-height: 1;
}

.button.primary .button-icon {
  color: var(--green-dark);
  background: #fff4bf;
}

.mission-panel {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(255, 226, 154, 0.65), rgba(255, 255, 255, 0.9));
  border: 2px solid #e8c465;
  border-radius: 12px;
  box-shadow: 0 8px 0 rgba(219, 165, 59, 0.35);
}

.mission-label {
  display: block;
  color: #6b4b0a;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mission-panel strong {
  display: block;
  color: var(--green-dark);
  font-size: 1rem;
  line-height: 1.35;
}

.mission-reward {
  display: inline-flex;
  width: fit-content;
  min-height: 32px;
  align-items: center;
  padding: 6px 10px;
  color: #fff;
  background: var(--red);
  border: 2px solid #8f2429;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.16);
}

.home-route-panel {
  position: relative;
  display: grid;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 2px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.home-route-panel::before {
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 26px;
  width: 4px;
  content: "";
  background: linear-gradient(180deg, var(--green), var(--gold), var(--blue));
  border-radius: 999px;
  opacity: 0.28;
}

.home-route-item {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 16px 16px 16px 48px;
}

.home-route-item::before {
  position: absolute;
  top: 22px;
  left: 17px;
  width: 20px;
  height: 20px;
  content: "";
  background: var(--surface);
  border: 4px solid var(--green);
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.86);
}

.home-route-item + .home-route-item {
  border-top: 2px solid var(--line);
}

.home-route-item p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.home-route-item h3 {
  margin: 0 0 6px;
  color: var(--green-dark);
  font-size: 1.15rem;
}

.home-topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.home-topic-list span {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 5px 9px;
  color: var(--green-dark);
  background: #fff8e8;
  border: 1px solid rgba(219, 165, 59, 0.26);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
}

.route-summary-action {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.sitemap-grid,
.legal-stack {
  display: grid;
  gap: 12px;
}

.sitemap-card,
.legal-card,
.contact-form {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 2px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 26px rgba(25, 33, 31, 0.07);
}

.sitemap-card h3,
.legal-card h3 {
  color: var(--green-dark);
}

.sitemap-card a {
  display: inline-flex;
  width: fit-content;
  min-height: 32px;
  align-items: center;
  color: var(--green-dark);
  font-weight: 900;
}

.legal-card p,
.form-note p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.legal-date {
  color: var(--green-dark) !important;
  font-size: 0.86rem;
}

.contact-form {
  gap: 14px;
}

.form-grid {
  display: grid;
  gap: 12px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--green-dark);
  font-weight: 900;
}

.contact-form em {
  color: var(--gold-dark);
  font-style: normal;
  font-size: 0.76rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-size: 1rem;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgba(18, 97, 78, 0.14);
}

.form-note,
.form-result {
  display: grid;
  gap: 4px;
  padding: 12px;
  background: #fff8e8;
  border: 2px solid #e8c465;
  border-radius: 10px;
}

.form-note strong,
.form-result {
  color: var(--green-dark);
  font-weight: 900;
}

.form-result p,
.form-result ul {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.form-result ul {
  padding-left: 18px;
}

.form-result.is-success {
  background: #eaf7ef;
  border-color: rgba(18, 97, 78, 0.28);
}

.form-result.is-error {
  background: #fff1ec;
  border-color: #d78773;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.hero-visual {
  min-height: 282px;
}

.table-felt {
  position: relative;
  min-height: 282px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 24%, rgba(255, 226, 154, 0.28), transparent 18%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(160deg, var(--felt), var(--felt-dark));
  border: 2px solid #092c24;
  border-radius: 18px;
  box-shadow:
    inset 0 0 0 8px rgba(255, 255, 255, 0.05),
    inset 0 -18px 32px rgba(0, 0, 0, 0.16),
    var(--shadow);
}

.table-felt::before {
  position: absolute;
  inset: 28px;
  content: "";
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.table-felt::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 96px;
  height: 96px;
  content: "";
  background:
    linear-gradient(135deg, rgba(255, 226, 154, 0.28), rgba(255, 255, 255, 0.04));
  border: 2px solid rgba(255, 226, 154, 0.24);
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.playing-card {
  position: absolute;
  z-index: 1;
  display: grid;
  width: 96px;
  height: 138px;
  padding: 12px;
  color: #151918;
  background: #fff;
  border: 2px solid #d8ded8;
  border-radius: 12px;
  box-shadow: 0 18px 22px rgba(0, 0, 0, 0.2), inset 0 0 0 4px #f9faf7;
}

.playing-card span {
  font-size: 1.15rem;
  font-weight: 900;
}

.playing-card strong {
  place-self: center;
  font-size: 3.2rem;
  line-height: 1;
}

.card-a {
  top: 56px;
  left: 46px;
  transform: rotate(-10deg);
}

.card-k {
  top: 38px;
  left: 126px;
  color: var(--red);
  transform: rotate(8deg);
}

.chip {
  position: absolute;
  z-index: 1;
  width: 58px;
  height: 58px;
  border: 8px dashed rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 12px 18px rgba(0, 0, 0, 0.2);
}

.chip::after {
  position: absolute;
  inset: 12px;
  content: "";
  background: rgba(255, 255, 255, 0.86);
  border-radius: 50%;
}

.chip-red {
  right: 44px;
  bottom: 72px;
  background: var(--red);
}

.chip-gold {
  right: 88px;
  bottom: 34px;
  background: var(--gold);
}

.chip-blue {
  right: 24px;
  bottom: 24px;
  background: var(--blue);
}

.quest-token {
  position: absolute;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  height: 36px;
  padding: 0 12px;
  color: var(--green-dark);
  background: var(--gold-light);
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
  font-size: 0.78rem;
  font-weight: 900;
}

.token-one {
  top: 22px;
  right: 22px;
}

.token-two {
  left: 22px;
  bottom: 22px;
}

.visual-caption {
  position: absolute;
  z-index: 2;
  right: 20px;
  left: 20px;
  bottom: 16px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.86rem;
  font-weight: 900;
  text-align: center;
}

.section-heading {
  margin-bottom: 18px;
}

.section-heading p:not(.eyebrow) {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.quiz-card,
.quest-card,
.guide-list article,
.quest-detail-card,
.my-quest-group,
.route-list article,
.guide-chapters article,
.term-card,
.status-card,
.question-preview-card,
.level-row,
.study-term-card,
.column-card,
.column-callout,
.column-quiz,
.column-share-note,
.column-cta {
  background: rgba(255, 255, 255, 0.94);
  border: 2px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.quiz-card {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border-color: #c9d8ce;
  box-shadow: 0 10px 0 rgba(11, 62, 51, 0.1), 0 22px 34px rgba(25, 33, 31, 0.08);
}

.quiz-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  content: "";
  background: linear-gradient(90deg, var(--gold), var(--green), var(--blue));
}

.quiz-card.is-cleared {
  animation: clearedPulse 520ms ease;
}

.quest-stage {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
  padding: 10px 12px;
  color: var(--green-dark);
  background: #edf7f1;
  border: 2px solid #cfe5d6;
  border-radius: 10px;
}

.quest-stage span {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quest-stage strong {
  font-size: 0.86rem;
  text-align: right;
}

.stage-track {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 4px;
  width: 100%;
  margin: 0 0 16px;
}

.stage-node {
  display: inline-grid;
  min-width: 0;
  height: 24px;
  place-items: center;
  color: var(--muted);
  background: #edf1ec;
  border: 2px solid var(--line);
  border-radius: 7px;
  font-size: 0.72rem;
  font-weight: 900;
}

.stage-node.is-active {
  color: #fff;
  background: var(--green);
  border-color: var(--green-dark);
  box-shadow: none;
}

.stage-node.is-cleared {
  color: var(--green-dark);
  background: var(--gold-light);
  border-color: var(--gold);
}

.stage-line {
  display: none;
}

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

.quiz-card h3 {
  font-size: 1.32rem;
}

.quiz-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 700;
}

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

.choice-button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 54px;
  padding: 14px;
  color: var(--ink);
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-align: left;
  box-shadow: 0 4px 0 #d8ded8;
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}

.choice-button:hover:not(:disabled) {
  border-color: #b9cec2;
  box-shadow: 0 5px 0 #cbd8cf, 0 10px 18px rgba(25, 33, 31, 0.07);
}

.choice-key {
  display: inline-grid;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
}

.choice-button:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #d8ded8;
}

.choice-button.is-correct {
  color: var(--green-dark);
  background: #e9f7ee;
  border-color: #8ec8a3;
  box-shadow: 0 4px 0 #76b990;
}

.choice-button.is-wrong {
  color: #721b22;
  background: #fff0f0;
  border-color: #e4a0a5;
  box-shadow: 0 4px 0 #d98a90;
}

.choice-button:disabled {
  cursor: default;
}

.feedback {
  margin-top: 16px;
  padding: 14px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 226, 154, 0.72), rgba(255, 248, 232, 0.96));
  border: 2px solid #ead4a1;
  border-radius: 8px;
  font-weight: 700;
}

.feedback strong {
  display: block;
  margin-bottom: 4px;
  color: var(--green-dark);
  font-size: 1.08rem;
}

.quest-complete {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding: 18px;
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 226, 154, 0.8), transparent 28%),
    linear-gradient(135deg, #fff8e8, #eef8f0);
  border: 2px solid #e6c15d;
  border-radius: 12px;
  box-shadow: 0 8px 0 rgba(219, 165, 59, 0.22);
}

.complete-badge {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  padding: 6px 12px;
  color: #fff;
  background: var(--red);
  border: 2px solid #8f2429;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quest-complete h3 {
  font-size: 1.45rem;
}

.quest-complete p {
  margin: 0;
}

.complete-rewards {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.complete-rewards span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 6px 10px;
  color: var(--green-dark);
  background: #fff;
  border: 2px solid #e6d59c;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
}

.result-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.result-panel div {
  min-width: 0;
  padding: 12px;
  background: rgba(255, 255, 255, 0.82);
  border: 2px solid #e6d59c;
  border-radius: 8px;
}

.result-panel span {
  display: block;
  margin-bottom: 4px;
  color: #795a16;
  font-size: 0.72rem;
  font-weight: 900;
}

.result-panel strong {
  display: block;
  overflow-wrap: anywhere;
  color: var(--green-dark);
  font-size: 1rem;
}

.reward-pop {
  position: absolute;
  top: 54px;
  right: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 6px 12px;
  color: #fff;
  background: var(--red);
  border: 2px solid #8f2429;
  border-radius: 999px;
  box-shadow: 0 10px 18px rgba(207, 65, 70, 0.24);
  font-size: 0.9rem;
  font-weight: 900;
  animation: rewardPop 720ms ease both;
}

.quest-grid,
.guide-list,
.quest-detail-list,
.my-quest-map,
.my-action-grid,
.route-list,
.guide-chapters,
.term-grid,
.detail-dashboard,
.my-dashboard,
.question-preview-list,
.level-rows,
.study-term-grid,
.column-grid {
  display: grid;
  gap: 12px;
}

.compact-section {
  padding-top: 24px;
}

.quest-card {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 16px 16px 16px 70px;
  overflow: hidden;
}

.quest-detail-card {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 18px 18px 18px 72px;
  overflow: hidden;
}

.my-quest-group {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 18px;
  overflow: hidden;
}

.my-quest-group.is-completed {
  background: linear-gradient(135deg, #fffef8, #eef8f0);
  border-color: #e6c15d;
}

.my-quest-group p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.my-category-list {
  display: grid;
  gap: 8px;
}

.my-topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.my-topic-list span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 6px 10px;
  color: var(--green-dark);
  background: #fff8e8;
  border: 2px solid var(--gold-soft);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.my-category-chip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 28px;
  gap: 8px;
  align-items: center;
  min-height: 42px;
  padding: 9px 10px;
  color: var(--ink);
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 900;
}

.my-category-chip strong {
  overflow-wrap: anywhere;
}

.my-category-chip span {
  color: var(--green-dark);
  font-size: 0.78rem;
}

.my-category-chip .chip-arrow {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-size: 1.2rem;
  line-height: 1;
}

.my-category-chip.is-completed {
  background: #fff8e8;
  border-color: #e6c15d;
}

.basics-card-list article {
  align-content: start;
}

.basics-top-list {
  display: grid;
  gap: 12px;
}

.basics-top-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 16px;
  background: rgba(255, 255, 255, 0.96);
  border: 2px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 6px 0 rgba(16, 91, 70, 0.08);
}

.basics-top-list h3,
.basics-top-list p {
  margin: 0;
}

.basics-top-list p {
  margin-top: 6px;
  color: var(--muted);
  font-weight: 800;
}

.basics-top-list .basics-action-link {
  grid-column: 1 / -1;
}

.basics-action-link {
  grid-template-columns: minmax(0, 1fr) 28px;
  width: 100%;
  max-width: 360px;
  margin-top: 4px;
  box-shadow: 0 4px 0 rgba(16, 75, 60, 0.08);
}

.basics-action-link .chip-arrow {
  justify-self: end;
}

.basics-quest-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.basics-quest-actions .basics-action-link {
  max-width: none;
}

.hand-rank-list {
  display: grid;
  gap: 10px;
}

.hand-rank-list article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px;
  background: rgba(255, 255, 255, 0.96);
  border: 2px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 5px 0 rgba(16, 91, 70, 0.08);
}

.hand-rank-list article span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border: 2px solid var(--green-dark);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 900;
}

.hand-rank-list h3,
.hand-rank-list p {
  margin: 0;
}

.hand-rank-list p {
  margin-top: 6px;
  color: var(--muted);
  font-weight: 800;
}

.hand-rank-table-wrap {
  overflow-x: auto;
  background: rgba(255, 255, 255, 0.96);
  border: 2px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 5px 0 rgba(16, 91, 70, 0.08);
}

.hand-rank-table {
  width: 100%;
  min-width: 0;
  border-collapse: collapse;
  table-layout: fixed;
}

.hand-rank-table th,
.hand-rank-table td {
  padding: 10px 8px;
  border-bottom: 2px solid var(--line);
  text-align: left;
  vertical-align: middle;
  line-height: 1.35;
}

.hand-rank-table th {
  color: var(--green-dark);
  background: #e8f3ed;
  font-size: 0.7rem;
  font-weight: 900;
}

.hand-rank-table td {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
}

.hand-rank-table th:first-child,
.hand-rank-table td:first-child {
  width: 42px;
}

.hand-rank-table th:last-child,
.hand-rank-table td:last-child {
  width: 96px;
}

.hand-rank-table td:first-child {
  color: #fff;
  background: var(--green);
  text-align: center;
}

.hand-rank-table td:last-child {
  color: var(--green-dark);
  font-size: 0.74rem;
  text-align: right;
}

.hand-rank-table tr:last-child td {
  border-bottom: 0;
}

.hand-rank-detail-list {
  display: grid;
  gap: 12px;
}

.hand-rank-detail-list article {
  display: grid;
  gap: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.96);
  border: 2px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 5px 0 rgba(16, 91, 70, 0.08);
}

.hand-rank-detail-list h3,
.hand-rank-detail-list p {
  margin: 0;
}

.hand-rank-detail-list p {
  color: var(--muted);
  font-weight: 800;
}

.my-next-card {
  align-content: start;
  margin-top: 0;
}

.quest-detail-card.is-completed {
  background: linear-gradient(135deg, #fffef8, #eef8f0);
  border-color: #e6c15d;
}

.quest-detail-card .button {
  width: fit-content;
  min-height: 42px;
  padding: 8px 12px;
  font-size: 0.84rem;
}

.detail-dashboard,
.my-dashboard {
  position: relative;
}

.detail-dashboard::after {
  display: block;
  grid-column: 1 / -1;
  height: 10px;
  overflow: hidden;
  content: "";
  background:
    linear-gradient(90deg, var(--gold), var(--green)) 0 0 / var(--value, 0%) 100% no-repeat,
    #edf1ec;
  border-radius: 999px;
}

.status-card {
  position: relative;
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 16px;
  overflow: hidden;
}

.status-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--green), var(--gold));
  opacity: 0.72;
}

.status-card.is-primary {
  background:
    radial-gradient(circle at 90% 12%, rgba(255, 226, 154, 0.44), transparent 28%),
    linear-gradient(135deg, #0b3e33, #12614e 62%, #193f38);
  border-color: rgba(255, 226, 154, 0.64);
  box-shadow: 0 18px 34px rgba(11, 62, 51, 0.22);
}

.player-card {
  position: relative;
  overflow: hidden;
  color: #fff;
}

.player-card::after {
  position: absolute;
  right: -40px;
  bottom: -54px;
  width: 150px;
  height: 150px;
  content: "";
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.player-card::before {
  display: none;
}

.player-card-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.player-emblem {
  width: 58px;
  height: 58px;
  border-radius: 16px;
}

.player-card-head span,
.player-card-head strong,
.player-card-head p {
  display: block;
}

.player-card-head strong {
  margin-top: 2px;
  font-size: 1.9rem;
}

.player-card-meter {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 7px;
}

.player-card-meter small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
  font-weight: 900;
}

.status-card.is-primary span,
.status-card.is-primary strong,
.status-card.is-primary p {
  color: inherit;
}

.status-card.is-primary p {
  color: rgba(255, 255, 255, 0.78);
}

.status-card.is-primary .xp-track {
  background: rgba(255, 255, 255, 0.26);
}

.status-card.is-primary .xp-track span {
  background: linear-gradient(90deg, var(--gold-light), var(--gold), #6ed0a1);
}

.status-card span {
  width: fit-content;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.status-card strong {
  color: var(--green-dark);
  font-size: 1.55rem;
  line-height: 1.1;
}

.status-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.question-preview-card {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.question-preview-card.is-answered {
  border-color: #e6c15d;
  background: #fffdf4;
}

.question-preview-card > span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 900;
}

.question-preview-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.category-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.category-link-row.is-grouped {
  display: grid;
  gap: 12px;
  margin-top: 0;
}

.category-link-group {
  display: grid;
  gap: 12px;
  padding: 16px;
  background: #fffdf7;
  border: 2px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 6px 0 rgba(16, 91, 70, 0.08);
}

.category-link-group h3,
.category-link-group p {
  margin: 0;
}

.category-link-group h3 {
  color: var(--green-dark);
  font-size: 1.15rem;
  line-height: 1.35;
}

.category-link-group p {
  color: var(--muted);
  font-weight: 800;
}

.category-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.category-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 12px;
  color: var(--green-dark);
  background: #edf7f1;
  border: 2px solid #cfe5d6;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 900;
}

.category-link.is-active {
  color: #fff;
  background: var(--green);
  border-color: var(--green-dark);
}

@media (min-width: 760px) {
  .category-link-group {
    grid-template-columns: 108px minmax(0, 1fr);
    align-items: start;
  }
}

.learning-answer-card {
  align-content: start;
}

.answer-toggle {
  display: inline-flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  color: #fff;
  background: var(--green);
  border: 2px solid var(--green-dark);
  border-radius: 8px;
  box-shadow: 0 3px 0 rgba(11, 62, 51, 0.85);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.learn-answer-panel {
  display: grid;
  gap: 12px;
}

.learned-hide-button {
  width: fit-content;
}

.learn-hidden-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  color: var(--muted);
  background: #fffdf7;
  border: 2px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
}

.learn-empty-card {
  margin: 0;
}

.choice-preview {
  display: grid;
  gap: 8px;
}

.choice-preview div {
  padding: 10px 12px;
  color: var(--muted);
  background: #fff8e8;
  border: 2px solid #ead4a1;
  border-radius: 8px;
  font-weight: 800;
}

.choice-preview .is-answer {
  color: var(--green-dark);
  background: #e8f3ed;
  border-color: #8ec8a3;
}

.answer-box {
  display: grid;
  gap: 6px;
  padding: 12px;
  background: #f8fbf7;
  border: 2px solid var(--line);
  border-radius: 8px;
}

.answer-box strong {
  color: var(--green-dark);
}

.answer-box p {
  margin: 0;
}

.quest-complete.is-inline {
  margin-top: 0;
}

.study-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.study-hero-points span,
.mode-badges span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 6px 10px;
  color: var(--green-dark);
  background: #e8f3ed;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
}

.level-row,
.study-term-card {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.level-row.is-coming {
  background: #fbfcf7;
}

.level-name {
  width: fit-content;
  min-height: 34px;
  padding: 6px 12px;
  color: #fff;
  background: var(--green);
  border: 2px solid var(--green-dark);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
}

.level-row p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.study-status-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.quote {
  width: fit-content;
  margin: 0;
  padding: 8px 12px;
  color: var(--green-dark);
  background: var(--gold-light);
  border: 2px solid var(--gold);
  border-radius: 999px;
  font-weight: 900;
}

.directory-kicker {
  width: fit-content;
  margin: 0;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.study-mini-visual {
  display: grid;
  min-height: 118px;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 226, 154, 0.34), transparent 30%),
    linear-gradient(145deg, #17705a, #0b3e33);
  border: 2px solid #092c24;
  border-radius: 12px;
}

.cards-visual,
.board-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cards-visual span,
.board-visual span {
  display: grid;
  width: 42px;
  height: 58px;
  place-items: center;
  color: var(--red);
  background: #fff;
  border: 2px solid #d8ded8;
  border-radius: 8px;
  font-weight: 900;
}

.board-visual span {
  width: 34px;
  height: 48px;
}

.chip-visual span,
.rank-visual span,
.action-visual span,
.table-visual span {
  display: grid;
  min-width: 58px;
  min-height: 58px;
  place-items: center;
  padding: 10px;
  color: #fff;
  background: var(--red);
  border: 6px dashed rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  font-weight: 900;
}

.rank-visual span,
.action-visual span,
.table-visual span {
  min-width: 76px;
  color: var(--green-dark);
  background: var(--gold);
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 12px;
}

.study-term-head {
  display: grid;
  gap: 2px;
}

.study-term-en {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.mode-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.study-term-card p:not(.directory-kicker):not(.study-term-en) {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.study-term-card .note {
  padding: 10px;
  color: #6b4b0a !important;
  background: #fff8e8;
  border: 2px solid #ead4a1;
  border-radius: 8px;
  font-size: 0.88rem;
}

.hide-study-btn {
  width: fit-content;
  min-height: 40px;
  padding: 8px 12px;
  font-size: 0.82rem;
}

.study-cta {
  margin-top: 0;
}

.flow-timeline {
  display: grid;
  gap: 12px;
}

.flow-timeline article {
  position: relative;
  padding: 18px 18px 18px 66px;
  background: rgba(255, 255, 255, 0.94);
  border: 2px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 26px rgba(25, 33, 31, 0.07);
}

.flow-timeline article::before {
  position: absolute;
  top: 54px;
  bottom: -16px;
  left: 34px;
  width: 4px;
  content: "";
  background: linear-gradient(180deg, var(--gold), var(--green));
  border-radius: 999px;
}

.flow-timeline article:last-child::before {
  display: none;
}

.flow-timeline article > span {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border: 2px solid var(--green-dark);
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 900;
}

.flow-timeline p {
  margin: 6px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.flow-action-list {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.flow-action-list li {
  display: grid;
  gap: 2px;
  padding: 10px;
  background: #fff8e8;
  border: 2px solid #ead4a1;
  border-radius: 8px;
}

.flow-action-list strong {
  color: var(--green-dark);
}

.flow-action-list span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.action-guide-grid {
  display: grid;
  gap: 12px;
}

.action-guide-card {
  display: grid;
  gap: 10px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 2px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 26px rgba(25, 33, 31, 0.07);
}

.action-guide-card > span {
  width: fit-content;
  min-height: 30px;
  padding: 6px 10px;
  color: #fff;
  background: var(--green);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
}

.action-guide-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.action-guide-card .note {
  padding: 10px;
  color: #6b4b0a;
  background: #fff8e8;
  border: 2px solid #ead4a1;
  border-radius: 8px;
  font-size: 0.88rem;
}

.use-case {
  display: grid;
  gap: 6px;
  padding: 12px;
  background: #eef8f0;
  border: 2px solid #cfe5d6;
  border-radius: 8px;
}

.use-case strong {
  color: var(--green-dark);
}

.use-case ul {
  display: grid;
  gap: 4px;
  margin: 0;
  padding-left: 1.2em;
  color: var(--muted);
  font-weight: 700;
}

.quest-card.is-active {
  border-color: #8ec8a3;
  box-shadow: 0 10px 0 rgba(18, 97, 78, 0.12), 0 22px 34px rgba(25, 33, 31, 0.08);
}

.quest-card.is-completed {
  background: linear-gradient(135deg, #fffef8, #eef8f0);
}

.quest-card.is-locked {
  color: #65716b;
  background: #f3f5f2;
  border-color: #d8dfd8;
  box-shadow: none;
}

.quest-card.is-locked .map-node {
  color: #6c746f;
  background: #dfe5df;
  border-color: #bfc9c0;
  box-shadow: 0 5px 0 #bfc9c0;
}

.quest-card::after {
  position: absolute;
  top: 16px;
  right: -18px;
  width: 66px;
  height: 66px;
  content: "";
  background: radial-gradient(circle, rgba(219, 165, 59, 0.28) 0 42%, transparent 44%);
  border: 2px solid rgba(219, 165, 59, 0.28);
  border-radius: 50%;
}

.quest-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.map-node {
  position: absolute;
  top: 52px;
  left: 16px;
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border: 2px solid var(--green-dark);
  border-radius: 12px;
  box-shadow: 0 5px 0 var(--green-dark);
  font-size: 0.8rem;
  font-weight: 900;
}

.quest-card.is-completed .map-node,
.quest-card.is-active .map-node {
  background: var(--gold);
  border-color: #9a6a13;
  box-shadow: 0 5px 0 #9a6a13;
}

.quest-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  color: var(--green-dark);
  background: linear-gradient(180deg, #f4fbf6, #e8f3ed);
  border: 1px solid rgba(18, 97, 78, 0.16);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  box-shadow: inset 0 -2px 0 rgba(18, 97, 78, 0.06);
}

.quest-badge.is-progress {
  color: #5d430b;
  background: #fff4d0;
}

@media (hover: hover) {
  .button:hover,
  .nav-link:hover,
  .quest-card:hover,
  .guide-list article:hover,
  .column-card:hover,
  .sitemap-card:hover {
    transform: translateY(-2px);
  }

  .button.primary:hover {
    box-shadow: 0 5px 0 rgba(11, 62, 51, 0.85), 0 12px 22px rgba(11, 62, 51, 0.14);
  }

  .nav-link:hover,
  .quest-card:hover,
  .guide-list article:hover,
  .column-card:hover,
  .sitemap-card:hover {
    border-color: #b7d4c5;
    box-shadow: var(--shadow-lift);
  }
}

.unlock-label {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  padding: 5px 9px;
  color: #fff;
  background: var(--green-dark);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.quest-card.is-locked .unlock-label {
  color: #4f5a54;
  background: #dce4dd;
}

.quest-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.quest-detail-card p,
.route-list p,
.guide-chapters p,
.term-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-tags span,
.term-card span,
.text-link {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  padding: 5px 9px;
  color: var(--green-dark);
  background: #e8f3ed;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
}

.text-link {
  margin-top: 8px;
  background: #fff8e8;
  border: 0;
}

.quest-start {
  width: fit-content;
  min-height: 38px;
  padding: 8px 12px;
  color: #fff;
  background: var(--green);
  border: 2px solid var(--green-dark);
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 4px 0 var(--green-dark);
}

.quest-start:disabled {
  color: #5f6963;
  background: #e1e7e2;
  border-color: #bec8c0;
  cursor: default;
  box-shadow: 0 4px 0 #bec8c0;
}

.quest-progress {
  height: 10px;
  overflow: hidden;
  background: #edf1ec;
  border-radius: 999px;
}

.quest-progress span {
  display: block;
  width: var(--value, 0%);
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--green));
  transition: width 220ms ease;
}

.guide-section {
  padding-bottom: 52px;
}

.guide-hero {
  padding-bottom: 28px;
}

.guide-hero-note {
  display: grid;
  gap: 4px;
  max-width: 680px;
  padding: 14px 16px;
  color: var(--green-dark);
  background: #fffdf7;
  border: 2px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 6px 0 rgba(16, 91, 70, 0.08);
}

.guide-hero-note strong,
.guide-hero-note span {
  display: block;
}

.guide-hero-note span {
  color: var(--muted);
  font-weight: 800;
}

.guide-hero-copy {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.guide-list article {
  position: relative;
  padding: 18px 18px 18px 62px;
}

.route-list article {
  position: relative;
  padding: 18px 18px 18px 62px;
}

.guide-chapters article,
.term-card {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.guide-step-list,
.guide-quest-list,
.guide-role-grid {
  display: grid;
  gap: 12px;
}

.guide-step-list article,
.guide-quest-list article,
.guide-role-grid article {
  display: grid;
  gap: 12px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 2px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 0 rgba(16, 91, 70, 0.08);
}

.guide-step-list h3,
.guide-quest-list h3,
.guide-role-grid h3,
.guide-step-list p,
.guide-quest-list p,
.guide-role-grid p {
  margin: 0;
}

.guide-step-list p,
.guide-quest-list p,
.guide-role-grid p {
  color: var(--muted);
  font-weight: 800;
}

.guide-link-button {
  width: 100%;
  justify-content: center;
}

.guide-simple-list,
.guide-summary-panel {
  display: grid;
  gap: 12px;
}

.guide-simple-list article,
.guide-start-box {
  display: grid;
  gap: 10px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 2px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 0 rgba(16, 91, 70, 0.08);
}

.guide-simple-list h3,
.guide-simple-list p,
.guide-start-box h2,
.guide-start-box p {
  margin: 0;
}

.guide-simple-list p,
.guide-start-box p {
  color: var(--muted);
  font-weight: 800;
}

.guide-summary-panel {
  padding: 16px;
  background: #fffdf7;
  border: 2px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 0 rgba(16, 91, 70, 0.08);
}

.guide-summary-panel div {
  display: grid;
  gap: 4px;
  padding: 12px 0;
}

.guide-summary-panel div + div {
  border-top: 2px solid var(--line);
}

.guide-summary-panel strong {
  color: var(--green-dark);
}

.guide-summary-panel span {
  color: var(--muted);
  font-weight: 800;
}

.chapter-number {
  display: inline-flex;
  width: fit-content;
  min-height: 32px;
  align-items: center;
  padding: 6px 10px;
  color: #fff;
  background: var(--red);
  border: 2px solid #8f2429;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.text-link {
  width: fit-content;
  color: var(--green-dark);
  border-bottom: 2px solid var(--gold);
  font-weight: 900;
}

.column-card {
  overflow: hidden;
}

.column-release-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 231, 163, 0.45), transparent 30%),
    linear-gradient(135deg, #fffdf7, #edf7f1);
  border: 2px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 0 rgba(16, 91, 70, 0.08);
}

.column-release-panel h2,
.column-release-panel p {
  margin: 0;
}

.column-release-panel > div:first-child p:not(.eyebrow) {
  color: var(--muted);
  font-weight: 800;
}

.column-next-card {
  display: grid;
  gap: 8px;
  padding: 14px;
  background: #fff;
  border: 2px solid #f0c85d;
  border-radius: 8px;
}

.column-next-card span {
  width: fit-content;
  min-height: 30px;
  padding: 5px 10px;
  color: var(--green-dark);
  background: #ffe7a3;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
}

.column-next-card strong {
  color: var(--green-dark);
  font-size: 1.16rem;
  line-height: 1.35;
}

.column-next-card p {
  color: var(--muted);
  font-weight: 800;
}

.column-card-link {
  display: grid;
  gap: 10px;
  min-height: 100%;
  padding: 18px;
}

.column-card h3 {
  font-size: 1.28rem;
}

.column-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.column-label {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 5px 10px;
  color: #fff;
  background: var(--green);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
}

.column-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.column-meta span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 5px 9px;
  color: var(--green-dark);
  background: #e8f3ed;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
}

.column-article,
.column-hero,
.column-body,
.column-cta {
  width: min(100%, 880px);
  margin: 0 auto;
}

.column-hero {
  padding: 42px 18px 22px;
}

.column-hero h1 {
  max-width: 11em;
  font-size: clamp(2rem, 9vw, 3.4rem);
  line-height: 1.12;
}

.column-body {
  display: grid;
  gap: 22px;
  padding: 8px 18px 42px;
}

.column-block {
  display: grid;
  gap: 12px;
}

.column-body p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.9;
}

.column-body h2 {
  margin-top: 10px;
  font-size: 1.32rem;
}

.column-callout,
.column-quiz,
.column-share-note,
.column-cta {
  padding: 18px;
}

.column-callout {
  color: var(--green-dark);
  background: linear-gradient(135deg, #fff8e8, #eef8f0);
  border-color: #e6c15d;
  font-size: 1.05rem;
}

.risk-table {
  display: grid;
  overflow: hidden;
  border: 2px solid var(--line);
  border-radius: 12px;
}

.risk-table > div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 2px solid var(--line);
}

.risk-table > div:first-child {
  color: var(--green-dark);
  background: #e8f3ed;
}

.risk-table > div:last-child {
  border-bottom: 0;
}

.risk-table span,
.risk-table strong {
  min-width: 0;
  overflow-wrap: anywhere;
}

.risk-table span {
  color: var(--muted);
  font-weight: 700;
}

.risk-table span:first-child {
  color: var(--ink);
  font-weight: 900;
}

.column-steps {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.4em;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.8;
}

.column-steps strong {
  color: var(--ink);
}

.column-quiz {
  display: grid;
  gap: 12px;
  background: #fffdf4;
  border-color: #e6c15d;
}

.column-quiz-list {
  display: grid;
  gap: 14px;
}

.column-quiz p strong {
  color: var(--green-dark);
}

.column-quiz-player {
  display: grid;
  gap: 12px;
}

.column-quiz-status {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.column-quiz-progress {
  height: 10px;
  overflow: hidden;
  background: #e8f3ed;
  border: 2px solid var(--line);
  border-radius: 999px;
}

.column-quiz-progress span {
  display: block;
  width: var(--value);
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--gold));
  border-radius: inherit;
  transition: width 180ms ease;
}

.column-choice-list {
  display: grid;
  gap: 10px;
}

.column-choice-list button {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  width: 100%;
  min-height: 58px;
  padding: 12px;
  color: var(--ink);
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 4px 0 #d8ded8;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-align: left;
}

.column-choice-list button span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 8px;
  font-size: 0.82rem;
}

.column-choice-list button.is-correct {
  background: #e8f3ed;
  border-color: #8ec8a3;
  box-shadow: 0 4px 0 #76b990;
}

.column-choice-list button.is-wrong {
  background: #fff1ec;
  border-color: #d98a90;
  box-shadow: 0 4px 0 #d98a90;
}

.column-choice-list button:disabled {
  cursor: default;
}

.column-quiz-feedback {
  display: grid;
  gap: 10px;
  padding: 14px;
  color: var(--ink);
  background: #eef8f0;
  border: 2px solid #8ec8a3;
  border-radius: 8px;
}

.column-quiz-feedback strong {
  color: var(--green-dark);
  font-size: 1.08rem;
}

.column-quiz-feedback p {
  margin: 0;
}

.column-share-note {
  display: grid;
  gap: 8px;
  background: #eef8f0;
  border-color: #8ec8a3;
}

.column-share-note span {
  width: fit-content;
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.column-cta {
  display: grid;
  gap: 16px;
  margin-bottom: 42px;
}

.step {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 8px;
  font-weight: 900;
}

.guide-list p {
  margin: 6px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.site-footer {
  padding: 34px 18px 30px;
  color: rgba(255, 255, 255, 0.84);
  background: var(--green-dark);
}

.footer-inner {
  display: grid;
  gap: 26px;
  width: min(100%, 1120px);
  margin: 0 auto;
}

.footer-brand {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 10px 12px;
  align-items: center;
}

.footer-logo {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border: 2px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.25);
  font-size: 0.9rem;
  font-weight: 900;
}

.footer-brand strong {
  display: block;
  margin: 0;
  color: #fff;
  font-size: 1.12rem;
  font-weight: 900;
}

.site-footer p {
  margin: 0;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.footer-description {
  grid-column: 1 / -1;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-actions {
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 900;
}

.footer-button.is-primary {
  color: var(--green-dark);
  background: #ffe7a3;
  border-color: #fff1bf;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.28);
}

.footer-links {
  display: grid;
  gap: 16px;
}

.footer-links div {
  display: grid;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-links strong {
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.footer-links a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 800;
}

.footer-links a:hover {
  color: #fff;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.76rem;
  font-weight: 800;
}

@keyframes clearedPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 12px 26px rgba(25, 33, 31, 0.07);
  }
  45% {
    transform: scale(1.012);
    box-shadow: 0 18px 36px rgba(219, 165, 59, 0.22);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 12px 26px rgba(25, 33, 31, 0.07);
  }
}

@keyframes rewardPop {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.88);
  }
  24% {
    opacity: 1;
    transform: translateY(-4px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (min-width: 760px) {
  .site-header {
    padding-inline: 32px;
  }

  .menu-toggle {
    display: none;
  }

  .header-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(18, 97, 78, 0.1);
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(25, 33, 31, 0.05);
    font-size: 0.82rem;
  }

  .nav-intro,
  .nav-link span,
  .nav-link em,
  .nav-link::after {
    display: none;
  }

  .nav-link,
  .header-nav a {
    display: inline-flex;
    min-height: auto;
    padding: 8px 11px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 999px;
    box-shadow: none;
  }

  .nav-link strong {
    color: inherit;
    font-size: inherit;
    line-height: inherit;
  }

  .header-nav a[aria-current="page"] {
    color: #fff;
    background: var(--green);
    border-color: var(--green-dark);
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.12);
  }

  .hero {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
    align-items: start;
    min-height: auto;
    padding: 56px 28px 44px;
  }

  .hero-copy {
    display: contents;
  }

  .hero-copy > .eyebrow,
  .hero-copy > h1,
  .hero-copy > .lead,
  .hero-copy > .player-status,
  .hero-copy > .hero-stats,
  .hero-copy > .hero-actions {
    grid-column: 1 / -1;
  }

  .hero-visual {
    grid-column: 1;
    grid-row: 7;
    align-self: start;
  }

  .hero-quiz-section {
    grid-column: 2;
    grid-row: 7;
    align-self: start;
    margin-top: 0;
  }

  .mission-panel {
    grid-column: 1 / -1;
    grid-row: 8;
  }

  .section,
  .page-hero {
    padding: 58px 28px;
  }

  .page-hero {
    padding-bottom: 28px;
  }

  .lead {
    max-width: 35rem;
    font-size: 1.08rem;
  }

  .mission-panel {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .sitemap-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quiz-card {
    padding: 24px;
  }

  .choices {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .result-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quest-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-route-item {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 18px 22px;
  }

  .home-route-panel::before {
    left: 145px;
  }

  .home-route-item::before {
    left: 136px;
  }

  .guide-list,
  .route-list,
  .term-grid,
  .my-dashboard,
  .level-rows,
  .column-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .column-release-panel {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
    align-items: center;
    padding: 22px;
  }

  .my-dashboard .player-card {
    grid-column: span 2;
  }

  .quest-detail-list,
  .my-quest-map,
  .guide-chapters,
  .guide-step-list,
  .guide-role-grid,
  .guide-simple-list,
  .detail-dashboard,
  .question-preview-list,
  .study-term-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guide-quest-list article {
    grid-template-columns: 112px minmax(0, 1fr) 190px;
    align-items: center;
  }

  .hand-rank-detail-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .basics-top-list article {
    grid-template-columns: minmax(0, 1fr) minmax(190px, 0.36fr);
    align-items: center;
  }

  .basics-top-list .basics-action-link {
    grid-column: auto;
    margin-top: 0;
  }

  .hand-rank-table th,
  .hand-rank-table td {
    padding: 13px 14px;
  }

  .hand-rank-table th {
    font-size: 0.78rem;
  }

  .hand-rank-table td {
    font-size: 0.92rem;
  }

  .hand-rank-table td:last-child {
    font-size: 0.88rem;
  }

  .flow-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow-timeline article::before {
    display: none;
  }

  .action-guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .my-action-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.5fr);
    align-items: start;
  }

  .footer-links {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-copy {
    grid-column: 1 / -1;
  }

  .column-hero {
    padding: 58px 28px 28px;
  }

  .column-body {
    padding: 10px 28px 58px;
  }

  .risk-table > div {
    grid-template-columns: minmax(180px, 0.9fr) minmax(0, 1.4fr);
    gap: 18px;
  }

  .column-cta {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }
}
