:root {
  --bg: #090a0f;
  --bg-2: #10131c;
  --panel: #151923;
  --panel-2: #1d2230;
  --ink: #f6f3e8;
  --muted: #b8bdc9;
  --line: rgba(246, 211, 122, 0.18);
  --gold: #f6d37a;
  --gold-2: #d9a739;
  --green: #15b889;
  --rose: #f0727f;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
  --container: 1180px;
  --article: 900px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(21, 184, 137, 0.16), transparent 34rem),
    radial-gradient(circle at 80% 10%, rgba(246, 211, 122, 0.12), transparent 30rem),
    var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.68;
  padding-bottom: 90px;
}

body.admin-bar .site-header {
  top: 32px;
}

a {
  color: inherit;
  text-decoration-color: rgba(246, 211, 122, 0.55);
  text-underline-offset: 0.18em;
}

a:hover,
a:focus-visible {
  color: var(--gold);
}

img {
  max-width: 100%;
  height: auto;
}

.screen-reader-text,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 10000;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  color: #08100d;
  background: var(--gold);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(9, 10, 15, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 24px;
}

.site-branding,
.brand-logo,
.custom-logo-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
  max-width: min(48vw, 220px);
}

.brand-wordmark {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-weight: 900;
  font-size: 25px;
  text-decoration: none;
}

.brand-wordmark::before {
  content: "";
  width: 34px;
  height: 34px;
  margin-right: 10px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--green));
}

.custom-logo,
.custom-logo-link img,
.site-branding img,
.brand-logo img,
.footer-brand img {
  display: block;
  width: auto;
  height: auto;
  max-width: 180px;
  max-height: 56px;
  object-fit: contain;
}

.footer-brand img {
  max-width: 150px;
  max-height: 48px;
}

.primary-navigation {
  display: flex;
  align-items: center;
}

