:root {
  color-scheme: dark;
  --bg: #101214;
  --panel: #181c1f;
  --panel-2: #20262a;
  --text: #f4f1e8;
  --muted: #b8c0b8;
  --line: rgba(244, 241, 232, 0.16);
  --green: #8fd36d;
  --gold: #f0c15a;
  --red: #e06a5f;
  --cyan: #63c7c7;
  --ink: #0b0d0e;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(16, 18, 20, 0.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand,
.top-nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--ink);
  background: var(--green);
  border: 2px solid rgba(255, 255, 255, 0.28);
  font-weight: 900;
}

.top-nav a,
.site-footer a {
  color: var(--muted);
  font-size: 0.94rem;
}

.top-nav a:hover,
.site-footer a:hover {
  color: var(--text);
}

.hero {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 18, 20, 0.92), rgba(16, 18, 20, 0.62) 42%, rgba(16, 18, 20, 0.28)),
    linear-gradient(0deg, rgba(16, 18, 20, 0.68), rgba(16, 18, 20, 0.08) 48%);
}

.hero-content {
  position: relative;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 90px 0 150px;
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(3.1rem, 7vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: #d8ded4;
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  font-weight: 800;
}

.button.primary {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
}

.ticker {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 14px clamp(18px, 4vw, 54px);
  background: #151819;
  border-bottom: 1px solid var(--line);
}

.ticker span {
  flex: 0 0 auto;
  padding: 8px 12px;
  color: #dce3da;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.9rem;
}

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

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 42px;
  align-items: end;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.2;
  letter-spacing: 0;
}

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

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 24px;
}

.search-wrap {
  display: grid;
  gap: 8px;
  min-width: min(360px, 100%);
}

.search-wrap label {
  color: var(--muted);
  font-size: 0.86rem;
}

input[type="search"] {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  color: var(--text);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 0;
  font: inherit;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
}

.filter {
  min-height: 38px;
  padding: 0 13px;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
  font: inherit;
  font-weight: 750;
}

.filter.is-active {
  color: var(--ink);
  background: var(--green);
  border-color: var(--green);
}

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

.guide-card,
.strategy-item,
.plan-list article {
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.guide-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
}

.tag {
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 5px 9px;
  color: var(--ink);
  background: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
}

.guide-card p {
  margin-bottom: 24px;
}

.guide-card a {
  margin-top: auto;
  color: var(--gold);
  font-weight: 800;
}

.guide-card.is-hidden {
  display: none;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 46px;
  align-items: start;
}

.game-table {
  border: 1px solid var(--line);
  background: var(--panel);
}

.table-row {
  display: grid;
  grid-template-columns: 86px 160px 1fr;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.table-row:last-child {
  border-bottom: 0;
}

.table-head {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ad-band {
  width: min(980px, calc(100% - 36px));
  min-height: 110px;
  margin: 10px auto;
  display: grid;
  place-items: center;
  padding: 20px;
  color: var(--muted);
  text-align: center;
  background: repeating-linear-gradient(135deg, #151819 0 12px, #1d2224 12px 24px);
  border: 1px dashed rgba(244, 241, 232, 0.3);
}

.ad-band span {
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ad-band strong {
  color: var(--text);
  font-size: 1.25rem;
}

.ad-band p {
  margin: 0;
}

.article-ad {
  width: 100%;
  margin: 34px 0;
}

.ad-slot-pending {
  opacity: 0.72;
}

.strategy-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.number {
  display: block;
  margin-bottom: 30px;
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 900;
}

.plan-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.latest-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.latest-list a {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.latest-list span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.latest-list strong {
  font-size: 1.08rem;
}

.latest-list p {
  margin: 0;
  color: var(--muted);
}

.launch-plan {
  border-top: 1px solid var(--line);
}

.checklist {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  padding: 15px 18px;
  background: var(--panel);
  border-left: 4px solid var(--gold);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 4vw, 54px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 6px 0 0;
}

.page {
  min-height: calc(100vh - 180px);
}

.text-page {
  max-width: 820px;
}

.text-page h1 {
  max-width: 820px;
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  line-height: 1;
}

.text-page h2 {
  margin-top: 34px;
  font-size: 1.45rem;
}

.text-page a {
  color: var(--gold);
  font-weight: 800;
}

.article-shell {
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  padding: 62px 0 90px;
}

.article h1 {
  max-width: 880px;
  font-size: clamp(2.7rem, 5.8vw, 5.4rem);
  line-height: 0.98;
}

.article h2 {
  margin-top: 42px;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
}

.article h3 {
  margin-top: 24px;
}

.article p,
.article li {
  color: #cbd3c8;
  font-size: 1.04rem;
}

.article-meta {
  margin: 16px 0 28px;
  color: var(--green);
  font-size: 0.92rem;
  font-weight: 800;
}

.lead {
  max-width: 820px;
  color: #e5eadf;
  font-size: 1.22rem;
}

.quick-box {
  margin: 34px 0;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: 8px;
}

.quick-box h2 {
  margin-top: 0;
}

.article ul {
  padding-left: 22px;
}

.article li + li {
  margin-top: 8px;
}

@media (max-width: 900px) {
  .site-header,
  .section-head,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .top-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-content {
    padding: 80px 0 120px;
  }

  .intro-band,
  .split,
  .guide-grid,
  .strategy-grid,
  .plan-list,
  .latest-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 590px;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .table-row {
    grid-template-columns: 58px 1fr;
  }

  .table-row span:last-child {
    grid-column: 2;
    color: var(--muted);
  }
}
