:root {
  --accent: #d6a63d;
  --accent-strong: #f5d36b;
  --accent-soft: #21180a;
  --ink: #f8ead0;
  --muted: #c3ad7c;
  --paper: #12100b;
  --bg: #070604;
  --line: #3d3018;
  --yellow: #f5c94a;
  --button-ink: #080704;
  --shadow-blue: rgba(214, 166, 61, .22);
  --radius: 10px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% -12%, rgba(245, 211, 107, .16), transparent 28%),
    linear-gradient(180deg, #080704 0%, #0d0a05 42%, #050403 100%);
  line-height: 1.55;
  letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
p { color: var(--muted); margin-top: 0; }
h1, h2, h3 { margin-top: 0; line-height: 1.05; }

.topbar {
  max-width: 1200px;
  height: 74px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 4px solid var(--accent);
  background: rgba(7, 6, 4, .96);
}
.brand {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  min-width: max-content;
  color: var(--accent);
  font-size: 22px;
  font-weight: 950;
}
.brand span { color: var(--accent); }
.brand small {
  position: absolute;
  left: 0;
  top: 26px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}
.nav {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 850;
  font-size: 14px;
}
.nav a { color: #1f2937; }
.nav a { color: var(--ink); }
.nav a:hover { color: var(--accent-strong); }
.menu-toggle { display: none; }

.btn,
.text-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 950;
}
.btn-primary {
  color: var(--button-ink);
  background: var(--yellow);
  border: 2px solid var(--accent-strong);
  box-shadow: 0 14px 34px rgba(245,201,74,.28);
}
.btn-dark,
.btn-outline {
  color: var(--accent);
  background: var(--paper);
  border: 1px solid currentColor;
}
.btn-gold { color: var(--button-ink); background: var(--yellow); border: 2px solid var(--accent-strong); }
.text-cta {
  min-height: 0;
  padding: 0;
  color: var(--accent);
}

.compare-hero,
.competitor-hero,
.landing-grid,
.quick-actions,
.content-grid,
.keyword-section,
.bonus-band,
.faq,
.responsible,
.wide {
  width: min(1200px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}
.compare-hero,
.competitor-hero {
  min-height: 560px;
  padding: 72px 0 34px;
}
.compare-hero {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 42px;
  align-items: center;
  align-content: center;
  max-width: 1200px;
}
.competitor-hero {
  display: grid;
  align-content: center;
  background:
    linear-gradient(90deg, rgba(214,166,61,.12), transparent 50%),
    var(--bg);
}
.tag {
  margin-bottom: 12px;
  color: var(--accent);
  font-weight: 950;
  text-transform: lowercase;
}
h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 68px);
}
.lead {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: 20px;
}
.hero-image {
  display: block;
  width: 100%;
  border: 1px solid rgba(245, 211, 107, .42);
  border-radius: 34px;
  background: var(--paper);
  box-shadow: 0 26px 70px var(--shadow-blue);
}
.media-hero {
  grid-template-columns: 1fr 420px;
  gap: 42px;
  align-items: center;
}
.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.poster-hero,
.gold-section,
.search-map,
.compare-block,
.content-plan,
.home-faq {
  width: min(1200px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.poster-hero {
  min-height: 660px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 48px;
  align-items: center;
  padding: 72px 0 46px;
}

.poster-copy h1 {
  max-width: 760px;
  font-size: clamp(46px, 5.7vw, 74px);
}

.poster-copy .lead {
  max-width: 680px;
}

.poster-panel {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  padding: 34px 24px 26px;
  color: #fff5d9;
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), transparent 18%),
    linear-gradient(180deg, rgba(250, 213, 122, .22), transparent 30%),
    linear-gradient(135deg, #1a160d 0%, #080704 52%, #1c1306 100%);
  border: 1px solid rgba(245, 211, 107, .65);
  border-radius: 8px;
  box-shadow:
    0 30px 90px rgba(0,0,0,.62),
    0 0 0 8px rgba(214,166,61,.07),
    inset 0 0 70px rgba(245,211,107,.14);
}

.poster-panel::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(245,211,107,.34);
  pointer-events: none;
}