.primary-menu,
.footer-menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.primary-menu a:hover,
.primary-menu a:focus-visible,
.current-menu-item > a {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.menu-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.site-main {
  overflow: hidden;
}

.wp-block-group__inner-container {
  max-width: 100%;
}

.home-entry-content > * {
  max-width: var(--container);
  margin-right: auto;
  margin-left: auto;
}

.wp-block-group,
.wp-block-columns,
.section-band,
.article-band,
.page-shell,
.archive-shell {
  max-width: var(--container);
  margin-right: auto;
  margin-left: auto;
  padding-right: 24px;
  padding-left: 24px;
}

.hero-section {
  min-height: 680px;
  padding-top: 74px;
  padding-bottom: 72px;
}

.hero-section > .wp-block-group__inner-container {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 40px;
  align-items: center;
}

.hero-copy {
  max-width: 680px;
}

.hero-copy h1,
.page-hero h1,
.archive-shell h1 {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 68px;
  line-height: 1.04;
}

.hero-copy p {
  max-width: 680px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 20px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.button-primary,
.button-secondary,
.wp-block-button__link,
.search-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button-primary,
.wp-block-button__link,
.search-submit {
  color: #11110d;
  background: var(--gold);
  box-shadow: 0 14px 32px rgba(246, 211, 122, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible,
.wp-block-button__link:hover,
.wp-block-button__link:focus-visible,
.search-submit:hover,
.search-submit:focus-visible {
  color: #090a0f;
  background: #ffe49b;
  transform: translateY(-1px);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.12);
}

.hero-visual,
.image-panel {
  position: relative;
  margin: 0;
}

.hero-visual img,
.image-panel img,
.wp-block-image img {
  display: block;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-visual::after {
  content: "18+";
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 11px;
  border-radius: 8px;
  color: #11110d;
  background: var(--gold);
  font-weight: 900;
}

.section-band {
  padding-top: 76px;
  padding-bottom: 76px;
}

.section-band h2,
.article-band h2,
.page-content h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 42px;
  line-height: 1.12;
}

.section-band > p,
.article-band > p,
.page-content p {
  color: var(--muted);
}

.quick-access {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.quick-access a,
.feature-card,
.game-card,
.review-card,
.step-card,
.info-card,
.faq-item,
.page-content details,
.post-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.quick-access a {
  display: block;
  min-height: 92px;
  padding: 18px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.quick-access span,
.card-note {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.feature-grid,
.game-grid,
.review-grid,
.step-grid,
.info-grid {
  display: grid;
  gap: 22px;
}

.feature-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

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

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

.feature-card,
.game-card,
.review-card,
.step-card,
.info-card {
  padding: 26px;
}

.feature-card h3,
.game-card h3,
.review-card h3,
.step-card h3,
.info-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.22;
}

.feature-card p,
.game-card p,
.review-card p,
.step-card p,
.info-card p {
  margin: 0;
  color: var(--muted);
}

.lead-copy {
  color: var(--ink);
  font-size: 19px;
  line-height: 1.72;
}

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

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

.seo-image-inline {
  max-width: 820px;
  margin: 34px auto;
}

.check-list,
.step-list,
.related-link-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.step-list {
  counter-reset: step;
}

.check-list li,
.step-list li,
.related-link-list li {
  position: relative;
  padding: 14px 16px 14px 42px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 18px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
}

.step-list li {
  counter-increment: step;
}

.step-list li::before {
  content: counter(step);
  position: absolute;
  top: 12px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  color: #09100d;
  background: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.payment-method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
}

.payment-method-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid rgba(246, 211, 122, 0.24);
  border-radius: 999px;
  color: var(--ink);
  background: linear-gradient(180deg, rgba(246, 211, 122, 0.14), rgba(21, 184, 137, 0.08));
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.game-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.hub-card,
.content-cta,
.related-links {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.hub-card {
  padding: 26px;
}

.hub-card h2 {
  margin-top: 0;
  font-size: 27px;
}

.hub-card p {
  min-height: 122px;
}

.content-cta {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin: 34px 0;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(246, 211, 122, 0.13), rgba(21, 184, 137, 0.09)),
    rgba(255, 255, 255, 0.04);
}

.content-cta h2 {
  margin: 0 0 8px;
  font-size: 30px;
}

.content-cta p {
  margin: 0;
}

.related-links {
  margin: 34px 0;
  padding: 26px;
}

.related-links h2 {
  margin-top: 0;
}

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

.topic-table {
  margin: 26px 0;
  overflow-x: auto;
}

.topic-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

.topic-table th,
.topic-table td {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
  vertical-align: top;
}

.topic-table th {
  color: var(--ink);
  background: rgba(246, 211, 122, 0.1);
}

.topic-table td {
  color: var(--muted);
}

.split-section {
  display: block;
}

.split-section > .wp-block-group__inner-container {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 34px;
  align-items: center;
}

.split-section--reverse > .wp-block-group__inner-container {
  grid-template-columns: minmax(320px, 1.05fr) minmax(0, 0.95fr);
}

.method-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.method-strip li {
  padding: 9px 13px;
  border: 1px solid rgba(246, 211, 122, 0.24);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(246, 211, 122, 0.08);
  font-size: 14px;
  font-weight: 800;
}

.notice-band {
  border-top: 1px solid rgba(246, 211, 122, 0.2);
  border-bottom: 1px solid rgba(246, 211, 122, 0.2);
  background: linear-gradient(90deg, rgba(246, 211, 122, 0.1), rgba(21, 184, 137, 0.08));
}

.article-band {
  padding-top: 84px;
  padding-bottom: 84px;
}

.article-shell {
  max-width: var(--article);
  margin: 0 auto;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.article-shell h2 {
  margin-top: 34px;
}

.article-shell h2:first-child {
  margin-top: 0;
}

.toc-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 30px;
  padding-left: 22px;
  color: var(--muted);
}

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

.faq-item,
.page-content details {
  padding: 20px 22px;
}

.faq-item summary,
.page-content summary {
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.faq-item p,
.page-content details p {
  margin: 12px 0 0;
}

.page-shell,
.archive-shell {
  padding-top: 62px;
  padding-bottom: 86px;
}

.page-hero,
.archive-shell {
  max-width: 900px;
}

.page-hero {
  margin: 0 auto 36px;
  text-align: center;
}

.page-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-content > * + * {
  margin-top: 22px;
}

.page-content ul,
.page-content ol {
  color: var(--muted);
}

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

.page-content .wp-block-image {
  margin: 32px 0;
}

.sitemap-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
  margin: 0;
  padding-left: 20px;
}

.search-form {
  display: flex;
  gap: 10px;
  max-width: 620px;
}

.search-field {
  min-height: 48px;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #08090d;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.05fr 1.3fr 1fr;
  gap: 34px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 58px 24px;
}

.site-footer p,
.footer-menu a,
.footer-contact {
  color: var(--muted);
  font-size: 14px;
}

.footer-menu {
  align-items: flex-start;
  gap: 10px 16px;
}

.footer-menu a {
  text-decoration: none;
}

.footer-contact {
  margin: 14px 0 0;
  padding-left: 18px;
}

.floating-entry {
  position: fixed;
  z-index: 70;
  right: 0;
  bottom: max(18px, env(safe-area-inset-bottom));
  left: 0;
  display: flex;
  justify-content: center;
  padding: 0 18px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 200ms ease, transform 200ms ease;
}

.floating-entry.is-visible {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}

.floating-entry__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 320px);
  min-height: 54px;
  padding: 14px 26px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #10110d;
  background: var(--gold);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
  font-weight: 900;
  text-decoration: none;
}

.floating-entry__button:hover,
.floating-entry__button:focus-visible {
  color: #090a0f;
  background: #ffe49b;
}

/* Homepage density and rhythm refinements */
.home-entry-content > .home-hero {
  max-width: min(1240px, calc(100% - 48px));
  margin-top: 26px;
  padding: 62px 42px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(246, 211, 122, 0.12), rgba(21, 184, 137, 0.08) 42%, rgba(240, 114, 127, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
}

.home-hero .hero-copy p:not(.eyebrow) {
  max-width: 620px;
}

.hero-chips,
.hero-signal-grid,
.terms-panel,
.game-pill-grid {
  display: grid;
  gap: 10px;
}

.hero-chips {
  grid-template-columns: repeat(3, minmax(0, max-content));
  margin-top: 24px;
}

.hero-chips span,
.hero-signal-grid span,
.terms-panel span,
.game-pill-grid a {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.065);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
  text-decoration: none;
}

.hero-chips span {
  padding: 8px 11px;
}

.hero-media {
  position: relative;
  min-width: 0;
}

.hero-media .hero-visual {
  margin: 0;
}

.hero-media .hero-visual img {
  min-height: 470px;
  object-fit: cover;
}

.hero-signal-grid {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hero-signal-grid span {
  padding: 10px 8px;
  background: rgba(9, 10, 15, 0.78);
  text-align: center;
  backdrop-filter: blur(10px);
}

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

.section-heading .wp-block-heading,
.section-heading p:last-child {
  margin-bottom: 0;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.quick-section {
  padding-top: 54px;
  padding-bottom: 56px;
}

.home-entry-content .quick-access {
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.home-entry-content .quick-access a {
  position: relative;
  min-height: 82px;
  padding: 16px 34px 15px 16px;
  border: 0;
  box-shadow: none;
}

.home-entry-content .quick-access a::after {
  content: ">";
  position: absolute;
  top: 16px;
  right: 15px;
  color: var(--gold);
  font-weight: 900;
}

.feature-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 22px;
  align-items: stretch;
}

.feature-card--lead {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 420px;
  padding: 34px;
  background:
    linear-gradient(145deg, rgba(21, 184, 137, 0.12), rgba(246, 211, 122, 0.06)),
    rgba(255, 255, 255, 0.04);
}

.feature-card--lead h3 {
  max-width: 620px;
  font-size: 31px;
}

.feature-mini-stack {
  display: grid;
  gap: 14px;
}

.feature-mini-stack .feature-card {
  padding: 22px;
}

.mini-checks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.mini-checks li {
  min-width: 0;
  padding: 11px 12px;
  border: 1px solid rgba(21, 184, 137, 0.28);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(21, 184, 137, 0.075);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.games-section {
  padding-top: 68px;
  padding-bottom: 68px;
}

.games-showcase {
  display: grid;
  grid-template-columns: minmax(340px, 0.95fr) minmax(0, 1.05fr);
  gap: 26px;
  align-items: stretch;
}

.games-showcase .image-panel {
  margin: 0;
}

.games-showcase .image-panel img {
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.games-route-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.games-route-panel h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 32px;
  line-height: 1.16;
}

.games-route-panel p {
  color: var(--muted);
}

.game-pill-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 20px 0 24px;
}

.game-pill-grid a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 104px;
  padding: 15px 16px;
  gap: 6px;
}

.game-pill-grid strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.2;
}

.game-pill-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.app-section,
.bonus-section,
.payment-section {
  position: relative;
}

.app-section .image-panel img,
.bonus-section .image-panel img,
.payment-section .image-panel img {
  max-height: 470px;
  object-fit: cover;
}

.terms-panel {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 22px 0;
}

.terms-panel span {
  padding: 12px 14px;
  color: var(--muted);
}

.home-entry-content .payment-method-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-entry-content .info-grid--two {
  margin-top: 18px;
}

.start-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: start-step;
}

.start-timeline li {
  position: relative;
  min-width: 0;
  padding: 54px 22px 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  counter-increment: start-step;
}

.start-timeline li::before {
  content: counter(start-step);
  position: absolute;
  top: 18px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #09100d;
  background: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.start-timeline h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.22;
}

.start-timeline p {
  margin: 0;
  color: var(--muted);
}

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

.review-card {
  position: relative;
}

.review-card::before {
  content: "";
  display: block;
  width: 38px;
  height: 4px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--green));
}

