:root {
  --ink: #12343b;
  --ink-2: #1f2933;
  --teal: #0f766e;
  --coral: #cf5c36;
  --gold: #d6a21f;
  --mint: #dff4ed;
  --paper: #fffdf8;
  --cloud: #f3f7f4;
  --line: #d8dfdc;
  --muted: #5d6b6b;
  --white: #ffffff;
  --shadow: 0 16px 40px rgba(18, 52, 59, 0.12);
  --max: 1180px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink-2);
  background: var(--paper);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
}

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

a:hover {
  color: var(--teal);
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  font-size: 3.4rem;
}

h2 {
  font-size: 2.3rem;
}

h3 {
  font-size: 1.25rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 14px max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(216, 223, 220, 0.85);
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
  transition: transform 180ms ease, color 180ms ease;
  transform-origin: center;
}

.brand:hover {
  transform: scale(1.035);
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.88rem;
}

.brand-logo {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border: 1px solid rgba(18, 52, 59, 0.18);
  border-radius: 50%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.brand:hover .brand-logo {
  transform: scale(1.08) rotate(-2deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  padding: 9px 12px;
  border-radius: 8px;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.nav-links a:hover {
  transform: scale(1.06);
  background: var(--mint);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  padding: 8px 12px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 650px;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero.with-image::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  content: "";
}

.hero.with-image::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(155, 83, 22, 0.46), rgba(214, 162, 31, 0.33) 42%, rgba(207, 92, 54, 0.08)),
    linear-gradient(0deg, rgba(18, 52, 59, 0.46), rgba(18, 52, 59, 0.06));
  content: "";
}

.hero-content {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 88px 0;
  color: var(--white);
}

.hero-content h1 {
  max-width: 800px;
  color: var(--white);
}

.hero-content p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.2rem;
}

.page-hero {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 88px 0 48px;
}

.page-hero p {
  max-width: 790px;
  color: var(--muted);
  font-size: 1.1rem;
}

.eyebrow {
  margin-bottom: 0.75rem;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 900;
  text-align: center;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
  transform-origin: center;
}

.button:hover {
  transform: translate(1px, 1px) scale(1.045);
  background: var(--coral);
  color: var(--white);
  box-shadow: 2px 2px 0 var(--ink);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.88);
}

.button.ghost.dark {
  background: var(--white);
}

.button.secondary {
  background: var(--mint);
}

.button.small {
  min-height: 40px;
  padding: 9px 12px;
  font-size: 0.88rem;
  box-shadow: none;
}

.hero-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(var(--max), calc(100% - 48px));
  margin: -42px auto 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.proof-strip div {
  padding: 20px;
  background: var(--white);
  transition: transform 180ms ease, background-color 180ms ease;
}

.proof-strip div:hover {
  transform: scale(1.025);
  background: #fff8e5;
}

.proof-strip strong {
  display: block;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1.1;
}

.proof-strip span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-weight: 700;
}

.section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 78px 0;
}

.section.no-top {
  padding-top: 20px;
}

.section.muted {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100vw - var(--max)) / 2));
  padding-left: max(24px, calc((100vw - var(--max)) / 2));
  background: var(--cloud);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.collection-grid,
.product-grid,
.article-grid,
.guide-grid,
.path-grid,
.answer-grid,
.review-grid,
.footer-grid {
  display: grid;
  gap: 22px;
}

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

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

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

.answer-grid.compact {
  gap: 16px;
}

.product-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

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

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

.collection-card,
.guide-card,
.path-card,
.answer-grid > div,
.review-card,
.product-card,
.article-card,
.tool-panel,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
  transform-origin: center;
}

.collection-card:hover,
.guide-card:hover,
.path-card:hover,
.answer-grid > div:hover,
.review-card:hover,
.product-card:hover,
.article-card:hover,
.tool-panel:hover,
.faq-list details:hover {
  transform: translateY(-4px) scale(1.018);
  border-color: rgba(214, 162, 31, 0.75);
  box-shadow: 0 22px 52px rgba(18, 52, 59, 0.18);
}

.collection-card {
  min-height: 180px;
  padding: 22px;
}

.guide-card,
.path-card,
.answer-grid > div,
.review-card {
  padding: 22px;
}

.guide-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  border-top: 6px solid var(--teal);
}

.guide-card:nth-child(2) {
  border-top-color: var(--coral);
}

.guide-card:nth-child(3) {
  border-top-color: var(--gold);
}

.guide-card span {
  margin-top: auto;
  color: var(--teal);
  font-weight: 900;
}

.path-card {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  border-top: 6px solid var(--gold);
}

