:root {
  --ink: #071015;
  --panel: #111b22;
  --panel-2: #17242d;
  --line: #2b3b45;
  --cream: #f7f3e7;
  --muted: #aebdc4;
  --gold: #ffd34d;
  --gold-2: #e5a823;
  --teal: #24d6b5;
  --coral: #ff6464;
  --blue: #7cb8ff;
  --green: #54d17a;
  --shadow: 0 20px 60px rgba(0, 0, 0, .28);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(36, 214, 181, .08), transparent 360px),
    var(--ink);
  color: var(--cream);
  font-family: Inter, "Segoe UI", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.wrap {
  width: calc(100% - 36px);
  max-width: var(--max);
  margin-inline: auto;
}

.agebar {
  background: #f7d253;
  color: #211400;
  padding: 8px 14px;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 16, 21, .94);
  backdrop-filter: blur(14px);
}

.site-nav__inner {
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav__inner > * {
  min-width: 0;
}

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

.brand img {
  width: 42px;
  height: 42px;
}

.brand span span {
  color: var(--gold);
}

.menu {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  min-width: 0;
}

.menu a:hover,
.menu a[aria-current="page"] {
  color: var(--gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 10px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--gold {
  background: linear-gradient(180deg, var(--gold), var(--gold-2));
  color: #211400;
}

.btn--ghost {
  border: 1px solid var(--line);
  color: var(--cream);
  background: rgba(255, 255, 255, .03);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero {
  padding: 42px 0 24px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
  gap: 28px;
  align-items: stretch;
}

.hero__grid > * {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 840px;
  margin: 10px 0 14px;
  font-size: clamp(40px, 5vw, 66px);
  overflow-wrap: break-word;
}

h2 {
  font-size: clamp(28px, 3vw, 40px);
}

h3 {
  font-size: 20px;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  max-width: 100%;
}

.hero-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 211, 77, .14), transparent 48%),
    linear-gradient(180deg, var(--panel-2), var(--panel));
  box-shadow: var(--shadow);
}

.hero-panel__top {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.hero-panel__top img {
  width: 110px;
  margin: 0 auto;
}

.hero-panel__rank {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.rank-row {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.rank-num {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
  background: rgba(255, 211, 77, .15);
  color: var(--gold);
  font-weight: 900;
}

.rank-row b {
  display: block;
}

.rank-row small {
  color: var(--muted);
}

.metric {
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 26px 0 10px;
}

.value-card,
.game-card,
.provider-card,
.article-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 27, 34, .86);
}

.value-card {
  padding: 18px;
}

.value-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--cream);
}

.value-card p,
.provider-card p,
.article-card p {
  color: var(--muted);
  font-size: 14px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 30px 0 16px;
}

.chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #142029;
  color: var(--muted);
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 800;
}

.chip.is-active,
.chip:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: #211400;
}

.section {
  padding: 34px 0;
}

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

.section-head p {
  max-width: 560px;
  color: var(--muted);
}

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

.game-card {
  overflow: hidden;
  min-height: 100%;
  transition: transform .18s ease, border-color .18s ease;
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.game-art {
  position: relative;
  display: grid;
  min-height: 142px;
  padding: 14px;
  background:
    linear-gradient(135deg, var(--art-a, #265c64), var(--art-b, #34275c));
}

.game-art__icon {
  align-self: end;
  font-size: 48px;
  line-height: 1;
}

.badge-row {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.badge {
  border-radius: 6px;
  background: rgba(7, 16, 21, .72);
  color: var(--gold);
  padding: 4px 7px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .4px;
  text-transform: uppercase;
}

.score {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: var(--gold);
  color: #211400;
  font-weight: 900;
}

.score.is-hot {
  background: var(--coral);
  color: #fff;
}

.game-card__body {
  padding: 14px;
}

.game-card h3 {
  margin-bottom: 4px;
}

.game-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
}

.provider {
  color: var(--gold);
  font-weight: 900;
}

.game-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.game-stats span {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 7px 8px;
  background: rgba(255, 255, 255, .03);
  color: var(--muted);
  font-size: 12px;
}

.game-stats b {
  display: block;
  color: var(--cream);
}

.card-link {
  display: block;
  margin-top: 12px;
  border-radius: 6px;
  background: rgba(36, 214, 181, .12);
  color: var(--teal);
  padding: 8px 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 900;
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 30px 0;
  border: 1px solid rgba(255, 211, 77, .5);
  border-radius: var(--radius);
  background:
    linear-gradient(115deg, rgba(255, 211, 77, .18), rgba(36, 214, 181, .1)),
    var(--panel);
  padding: 22px;
}

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

.seo-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 26px;
  align-items: start;
}

.seo-copy article {
  color: #dbe5e8;
}

.seo-copy h2 {
  margin: 26px 0 10px;
}

.seo-copy p,
.seo-copy li {
  margin-bottom: 12px;
  color: #c4d1d6;
}

.seo-copy ul {
  padding-left: 22px;
}

.side-panel {
  position: sticky;
  top: 90px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 18px;
}

.side-panel h3 {
  margin-bottom: 10px;
}

.side-panel a {
  display: block;
  border-top: 1px solid var(--line);
  padding: 10px 0;
  color: var(--muted);
  font-weight: 800;
}

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

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

.provider-card {
  padding: 18px;
}

.provider-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.provider-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--mark-a, var(--gold)), var(--mark-b, var(--teal)));
  color: #061015;
  font-weight: 900;
}