.notice-band {
  max-width: min(1240px, calc(100% - 48px));
  margin-top: 18px;
  margin-bottom: 18px;
  border: 1px solid rgba(246, 211, 122, 0.2);
  border-radius: var(--radius);
}

.notice-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: center;
}

.notice-visual {
  margin: 0;
}

.notice-visual img {
  max-height: 260px;
  object-fit: cover;
}

.article-band {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01));
}

.article-shell {
  max-width: var(--container);
  padding: 10px 0;
  border: 0;
  background: transparent;
}

.article-shell > p:first-of-type {
  max-width: 820px;
  color: var(--muted);
  font-size: 18px;
}

.article-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 32px;
  margin-top: 34px;
}

.article-card {
  min-width: 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(246, 211, 122, 0.22);
  background: transparent;
  box-shadow: none;
}

.article-card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 28px;
  margin-bottom: 12px;
  border-radius: 999px;
  color: #09100d;
  background: var(--gold);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.article-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.22;
}

.article-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}

.article-card p + p {
  margin-top: 12px;
}

.article-card a {
  color: var(--ink);
  font-weight: 800;
}

.toc-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding-left: 0;
  list-style-position: inside;
}

.toc-list li {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.home-entry-content > .faq-section {
  max-width: 980px;
}

@media (max-width: 980px) {
  .site-header__inner {
    padding: 12px 18px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .primary-navigation {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: none;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(9, 10, 15, 0.98);
  }

  .primary-navigation.is-open {
    display: block;
  }

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

  .primary-menu a {
    width: 100%;
  }

  .hero-section,
  .split-section,
  .split-section--reverse,
  .feature-grid,
  .feature-grid--four,
  .game-hub-grid,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: 0;
    padding-top: 48px;
    padding-bottom: 54px;
  }

  .hero-copy h1,
  .page-hero h1,
  .archive-shell h1 {
    font-size: 54px;
  }

  .section-band h2,
  .article-band h2,
  .page-content h2 {
    font-size: 36px;
  }

  .quick-access,
  .game-grid,
  .review-grid,
  .step-grid,
  .info-grid,
  .payment-method-grid,
  .related-link-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hub-card p {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
    padding-bottom: 86px;
  }

  body.admin-bar .site-header {
    top: 46px;
  }

  .site-branding,
  .brand-logo,
  .custom-logo-link {
    max-width: min(58vw, 160px);
  }

  .custom-logo,
  .custom-logo-link img,
  .site-branding img,
  .brand-logo img {
    max-width: 140px;
    max-height: 44px;
  }

  .wp-block-group,
  .wp-block-columns,
  .section-band,
  .article-band,
  .page-shell,
  .archive-shell,
  .site-footer__inner {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-copy h1,
  .page-hero h1,
  .archive-shell h1 {
    font-size: 38px;
  }

  .section-band h2,
  .article-band h2,
  .page-content h2 {
    font-size: 30px;
  }

  .hero-copy p {
    font-size: 18px;
  }

  .hero-actions,
  .link-row,
  .search-form {
    align-items: stretch;
    flex-direction: column;
  }

  .button-primary,
  .button-secondary,
  .wp-block-button__link,
  .search-submit {
    width: 100%;
  }

  .quick-access,
  .game-grid,
  .review-grid,
  .step-grid,
  .info-grid,
  .payment-method-grid,
  .related-link-list,
  .sitemap-list {
    grid-template-columns: 1fr;
  }

  .content-cta {
    align-items: stretch;
    flex-direction: column;
    padding: 22px;
  }

  .content-cta .button-primary {
    width: 100%;
  }

  .article-shell {
    padding: 26px 18px;
  }

  .section-band,
  .article-band {
    padding-top: 54px;
    padding-bottom: 54px;
  }
}

@media (max-width: 980px) {
  .home-entry-content > .home-hero,
  .notice-band {
    max-width: calc(100% - 36px);
  }

  .home-entry-content > .home-hero {
    padding: 48px 30px;
  }

  .hero-chips,
  .feature-story-grid,
  .games-showcase,
  .notice-layout,
  .review-section .review-grid,
  .start-timeline,
  .article-card-grid,
  .toc-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-section > .wp-block-group__inner-container,
  .split-section > .wp-block-group__inner-container,
  .split-section--reverse > .wp-block-group__inner-container {
    grid-template-columns: 1fr;
  }

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

  .feature-card--lead {
    min-height: 0;
  }

  .feature-card--lead h3,
  .games-route-panel h3 {
    font-size: 28px;
  }

  .games-showcase .image-panel img {
    min-height: 340px;
  }
}

@media (max-width: 640px) {
  .home-entry-content > .home-hero,
  .notice-band {
    max-width: calc(100% - 28px);
  }

  .home-entry-content > .home-hero {
    margin-top: 14px;
    padding: 34px 18px 20px;
  }

  .hero-chips,
  .hero-signal-grid,
  .feature-story-grid,
  .games-showcase,
  .notice-layout,
  .review-section .review-grid,
  .start-timeline,
  .article-card-grid,
  .toc-list,
  .mini-checks,
  .terms-panel {
    grid-template-columns: 1fr;
  }

  .hero-chips {
    margin-top: 18px;
  }

  .hero-media .hero-visual img {
    min-height: 320px;
  }

  .hero-signal-grid {
    position: static;
    margin-top: 10px;
  }

  .home-entry-content .quick-access {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-entry-content .quick-access a {
    min-height: 76px;
    padding: 14px 28px 13px 14px;
  }

  .feature-card--lead,
  .games-route-panel {
    padding: 22px;
  }

  .feature-card--lead h3,
  .games-route-panel h3 {
    font-size: 24px;
  }

  .game-pill-grid,
  .home-entry-content .payment-method-grid,
  .home-entry-content .info-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .game-pill-grid a,
  .home-entry-content .payment-method-grid span {
    min-height: 98px;
    font-size: 13px;
  }

  .games-showcase .image-panel img,
  .app-section .image-panel img,
  .bonus-section .image-panel img,
  .payment-section .image-panel img {
    min-height: 260px;
    max-height: none;
  }

  .start-timeline li {
    padding: 50px 18px 18px;
  }

  .notice-visual img {
    max-height: none;
  }
}

@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;
  }
}