.path-card:nth-child(2) {
  border-top-color: var(--teal);
}

.path-card:nth-child(3) {
  border-top-color: var(--coral);
}

.path-card span {
  margin-top: auto;
  color: var(--teal);
  font-weight: 900;
}

.collection-card:hover {
  border-color: var(--teal);
  color: inherit;
}

.collection-card p,
.guide-card p,
.path-card p,
.answer-grid p,
.review-card p {
  color: var(--muted);
}

.answer-section {
  padding-top: 42px;
}

.product-answers {
  padding-top: 36px;
  padding-bottom: 36px;
}

.reviews-section {
  padding-top: 36px;
}

.stars {
  color: var(--coral);
  font-weight: 900;
}

.review-source {
  margin-top: auto;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
}

.product-image-link {
  display: flex;
  min-height: 430px;
  height: 430px;
  align-items: center;
  justify-content: center;
  padding: 28px 32px 44px;
  background: linear-gradient(145deg, #f6fbf9, #eef0e7);
  overflow: hidden;
}

.product-image-link img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 220ms ease;
}

.product-card:hover .product-image-link img {
  transform: scale(1.035);
}

.product-card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
  padding: 18px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.product-card h3 {
  margin-bottom: 0;
  font-size: 1.22rem;
  line-height: 1.16;
}

.product-card h3 a {
  display: block;
}

.product-card p {
  color: var(--muted);
}

.card-actions {
  margin-top: auto;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.chips span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
}

.chips.prominent {
  margin: 20px 0 8px;
}

.chips.prominent span {
  background: var(--cloud);
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.tool-panel {
  padding: 28px;
  border-top: 6px solid var(--coral);
}

.finder-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  border: 1px solid var(--line);
  border-left: 8px solid var(--teal);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.finder-band:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(214, 162, 31, 0.75);
  box-shadow: 0 22px 52px rgba(18, 52, 59, 0.18);
}

.finder-band > div {
  max-width: 760px;
}

.finder-tool {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.finder-tool fieldset {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.finder-tool legend {
  padding: 0 6px;
  color: var(--ink);
  font-weight: 900;
}

.finder-tool label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-2);
  font-weight: 750;
}

.finder-tool input {
  width: 18px;
  height: 18px;
  accent-color: var(--teal);
}

.finder-answer {
  margin-bottom: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 6px solid var(--gold);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.finder-answer h2 {
  margin-bottom: 0.55rem;
}

.finder-results.filtered .finder-card {
  display: none;
}

.finder-results.filtered .finder-card.match {
  display: flex;
}

.games-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 28px;
  align-items: center;
  padding: 36px;
  border: 1px solid var(--line);
  border-left: 8px solid var(--gold);
  border-radius: 8px;
  background:
    radial-gradient(circle at 86% 18%, rgba(214, 162, 31, 0.24), transparent 32%),
    linear-gradient(135deg, #fffaf0, #f4fbf8);
  box-shadow: var(--shadow);
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.games-band:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(207, 92, 54, 0.75);
  box-shadow: 0 22px 52px rgba(18, 52, 59, 0.18);
}

.games-band-copy {
  max-width: 760px;
}

.game-preview-card,
.game-feature,
.game-shell {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.game-preview-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  color: var(--ink);
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.game-preview-card:hover {
  transform: translateY(-5px) scale(1.025);
  border-color: var(--gold);
  box-shadow: 0 24px 54px rgba(18, 52, 59, 0.2);
}

.game-preview-card.large {
  min-height: 420px;
}

.game-preview-card strong {
  font-size: 1.3rem;
  line-height: 1.15;
}

.game-preview-card small {
  color: var(--muted);
  font-weight: 800;
}

.mini-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  aspect-ratio: 1;
  padding: 8px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
}

.game-preview-card.large .mini-board {
  grid-template-columns: repeat(5, 1fr);
}

.mini-board i {
  display: grid;
  place-items: center;
  border-radius: 5px;
  background: #f8e8b9;
  color: var(--ink);
  font-style: normal;
  font-weight: 900;
}

.mini-board i:nth-child(even) {
  background: #28565d;
  color: var(--white);
}

.game-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: center;
  padding: 28px;
}

.game-shell {
  position: relative;
  overflow: hidden;
  padding: 22px;
}

.game-topbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.game-topbar h2 {
  margin-bottom: 0.4rem;
}

.game-layout {
  display: grid;
  grid-template-columns: minmax(320px, 680px) minmax(240px, 1fr);
  gap: 22px;
}

.duel-board {
  display: grid;
  grid-template-columns: repeat(7, minmax(42px, 1fr));
  gap: 4px;
  padding: 10px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
}