.provider-list {
  display: grid;
  gap: 7px;
  margin-top: 14px;
}

.provider-list span {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px 9px;
  color: var(--muted);
  font-size: 13px;
}

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

.article-card {
  padding: 18px;
}

.article-card small {
  color: var(--teal);
  font-weight: 900;
  text-transform: uppercase;
}

.article-card h3 {
  margin: 8px 0 10px;
}

.data-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 27, 34, .72);
}

.data-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  border-bottom: 1px solid var(--line);
  padding: 12px 13px;
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}

.data-table th {
  background: rgba(255, 255, 255, .04);
  color: var(--cream);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .7px;
  text-transform: uppercase;
}

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

.data-table td {
  color: #c4d1d6;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.status-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .035);
  padding: 14px;
}

.status-card b {
  display: block;
  color: var(--gold);
  font-size: 22px;
  line-height: 1.1;
}

.status-card span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.process-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 15px;
}

.process-card small {
  color: var(--teal);
  font-weight: 900;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.process-card h3 {
  margin: 8px 0;
  font-size: 18px;
}

.process-card p {
  color: var(--muted);
  font-size: 13px;
}

.page-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.page-media img {
  width: 100%;
  min-height: 220px;
  object-fit: cover;
}

.page-media__body {
  padding: 16px;
}

.page-media__body p {
  color: var(--muted);
  font-size: 14px;
}

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

.priority-list a,
.priority-list span {
  display: block;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, .03);
  padding: 10px 12px;
  color: var(--muted);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.priority-list a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.disclaimer {
  border: 1px solid rgba(255, 100, 100, .45);
  border-radius: var(--radius);
  background: rgba(255, 100, 100, .08);
  color: #ffdede;
  padding: 16px;
  font-size: 14px;
}

.site-footer {
  margin-top: 34px;
  border-top: 1px solid var(--line);
  background: #060c10;
  color: var(--muted);
  padding: 30px 0;
  font-size: 13px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 22px;
}

.site-footer h4 {
  margin-bottom: 10px;
  color: var(--cream);
}

.site-footer a {
  display: block;
  padding: 3px 0;
}

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

.legal {
  margin-top: 22px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

@media (max-width: 980px) {
  .hero__grid,
  .seo-copy {
    grid-template-columns: 1fr;
  }

  .values,
  .provider-grid,
  .article-grid,
  .status-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .side-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-nav__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 12px 0;
  }

  .menu {
    width: 100%;
    margin-left: 0;
    overflow-x: auto;
    padding-bottom: 2px;
    max-width: 100%;
  }

  .nav-actions {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .nav-actions .btn {
    flex: 1;
    min-width: 0;
    padding-inline: 10px;
  }

  h1 {
    font-size: 36px;
  }

  .hero__actions .btn {
    flex: 1 1 100%;
    white-space: normal;
    text-align: center;
  }

  .hero-panel__top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .values,
  .provider-grid,
  .article-grid,
  .game-grid,
  .status-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-head,
  .cta-strip {
    align-items: flex-start;
    flex-direction: column;
  }
}