.poster-panel::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  top: 92px;
  height: 110px;
  background: linear-gradient(180deg, rgba(245,211,107,.44), rgba(245,211,107,0));
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  opacity: .32;
  pointer-events: none;
}

.poster-shine {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, transparent 0 28%, rgba(255,255,255,.16) 29%, transparent 39%),
    radial-gradient(circle at 50% 10%, rgba(245,211,107,.35), transparent 28%);
  pointer-events: none;
}

.poster-kicker,
.poster-subtitle,
.poster-list,
.poster-cta {
  position: relative;
  z-index: 1;
}

.poster-kicker {
  width: max-content;
  margin: 0 auto 14px;
  padding: 7px 14px;
  color: #2b1a02;
  background: linear-gradient(90deg, #c9962d, #f5d36b, #a97620);
  border: 1px solid rgba(255,255,255,.32);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.poster-panel h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  color: #fff1c2;
  font-size: 48px;
  text-align: center;
  text-shadow: 0 4px 0 rgba(0,0,0,.45), 0 0 22px rgba(245,211,107,.3);
}

.poster-subtitle {
  max-width: 310px;
  margin: 0 auto 28px;
  color: #d9bc76;
  font-size: 15px;
  text-align: center;
}

.poster-list {
  display: grid;
  gap: 12px;
  margin-top: 170px;
}

.poster-row {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 78px;
  padding: 12px;
  background:
    linear-gradient(90deg, rgba(245,211,107,.18), rgba(245,211,107,.04)),
    rgba(5,4,3,.68);
  border: 1px solid rgba(245,211,107,.42);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.poster-row b {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #160d02;
  background: linear-gradient(135deg, #fff1b7, #b57a21);
  border-radius: 8px;
  font-size: 20px;
  box-shadow: 0 0 0 3px rgba(245,211,107,.18);
}

.poster-row strong {
  display: block;
  color: #fff8df;
  font-size: 17px;
}

.poster-row span {
  display: block;
  color: #d1b373;
  font-size: 13px;
  line-height: 1.45;
}

.poster-cta {
  width: 100%;
  margin-top: 18px;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #120c03;
  background: linear-gradient(90deg, #c58a24, #ffdf7b, #b57a21);
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 8px;
  font-weight: 950;
}

.gold-section,
.compare-block,
.home-faq {
  margin-bottom: 28px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(245,211,107,.08), rgba(18,16,11,0) 58%),
    var(--paper);
  border: 1px solid var(--line);
  border-top: 8px solid var(--accent);
}

.intro-slab {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 30px;
}

.section-head {
  margin-bottom: 22px;
}

.section-head h2,
.gold-section h2,
.compare-block h2,
.home-faq h2 {
  font-size: clamp(28px, 3.2vw, 42px);
}

.search-map {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.search-map article,
.content-plan article,
.home-faq-grid article {
  min-height: 230px;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(245,211,107,.11), transparent 46%),
    #100d07;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.search-map article:hover,
.content-plan article:hover {
  border-color: rgba(245,211,107,.8);
  box-shadow: 10px 10px 0 rgba(214,166,61,.14);
}

.search-map span,
.content-plan span {
  display: block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.search-map h2 {
  font-size: 24px;
}

.route-flow {
  margin-bottom: 28px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.timeline article {
  min-height: 250px;
  padding: 20px;
  background: rgba(5,4,3,.58);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.timeline b {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  color: #160d02;
  background: linear-gradient(135deg, #fff1b7, #b57a21);
  border-radius: 8px;
}

.timeline h3 {
  font-size: 21px;
}

.compare-block {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 30px;
  align-items: center;
}

.compare-block .btn {
  margin-top: 12px;
}

.intent-table-wrap {
  overflow-x: auto;
}

.content-plan {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.content-plan .section-head {
  grid-column: 1 / -1;
  padding: 24px 24px 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 8px solid var(--accent);
}

.home-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.home-faq-grid article {
  min-height: 150px;
}

.landing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
.landing-grid article,
.seo-panel,
.responsible,
.faq-list,
.content-engine,
.latest-guides {
  background: var(--paper);
  border: 1px solid var(--line);
}
.landing-grid article {
  min-height: 224px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(245,211,107,.08), rgba(18,16,11,0) 42%),
    var(--paper);
}
.landing-grid article:hover {
  outline: 2px solid var(--accent);
  box-shadow: 12px 12px 0 rgba(214,166,61,.16);
}
.landing-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 950;
  text-transform: lowercase;
}
.landing-grid h2 {
  margin-bottom: 10px;
  font-size: 24px;
}

.latest-guides {
  width: min(1200px, calc(100% - 40px));
  margin: 28px auto;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 20px;
  align-items: stretch;
  padding: 24px;
  border-top: 8px solid var(--accent);
}
.latest-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.latest-guide-grid a {
  display: grid;
  align-content: space-between;
  min-height: 128px;
  padding: 16px;
  background: var(--bg);
  border: 1px solid var(--line);
}
.latest-guide-grid span {
  color: var(--muted);
  font-size: 14px;
}

.content-engine {
  width: min(1200px, calc(100% - 40px));
  margin: 28px auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 24px;
  align-items: center;
  padding: 24px;
  border: 2px solid rgba(245, 211, 107, .5);
  box-shadow: 12px 12px 0 rgba(214,166,61,.16);
}
.content-engine img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.seo-panel {
  padding: 24px;
  margin-bottom: 28px;
}
.seo-panel.wide {
  border-left: 8px solid var(--accent);
}
.seo-panel ol {
  margin: 0 0 20px;
  padding-left: 22px;
  line-height: 1.9;
}

.article-section {
  width: min(1200px, calc(100% - 40px));
  margin: 28px auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
}
.article-section article,
.article-section aside {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 24px;
}
.article-section aside {
  align-self: start;
  position: sticky;
  top: 18px;
}
.article-section aside a {
  display: block;
  padding: 10px 0;
  color: var(--accent);
  font-weight: 900;
}
.article-section article h2 {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.article-section article h2:first-child,
.article-section article .tag + h2 {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.checklist {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.checklist li {
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--accent-soft);
  font-weight: 700;
}
.checklist li::before {
  content: "Check";
  display: inline-block;
  margin-right: 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.workflow {
  display: grid;
  gap: 12px;
  margin: 18px 0 24px;
}
.workflow div {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 8px 14px;
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--accent-soft);
}
.workflow b {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--button-ink);
  background: var(--accent);
  border-radius: 50%;
}
.workflow h3,
.workflow p {
  margin-bottom: 0;
}
.intent-table {
  width: 100%;
  margin-top: 16px;
  border-collapse: collapse;
  font-size: 15px;
}
.intent-table th,
.intent-table td {
  padding: 13px;
  border: 1px solid var(--line);
  text-align: left;
}
.intent-table th {
  background: var(--accent-soft);
}
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 16px;
}
.side-note {
  margin-top: 18px;
  padding: 14px;
  background: var(--accent-soft);
  border-left: 5px solid var(--accent);
}
.side-note p { margin-bottom: 0; }
.section-copy {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto 18px;
}

.trouble-grid {
  width: min(1200px, calc(100% - 40px));
  margin: 28px auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.trouble-grid article {
  min-height: 210px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
}
.trouble-grid b {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--button-ink);
  background: var(--accent);
  border-radius: 50%;
}

.faq { margin-top: 24px; margin-bottom: 28px; }
.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.faq-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 16px;
  width: 100%;
  padding: 18px;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.faq-item span { font-weight: 950; }
.faq-item b { color: var(--accent); }
.faq-item em {
  display: none;
  grid-column: 1 / -1;
  color: var(--muted);
  font-style: normal;
}
.faq-item.is-open em { display: block; }

.responsible {
  margin-top: 28px;
  margin-bottom: 40px;
  padding: 24px;
  border-left: 8px solid var(--accent);
}
.footer {
  margin-top: 40px;
  padding: 30px 20px;
  color: var(--ink);
  background: #050403;
  border-top: 1px solid rgba(245, 211, 107, .35);
}
.footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
}
.footer .brand { color: var(--accent-strong); }
.footer a {
  display: block;
  margin: 8px 0;
  color: var(--muted);
}
.footer p { color: var(--muted); }

.benchmark-guides .latest-guide-grid {
  grid-template-columns: 1fr;
}
.benchmark-guides .latest-guide-grid a,
.single-route-grid article {
  min-height: 168px;
  border-color: rgba(245, 211, 107, .46);
  background:
    linear-gradient(135deg, rgba(245,211,107,.14), rgba(18,16,11,0) 58%),
    #100d07;
}
.single-route-grid {
  grid-template-columns: minmax(0, 520px);
}
.single-route-grid article {
  min-height: 250px;
}

@media (min-width: 821px) {
}

@media (max-width: 820px) {
  body {
    padding-bottom: 90px;
    color: var(--ink);
    background: var(--bg);
  }
  .topbar {
    height: auto;
    min-height: 66px;
    padding: 14px 16px;
    border-bottom: 2px solid var(--accent);
    background: #070604;
  }
  .brand { color: var(--accent-strong); }
  .brand small { color: var(--muted); }
  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
    min-height: 40px;
    align-items: center;
    padding: 0 14px;
    color: var(--ink);
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 12px;
    font-weight: 850;
  }
  .nav {
    display: none;
    flex-basis: 100%;
    order: 4;
    padding-top: 14px;
  }
  .nav.is-open { display: grid; }
  .nav a { color: var(--ink); }
  .topbar > .btn-outline { display: none; }
  .compare-hero,
  .competitor-hero,
  .poster-hero,
  .gold-section,
  .search-map,
  .compare-block,
  .content-plan,
  .home-faq,
  .landing-grid,
  .quick-actions,
  .content-grid,
  .keyword-section,
  .bonus-band,
  .faq,
  .responsible,
  .wide {
    width: min(100% - 32px, 1200px);
  }
  .compare-hero,
  .competitor-hero {
    display: block;
    min-height: auto;
    padding: 36px 0 24px;
  }
  .poster-hero {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 36px 0 24px;
  }
  .poster-copy h1 {
    font-size: 40px;
  }
  .poster-panel {
    min-height: auto;
    padding: 28px 18px 20px;
  }
  .poster-panel h2 {
    font-size: 38px;
  }
  .poster-list {
    margin-top: 136px;
  }
  .intro-slab,
  .compare-block,
  .timeline,
  .search-map,
  .content-plan,
  .home-faq-grid {
    grid-template-columns: 1fr;
  }
  .gold-section,
  .compare-block,
  .home-faq,
  .content-plan .section-head {
    padding: 22px;
  }
  .hero-image {
    margin-top: 20px;
    border-radius: 22px;
  }
  h1 { font-size: 38px; }
  .lead, p { color: #cbd5e1; }
  .landing-grid,
  .faq-list,
  .footer,
  .latest-guides,
  .latest-guide-grid,
  .content-engine,
  .article-section,
  .trouble-grid {
    grid-template-columns: 1fr;
  }
  .landing-grid article,
  .seo-panel,
  .responsible,
  .faq-list,
  .latest-guides,
  .content-engine,
  .article-section article,
  .article-section aside,
  .trouble-grid article,
  .search-map article,
  .content-plan article,
  .home-faq-grid article,
  .timeline article {
    color: var(--ink);
    border-radius: 8px;
  }
  .landing-grid article p,
  .seo-panel p,
  .responsible p,
  .latest-guides p,
  .content-engine p,
  .article-section p,
  .trouble-grid p,
  .faq-item em {
    color: var(--muted);
  }
  .latest-guides,
  .content-engine,
  .article-section,
  .trouble-grid {
    width: min(100% - 32px, 1200px);
  }
  .article-section aside { position: static; }
  .workflow div {
    grid-template-columns: 1fr;
  }
  .workflow b {
    grid-row: auto;
  }
  .intent-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  .section-copy {
    width: min(100% - 32px, 1200px);
  }
  .cta-row .btn-primary,
  main .btn-primary[href^="https://b9.game"] {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 14px;
    z-index: 80;
    min-height: 58px;
    border-radius: 18px;
    font-size: 18px;
  }
  .footer {
    padding-bottom: 112px;
  }
}