.duel-cell {
  position: relative;
  display: grid;
  min-height: 72px;
  place-items: center;
  border: 1px solid rgba(18, 52, 59, 0.18);
  border-radius: 6px;
  background: #f7e7b6;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  transition: transform 150ms ease, box-shadow 150ms ease, outline-color 150ms ease;
}

.duel-cell:nth-child(even) {
  background: #d9eee9;
}

.duel-cell:hover {
  z-index: 1;
  transform: scale(1.055);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.duel-cell.selected {
  outline: 4px solid var(--gold);
}

.duel-cell.legal {
  outline: 3px solid rgba(15, 118, 110, 0.8);
}

.game-piece {
  position: relative;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 14px;
  box-shadow: 3px 3px 0 rgba(18, 52, 59, 0.55), inset 0 0 0 3px rgba(255, 255, 255, 0.28);
  font-size: 1rem;
  line-height: 1;
  transition: transform 160ms ease, filter 160ms ease;
}

.game-piece.light {
  background: radial-gradient(circle at 30% 25%, #fff4ba, #e2aa1b 72%);
  color: var(--ink);
}

.game-piece.shadow {
  background: radial-gradient(circle at 30% 25%, #52626c, #142832 72%);
  color: var(--white);
}

.duel-cell:hover .game-piece {
  transform: translateY(-2px) scale(1.08);
  filter: saturate(1.12);
}

.game-piece.arena {
  width: 86px;
  height: 86px;
  border-radius: 20px;
}

.piece-icon {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
}

.game-piece.arena .piece-icon {
  width: 48px;
  height: 48px;
}

.piece-icon.crown {
  clip-path: polygon(4% 38%, 22% 56%, 36% 16%, 50% 54%, 64% 16%, 78% 56%, 96% 38%, 86% 92%, 14% 92%);
  background: linear-gradient(135deg, #fff7ca, #d99b00 65%, #8b5400);
}

.piece-icon.guard {
  clip-path: polygon(50% 0, 92% 16%, 82% 70%, 50% 100%, 18% 70%, 8% 16%);
  background: linear-gradient(145deg, #eaf7f5, #6aa89d 52%, #12343b);
}

.piece-icon.archer::before {
  position: absolute;
  inset: 2px 7px 2px 0;
  border: 4px solid currentColor;
  border-left-color: transparent;
  border-radius: 50%;
  content: "";
}

.piece-icon.archer::after {
  position: absolute;
  top: 5px;
  left: 16px;
  width: 4px;
  height: 24px;
  border-radius: 99px;
  background: currentColor;
  box-shadow: 7px -4px 0 -1px currentColor;
  transform: rotate(55deg);
  content: "";
}

.piece-icon.spark {
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #fff9cf 0 18%, transparent 20%),
    conic-gradient(from 20deg, #fff4ba, #f2a541, #f46f4f, #fff4ba);
  box-shadow: 0 0 14px rgba(242, 165, 65, 0.7);
}

.piece-icon.blade::before {
  position: absolute;
  top: 1px;
  left: 13px;
  width: 7px;
  height: 23px;
  border-radius: 99px 99px 2px 2px;
  background: linear-gradient(#ffffff, #b9c7cc);
  box-shadow: 0 0 0 2px currentColor;
  transform: rotate(42deg);
  content: "";
}

.piece-icon.blade::after {
  position: absolute;
  right: 3px;
  bottom: 3px;
  width: 22px;
  height: 6px;
  border-radius: 99px;
  background: #d99b00;
  box-shadow: 0 0 0 2px currentColor;
  transform: rotate(42deg);
  content: "";
}

.piece-hp {
  position: absolute;
  right: -7px;
  bottom: -7px;
  display: grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
}

.game-panel {
  display: grid;
  align-content: start;
  gap: 18px;
}

.game-panel > div,
.game-log {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.game-score {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink);
  font-weight: 900;
}

.game-log {
  max-height: 260px;
  overflow: auto;
  color: var(--muted);
  font-size: 0.92rem;
}

.arena {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(18, 52, 59, 0.74);
}

.arena-card {
  width: min(720px, 100%);
  padding: 24px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.35);
}

.arena-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.arena-stage {
  display: grid;
  gap: 16px;
  align-items: center;
  margin: 20px 0;
}

.arena-field {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 48%, rgba(226, 170, 27, 0.28), transparent 22%),
    linear-gradient(135deg, #f8e8b8 0 48%, #d8ece9 48% 52%, #263f4a 52% 100%);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.32);
}

.arena-field::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(18, 52, 59, 0.22);
  border-radius: 999px;
  content: "";
}

.arena-combatant {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: min(172px, 38%);
  gap: 8px;
  place-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 8px 8px 0 rgba(18, 52, 59, 0.18);
  transition: transform 180ms ease;
  transform: translateY(-50%);
}

.arena-combatant.light {
  left: 7%;
}

.arena-combatant.shadow {
  right: 7%;
}

.arena-combatant small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.arena-combatant.casting {
  animation: arena-cast 520ms ease both;
}

.arena-combatant.hit {
  animation: arena-hit 360ms ease both;
}

.arena-combatant.lunge-light {
  animation: arena-lunge-light 620ms ease both;
}

.arena-combatant.lunge-shadow {
  animation: arena-lunge-shadow 620ms ease both;
}

.arena-effect {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  pointer-events: none;
}

.arena-effect.ranged,
.arena-effect.magic {
  width: 36px;
  height: 18px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: linear-gradient(90deg, #fff7ca, #e2aa1b);
  box-shadow: 0 0 18px rgba(226, 170, 27, 0.65);
}

.arena-effect.magic {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff7ca, #f46f4f 62%, #12343b);
}

.arena-effect.blade,
.arena-effect.shield,
.arena-effect.burst {
  width: 86px;
  height: 86px;
  border: 5px solid rgba(255, 247, 202, 0.9);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(18, 52, 59, 0.7), 0 0 26px rgba(226, 170, 27, 0.8);
}

.arena-effect.blade {
  height: 18px;
  border-width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #fff, #f46f4f, transparent);
  transform: rotate(-24deg);
}

.arena-effect.shield {
  border-color: rgba(216, 236, 233, 0.95);
}

.arena-effect.light {
  animation: arena-shot-light 700ms ease forwards;
}

.arena-effect.shadow {
  animation: arena-shot-shadow 700ms ease forwards;
}

.power-meter {
  position: relative;
  justify-self: center;
  width: min(360px, 100%);
  height: 24px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--coral));
}

.power-meter i {
  position: absolute;
  top: -5px;
  left: 0;
  width: 12px;
  height: 34px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 0 0 2px var(--ink);
}

@keyframes arena-cast {
  0% {
    transform: translateY(-50%) scale(1);
  }
  45% {
    transform: translateY(-58%) scale(1.08);
  }
  100% {
    transform: translateY(-50%) scale(1);
  }
}

@keyframes arena-hit {
  0%,
  100% {
    filter: none;
    transform: translateY(-50%) translateX(0);
  }
  25% {
    filter: saturate(1.45);
    transform: translateY(-50%) translateX(-10px);
  }
  55% {
    transform: translateY(-50%) translateX(10px);
  }
}

@keyframes arena-lunge-light {
  0%,
  100% {
    transform: translateY(-50%) translateX(0) scale(1);
  }
  48% {
    transform: translateY(-50%) translateX(120px) scale(1.08);
  }
}

@keyframes arena-lunge-shadow {
  0%,
  100% {
    transform: translateY(-50%) translateX(0) scale(1);
  }
  48% {
    transform: translateY(-50%) translateX(-120px) scale(1.08);
  }
}

@keyframes arena-shot-light {
  0% {
    opacity: 0;
    transform: translate(-170px, -50%) scale(0.8) rotate(-18deg);
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(160px, -50%) scale(1.28) rotate(18deg);
  }
}

@keyframes arena-shot-shadow {
  0% {
    opacity: 0;
    transform: translate(160px, -50%) scale(0.8) rotate(18deg);
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-170px, -50%) scale(1.28) rotate(-18deg);
  }
}

.decision-section {
  padding-top: 42px;
}

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

.decision-list div {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.decision-list strong {
  color: var(--ink);
}

.decision-list span {
  color: var(--muted);
}

.shop-tools {
  display: grid;
  gap: 18px;
  padding-top: 8px;
  padding-bottom: 22px;
}

.search-box {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.search-box input {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

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

.filter {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.filter.active,
.filter:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.product-detail {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 46px;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 84px 0 58px;
}

.product-art {
  display: grid;
  min-height: 560px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(145deg, #eef8f5, #faf6e8);
  box-shadow: var(--shadow);
}

.product-art img {
  max-height: 520px;
  object-fit: contain;
  padding: 28px;
}

.product-copy {
  align-self: center;
}

.lead {
  color: var(--muted);
  font-size: 1.1rem;
}

.price {
  color: var(--ink);
  font-size: 1.6rem;
  font-weight: 900;
}

.article-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  min-height: 210px;
  padding: 18px;
}

.article-card img {
  width: 100%;
  height: 174px;
  border-radius: 8px;
  object-fit: cover;
}

.article-card p {
  color: var(--muted);
}

.article-page {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
  padding: 76px 0;
}

.article-header {
  margin-bottom: 34px;
}

.article-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 0;
  color: var(--coral);
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
}

.article-header img {
  width: 100%;
  max-height: 440px;
  margin-top: 28px;
  border-radius: 8px;
  object-fit: cover;
}

.article-body h2 {
  margin-top: 2rem;
  font-size: 1.55rem;
}

.article-body p {
  color: #334245;
  font-size: 1.05rem;
}

.article-meta {
  color: var(--coral);
  font-size: 0.92rem;
  font-weight: 800;
}

.source-line {
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.faq-section {
  padding-top: 42px;
}

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

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.footer {
  padding: 54px max(24px, calc((100vw - var(--max)) / 2)) 32px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.88);
}

.footer h2,
.footer h3 {
  color: var(--white);
}

.footer-grid {
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  margin-bottom: 28px;
}

.footer a {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.9);
}

.footer a:hover {
  color: var(--gold);
}

.affiliate-note {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.affiliate-note.inline {
  display: block;
  margin-top: 14px;
  color: var(--muted);
}

.text-link {
  color: var(--teal);
  font-weight: 900;
}

[hidden] {
  display: none !important;
}

@media (max-width: 980px) {
  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .site-header {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links.open {
    display: flex;
  }

  .collection-grid,
  .product-grid,
  .article-grid,
  .guide-grid,
  .path-grid,
  .answer-grid,
  .review-grid,
  .finder-tool,
  .footer-grid,
  .games-band,
  .game-feature,
  .game-layout,
  .split,
  .product-detail {
    grid-template-columns: 1fr 1fr;
  }

  .proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0;
  }

  .product-detail {
    gap: 28px;
  }
}

@media (max-width: 680px) {
  h1 {
    font-size: 2.05rem;
  }

  h2 {
    font-size: 1.65rem;
  }

  .hero {
    min-height: 590px;
  }

  .hero-content,
  .page-hero,
  .section,
  .product-detail,
  .article-page {
    width: min(100% - 32px, var(--max));
  }

  .hero-content {
    padding: 72px 0;
  }

  .collection-grid,
  .product-grid,
  .article-grid,
  .guide-grid,
  .path-grid,
  .answer-grid,
  .review-grid,
  .finder-tool,
  .footer-grid,
  .games-band,
  .game-feature,
  .game-layout,
  .split,
  .product-detail,
  .article-card {
    grid-template-columns: 1fr;
  }

  .finder-band {
    align-items: stretch;
    flex-direction: column;
  }

  .decision-list div {
    grid-template-columns: 1fr;
  }

  .game-topbar,
  .arena-header {
    align-items: stretch;
    flex-direction: column;
  }

  .duel-board {
    grid-template-columns: repeat(7, minmax(34px, 1fr));
  }

  .duel-cell {
    min-height: 46px;
  }

  .game-piece {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .piece-icon {
    width: 20px;
    height: 20px;
  }

  .piece-hp {
    right: -6px;
    bottom: -6px;
    min-width: 18px;
    height: 18px;
    font-size: 0.62rem;
  }

  .arena-field {
    min-height: 360px;
  }

  .arena-combatant {
    width: 42%;
    padding: 10px;
  }

  .game-piece.arena {
    width: 66px;
    height: 66px;
  }

  .game-piece.arena .piece-icon {
    width: 36px;
    height: 36px;
  }

  .arena-stage {
    grid-template-columns: 1fr;
  }

  .power-meter {
    order: -1;
  }

  .proof-strip {
    width: min(100% - 32px, var(--max));
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 0;
  }

  .product-image-link {
    min-height: 390px;
    height: 390px;
    padding: 24px 28px 42px;
  }

  .product-card h3 {
    font-size: 1.12rem;
  }

  .product-art {
    min-height: 380px;
  }

  .product-art img {
    max-height: 340px;
  }

  .hero-actions,
  .card-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .article-card img {
    height: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .button:hover,
  .brand:hover,
  .nav-links a:hover,
  .collection-card:hover,
  .guide-card:hover,
  .path-card:hover,
  .answer-grid > div:hover,
  .review-card:hover,
  .product-card:hover,
  .article-card:hover,
  .tool-panel:hover,
  .faq-list details:hover,
  .finder-band:hover,
  .games-band:hover,
  .game-preview-card:hover,
  .duel-cell:hover {
    transform: none;
  }
}
