:root {
  --bg: #080706;
  --bg-soft: #100d0b;
  --surface: #15110e;
  --surface-2: #1d1510;
  --ink: #fffaf1;
  --muted: #a79c90;
  --line: rgba(255, 208, 105, .15);
  --gold: #ffc928;
  --amber: #ff9418;
  --orange: #ff5b16;
  --red: #ef1c19;
  --gradient: linear-gradient(115deg, #ffe84a 0%, #ffb515 28%, #ff6b16 63%, #ef1b1c 100%);
  --gradient-soft: linear-gradient(135deg, rgba(255, 201, 40, .16), rgba(255, 91, 22, .04));
  --shadow: 0 28px 90px rgba(0, 0, 0, .55);
  --container: 1180px;
  --header-height: 82px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 20px); }
body { margin: 0; overflow-x: hidden; background: var(--bg); color: var(--ink); font-family: "Kanit", system-ui, sans-serif; font-weight: 300; line-height: 1.75; }
body.nav-open, body.dialog-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--gold); color: #1a0d03; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { position: relative; padding-block: clamp(80px, 9vw, 132px); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; clip-path: inset(50%); }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 9999; padding: 10px 16px; border-radius: 5px; background: var(--gold); color: #120a02; font-weight: 600; transform: translateY(-150%); transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); }
.page-noise { position: fixed; inset: 0; z-index: 999; pointer-events: none; opacity: .018; background-image: repeating-radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .5) 0 1px, transparent 1px 4px); background-size: 7px 7px; mix-blend-mode: soft-light; }

h1, h2, h3, p { margin-top: 0; }
h1, h2 { margin-bottom: 24px; font-family: "Montserrat", "Kanit", sans-serif; font-weight: 700; letter-spacing: -.045em; line-height: 1.08; }
h1 { font-size: clamp(2.65rem, 5vw, 5.25rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3.7rem); }
h3 { line-height: 1.25; }
h1 em, h2 em { display: inline; background: var(--gradient); background-clip: text; -webkit-background-clip: text; color: transparent; font-style: normal; }
p { color: #b7ada3; }
strong { font-weight: 600; }

.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 19px; color: #d1c3b5; font: 700 .66rem/1.2 "Montserrat", sans-serif; letter-spacing: .19em; }
.eyebrow > span { width: 34px; height: 2px; background: var(--gradient); box-shadow: 0 0 18px rgba(255, 143, 22, .45); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr); gap: clamp(40px, 7vw, 100px); align-items: end; margin-bottom: clamp(42px, 6vw, 76px); }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { margin: 0 0 4px; }
.section-heading--center { display: block; max-width: 820px; margin-inline: auto; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.section-heading--center > p { max-width: 650px; margin: 0 auto; }

.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 12px; padding: 13px 22px; border: 1px solid transparent; border-radius: 6px; background: var(--gradient); box-shadow: 0 14px 34px rgba(239, 85, 20, .2); color: #1b0e03; font-size: .93rem; font-weight: 600; line-height: 1.2; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 18px 42px rgba(239, 85, 20, .35); }
.button:focus-visible, .game-card__media:focus-visible, button:focus-visible, input:focus-visible, summary:focus-visible, .primary-nav a:focus-visible, .footer-nav a:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.button--small { min-height: 44px; padding: 10px 18px; font-size: .82rem; }
.button--ghost { border-color: rgba(255, 214, 118, .27); background: rgba(255, 255, 255, .025); box-shadow: none; color: #f3e9de; }
.button--ghost:hover { border-color: rgba(255, 204, 74, .55); background: rgba(255, 201, 40, .07); box-shadow: none; }
.text-link { display: inline-flex; align-items: center; gap: 10px; border-bottom: 1px solid rgba(255, 201, 40, .25); color: #eee2d6; font-weight: 500; }

/* Header */
.site-header { position: fixed; inset: 0 0 auto; z-index: 100; height: var(--header-height); border-bottom: 1px solid transparent; background: linear-gradient(180deg, rgba(8, 7, 6, .94), rgba(8, 7, 6, .72)); backdrop-filter: blur(18px); transition: height .25s ease, border-color .25s ease, box-shadow .25s ease; }
.site-header.is-scrolled { height: 72px; border-color: var(--line); box-shadow: 0 14px 40px rgba(0, 0, 0, .32); }
.header-inner { display: flex; height: 100%; align-items: center; gap: 30px; }
.brand { display: flex; flex: 0 0 auto; align-items: center; gap: 10px; line-height: 1; }
.brand img { width: 44px; height: 44px; object-fit: contain; }
.brand span { display: grid; gap: 4px; }
.brand strong { color: #fff; font: 800 1.25rem/1 "Montserrat", sans-serif; letter-spacing: .06em; }
.brand small { color: #8d8278; font: 600 .45rem/1 "Montserrat", sans-serif; letter-spacing: .16em; }
.primary-nav { display: flex; align-items: center; gap: clamp(13px, 1.7vw, 25px); margin-left: auto; }
.primary-nav a { position: relative; color: #cfc7be; font-size: .84rem; font-weight: 400; white-space: nowrap; transition: color .2s ease; }
.primary-nav a::after { position: absolute; right: 0; bottom: -11px; left: 0; height: 1px; background: var(--gradient); content: ""; transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.primary-nav a:hover, .primary-nav a.is-active { color: #fff; }
.primary-nav a.is-active::after, .primary-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; flex: 0 0 auto; align-items: center; gap: 8px; }
.header-actions .button { min-height: 42px; padding: 9px 15px; font-size: .78rem; }
.nav-toggle { display: none; width: 44px; height: 44px; margin-left: auto; padding: 10px; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; }
.nav-toggle span { display: block; width: 20px; height: 1px; margin: 5px auto; background: #fff; transition: transform .25s ease, opacity .25s ease; }

/* Hero */
.hero { position: relative; min-height: 860px; overflow: hidden; padding: calc(var(--header-height) + clamp(70px, 8vw, 120px)) 0 0; background: radial-gradient(circle at 74% 33%, rgba(255, 119, 15, .16), transparent 27%), radial-gradient(circle at 28% 16%, rgba(255, 206, 49, .07), transparent 25%), linear-gradient(180deg, #0d0907 0%, var(--bg) 90%); }
.hero::before { position: absolute; inset: 0; opacity: .17; background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px); background-size: 64px 64px; content: ""; mask-image: linear-gradient(180deg, #000, transparent 82%); }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-orb--one { top: 180px; right: -120px; width: 360px; height: 360px; border: 1px solid rgba(255, 181, 21, .1); box-shadow: inset 0 0 80px rgba(255, 80, 12, .04); }
.hero-orb--two { bottom: 40px; left: -160px; width: 420px; height: 420px; border: 1px solid rgba(255, 201, 40, .07); }
.top-banner { position: relative; z-index: 3; margin-bottom: clamp(52px, 7vw, 88px); }
.top-banner a { position: relative; display: block; overflow: hidden; border: 1px solid rgba(255, 202, 57, .32); border-radius: 15px; background: #170815; box-shadow: 0 30px 85px rgba(0, 0, 0, .5), 0 0 55px rgba(151, 19, 188, .08); }
.top-banner a::after { position: absolute; inset: 0; border: 1px solid rgba(255, 255, 255, .06); border-radius: inherit; content: ""; pointer-events: none; }
.top-banner img { width: 100%; height: auto; aspect-ratio: 3 / 1; object-fit: cover; transition: transform .6s cubic-bezier(.2, .8, .2, 1), filter .3s ease; }
.top-banner a:hover img { filter: brightness(1.05); transform: scale(1.012); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, .93fr) minmax(480px, 1.07fr); gap: clamp(60px, 8vw, 120px); align-items: center; }
.hero-copy { padding-bottom: 80px; }
.breadcrumbs { display: flex; align-items: center; gap: 8px; margin-bottom: 38px; color: #776e66; font-size: .72rem; }
.breadcrumbs a:hover { color: var(--gold); }
.hero h1 { max-width: 760px; margin-bottom: 27px; }
.hero-lead { max-width: 650px; margin-bottom: 34px; font-size: clamp(1rem, 1.4vw, 1.16rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 13px 26px; margin: 30px 0 0; padding: 0; list-style: none; color: #b2a89f; font-size: .78rem; }
.hero-points li { display: flex; align-items: center; gap: 8px; }
.hero-points span { display: grid; width: 21px; height: 21px; place-items: center; border: 1px solid rgba(255, 204, 64, .3); border-radius: 50%; color: var(--gold); font-size: .66rem; }
.hero-showcase { position: relative; min-height: 590px; perspective: 1200px; }
.showcase-card { position: absolute; overflow: hidden; border: 1px solid rgba(255, 210, 96, .28); border-radius: 18px; background: #120c08; box-shadow: 0 35px 90px rgba(0, 0, 0, .57); }
.showcase-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2, .8, .2, 1); }
.showcase-card:hover img { transform: scale(1.04); }
.showcase-card--main { z-index: 3; inset: 5% 13% 4% 9%; transform: rotate(-2deg); }
.showcase-card--top { z-index: 2; top: 0; right: -6%; width: 42%; height: 42%; transform: rotate(7deg); }
.showcase-card--bottom { z-index: 4; right: -1%; bottom: 0; width: 38%; height: 38%; transform: rotate(5deg); }
.showcase-badge { position: absolute; top: 18px; left: 18px; padding: 7px 12px; border: 1px solid rgba(255, 255, 255, .35); border-radius: 999px; background: rgba(5, 4, 3, .68); backdrop-filter: blur(9px); color: var(--gold); font: 700 .58rem/1 "Montserrat", sans-serif; letter-spacing: .12em; }
.showcase-stamp { position: absolute; z-index: 6; bottom: 10%; left: -5%; display: flex; width: 118px; height: 118px; align-items: center; justify-content: center; gap: 8px; border: 1px solid rgba(255, 221, 125, .4); border-radius: 50%; background: var(--gradient); box-shadow: 0 22px 52px rgba(238, 66, 16, .32); color: #1a0b02; transform: rotate(-8deg); }
.showcase-stamp strong { font: 800 2rem/1 "Montserrat", sans-serif; }
.showcase-stamp span { font-size: .65rem; font-weight: 600; line-height: 1.3; }
.hero-marquee { position: relative; z-index: 5; overflow: hidden; margin-top: 20px; border-block: 1px solid var(--line); background: rgba(255, 255, 255, .015); }
.hero-marquee div { width: max-content; padding-block: 20px; color: #665f58; font: 700 .62rem/1 "Montserrat", sans-serif; letter-spacing: .25em; white-space: nowrap; animation: marquee 28s linear infinite; }
.hero-marquee span { margin-inline: 26px; color: var(--amber); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Intro */
.intro-section { border-bottom: 1px solid var(--line); }
.split-intro { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(50px, 8vw, 120px); align-items: start; }
.split-intro h2 { margin-bottom: 0; }
.prose p { margin-bottom: 21px; font-size: 1.02rem; }
.prose strong { color: #f4eadf; }

/* Game library */
.games-section { background: linear-gradient(180deg, rgba(255, 150, 23, .035), transparent 20%), var(--bg-soft); }
.games-section .section-heading { grid-template-columns: minmax(0, 840px); }
.game-toolbar { position: relative; z-index: 5; display: grid; grid-template-columns: minmax(220px, 1fr) auto auto; gap: 20px; align-items: center; margin-bottom: 34px; padding: 14px; border: 1px solid var(--line); border-radius: 10px; background: rgba(19, 15, 12, .86); backdrop-filter: blur(16px); }
.game-search { display: flex; min-width: 0; align-items: center; gap: 12px; padding: 0 16px; border: 1px solid rgba(255, 217, 127, .13); border-radius: 6px; background: rgba(0, 0, 0, .2); }
.game-search > span:not(.sr-only) { color: #877b70; font-size: 1.4rem; }
.game-search input { width: 100%; height: 46px; border: 0; outline: 0; background: transparent; color: #fff; }
.game-search input::placeholder { color: #756c64; }
.game-filters { display: flex; flex-wrap: wrap; gap: 6px; }
.filter-button { min-height: 38px; padding: 8px 13px; border: 1px solid rgba(255, 217, 127, .13); border-radius: 5px; background: transparent; color: #a99f95; cursor: pointer; font-size: .73rem; transition: all .2s ease; }
.filter-button:hover, .filter-button.is-active { border-color: rgba(255, 197, 39, .4); background: var(--gradient); color: #180b02; }
.game-count { padding-right: 10px; color: #867c73; font-size: .74rem; white-space: nowrap; }
.game-count strong { color: var(--gold); font: 700 1rem/1 "Montserrat", sans-serif; }
.game-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: clamp(15px, 2vw, 24px); }
.game-card { min-width: 0; transition: opacity .25s ease, transform .25s ease; }
.game-card[hidden] { display: none; }
.game-card__media { position: relative; display: block; aspect-ratio: 1; overflow: hidden; border: 1px solid rgba(255, 202, 57, .16); border-radius: 10px; background: #16110d; box-shadow: 0 18px 44px rgba(0, 0, 0, .3); }
.game-card__media::before { position: absolute; inset: 0; z-index: 1; border: 1px solid transparent; border-radius: inherit; content: ""; transition: border-color .3s ease; }
.game-card__media img { width: 100%; height: 100%; object-fit: cover; transition: filter .45s ease, transform .55s cubic-bezier(.2, .8, .2, 1); }
.game-card__overlay { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; background: linear-gradient(180deg, rgba(8, 5, 3, .2), rgba(8, 5, 3, .91)); opacity: 0; transform: translateY(10px); transition: opacity .32s ease, transform .32s ease; }
.game-card__overlay::before { position: absolute; inset: 10px; border: 1px solid rgba(255, 220, 122, .25); border-radius: 6px; content: ""; }
.game-card__overlay strong { color: var(--gold); font: 800 clamp(.8rem, 1.2vw, 1.05rem)/1 "Montserrat", sans-serif; letter-spacing: .08em; }
.game-card__overlay small { margin-top: 8px; color: #d7c9bc; font-size: .66rem; }
.play-icon { display: grid; width: 42px; height: 42px; margin-bottom: 14px; place-items: center; border: 1px solid rgba(255, 255, 255, .4); border-radius: 50%; background: var(--gradient); box-shadow: 0 12px 28px rgba(238, 82, 20, .36); color: #160a02; font-size: .7rem; }
.game-card__media:hover::before, .game-card__media:focus-visible::before { border-color: rgba(255, 203, 48, .55); }
.game-card__media:hover img, .game-card__media:focus-visible img { filter: brightness(.58) saturate(.85); transform: scale(1.07); }
.game-card__media:hover .game-card__overlay, .game-card__media:focus-visible .game-card__overlay { opacity: 1; transform: translateY(0); }
.game-card__media--disabled { cursor: not-allowed; }
.game-card__media--disabled .game-card__overlay { opacity: 1; background: rgba(8, 6, 4, .68); transform: none; }
.game-card__media--disabled img { filter: grayscale(.3) brightness(.66); }
.game-card__meta { padding: 14px 3px 3px; }
.game-card__meta h3 { min-height: 2.55em; margin: 0 0 5px; color: #f6eee6; font: 600 .77rem/1.35 "Montserrat", "Kanit", sans-serif; overflow-wrap: anywhere; }
.game-card__meta span { color: #7f756d; font-size: .66rem; }
.no-results { padding: 60px 20px; border: 1px dashed var(--line); border-radius: 9px; text-align: center; }

/* Featured games */
.featured-section { background: #0a0807; }
.featured-list { border-top: 1px solid var(--line); }
.featured-game { display: grid; grid-template-columns: 58px 112px minmax(0, 1fr); gap: clamp(20px, 3vw, 42px); align-items: center; padding-block: 30px; border-bottom: 1px solid var(--line); }
.featured-number { align-self: start; padding-top: 8px; color: #564e47; font: 700 1rem/1 "Montserrat", sans-serif; }
.featured-game > img { width: 112px; height: 112px; object-fit: contain; object-position: center; border: 1px solid rgba(255, 205, 68, .2); border-radius: 8px; background: #100c09; box-shadow: 0 16px 35px rgba(0, 0, 0, .32); }
.featured-game h3 { margin: 0 0 12px; color: #fff6ec; font: 650 clamp(1rem, 1.45vw, 1.32rem)/1.55 "Montserrat", "Kanit", sans-serif; }
.featured-game p { max-width: 780px; margin-bottom: 16px; }
.game-kicker { margin-bottom: 8px !important; color: var(--amber) !important; font: 700 .58rem/1.2 "Montserrat", sans-serif; letter-spacing: .15em; }
.featured-game .source-stats { margin-bottom: 10px; color: #e7d3bd; font-size: .74rem; font-weight: 500; }
.featured-game dl { display: flex; flex-wrap: wrap; gap: 9px; margin: 0; }
.featured-game dl div { min-width: 110px; padding: 9px 12px; border: 1px solid var(--line); border-radius: 5px; background: rgba(255, 255, 255, .018); }
.featured-game dt { color: #776e65; font-size: .61rem; }
.featured-game dd { margin: 0; color: #f1e6da; font: 600 .76rem/1.4 "Montserrat", "Kanit", sans-serif; }

/* Original SEO article — preserved verbatim from the supplied copy */
.source-content { background: radial-gradient(circle at 92% 10%, rgba(255, 139, 19, .08), transparent 28%), #0c0907; }
.source-article { width: min(calc(100% - 40px), 1000px); }
.source-block { position: relative; padding: clamp(34px, 5vw, 58px); border: 1px solid var(--line); border-radius: 10px; background: linear-gradient(145deg, rgba(255, 201, 40, .035), rgba(255, 255, 255, .012)); box-shadow: 0 20px 55px rgba(0, 0, 0, .18); }
.source-block + .source-block { margin-top: 20px; }
.source-block::before { position: absolute; inset: 0 auto 0 0; width: 2px; border-radius: 10px 0 0 10px; background: var(--gradient); content: ""; opacity: .75; }
.source-block h2 { max-width: 800px; margin-bottom: 20px; font-size: clamp(1.7rem, 3.4vw, 2.65rem); }
.source-block h3 { margin: 26px 0 10px; color: #f4e9df; font-size: clamp(1rem, 1.8vw, 1.15rem); font-weight: 500; line-height: 1.75; }
.source-block p { max-width: 850px; margin: 0 0 14px; }
.source-list { display: grid; gap: 10px; margin: 18px 0 0; padding: 0; list-style: none; }
.source-list li { position: relative; padding: 14px 16px 14px 42px; border: 1px solid rgba(255, 205, 65, .1); border-radius: 6px; background: rgba(255, 255, 255, .018); color: #aca298; font-size: .86rem; line-height: 1.75; }
.source-list li::before { position: absolute; top: 18px; left: 17px; color: var(--gold); content: "✦"; font-size: .64rem; }
.source-list--numbered { counter-reset: source-steps; }
.source-list--numbered li { counter-increment: source-steps; }
.source-list--numbered li::before { top: 15px; content: counter(source-steps, decimal-leading-zero); font: 700 .6rem/1.5 "Montserrat", sans-serif; }
.source-block--faq p { padding: 16px 18px; border-left: 2px solid rgba(255, 196, 48, .42); background: rgba(255, 255, 255, .018); }
.source-block--commitment { border-color: rgba(255, 197, 44, .25); background: linear-gradient(135deg, rgba(255, 169, 17, .08), rgba(255, 255, 255, .015)); }
.source-warning { margin-top: 24px !important; padding: 16px 18px; border: 1px solid rgba(255, 188, 49, .2); border-radius: 6px; color: #d8c4ad; }

/* Benefits */
.benefits-section { overflow: hidden; background: radial-gradient(circle at 10% 50%, rgba(255, 141, 19, .11), transparent 30%), var(--bg-soft); }
.benefits-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(55px, 9vw, 130px); align-items: center; }
.benefits-copy { position: sticky; top: 120px; align-self: start; }
.benefits-copy > p:not(.eyebrow) { max-width: 520px; }
.benefit-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.benefit-cards article { min-height: 235px; padding: 29px; border: 1px solid var(--line); border-radius: 8px; background: linear-gradient(145deg, rgba(255, 201, 40, .055), rgba(255, 255, 255, .01)); }
.benefit-cards article:nth-child(even) { transform: translateY(36px); }
.benefit-cards article > span { display: grid; width: 34px; height: 34px; margin-bottom: 38px; place-items: center; border: 1px solid rgba(255, 201, 40, .22); border-radius: 50%; color: var(--gold); font: 700 .65rem/1 "Montserrat", sans-serif; }
.benefit-cards h3 { margin: 0 0 10px; color: #f6ede4; font-size: 1.05rem; }
.benefit-cards p { margin: 0; font-size: .82rem; }

/* Steps */
.how-section { background: #090706; }
.steps-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 0; padding: 0; list-style: none; counter-reset: steps; }
.steps-list li { position: relative; min-height: 310px; overflow: hidden; padding: 35px; border: 1px solid var(--line); border-radius: 9px; background: linear-gradient(150deg, #17110d, #0d0a08); }
.steps-list li::after { position: absolute; right: -20px; bottom: -50px; color: rgba(255, 200, 40, .035); font: 800 10rem/1 "Montserrat", sans-serif; content: attr(data-step); }
.steps-list li > span { display: inline-block; margin-bottom: 86px; color: var(--gold); font: 700 .7rem/1 "Montserrat", sans-serif; }
.steps-list h3 { margin: 0 0 12px; color: #fff6ec; font-size: 1.2rem; }
.steps-list p { margin: 0; font-size: .86rem; }
.steps-list li:nth-child(1)::after { content: "1"; }
.steps-list li:nth-child(2)::after { content: "2"; }
.steps-list li:nth-child(3)::after { content: "3"; }

/* Guide */
.guide-section { background: var(--bg-soft); }
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.guide-card { min-height: 270px; padding: clamp(26px, 3vw, 38px); border: 1px solid var(--line); border-radius: 8px; background: #13100d; }
.guide-card--wide { grid-column: span 2; }
.guide-card--accent { background: var(--gradient); }
.guide-card > span { color: var(--amber); font: 700 .58rem/1 "Montserrat", sans-serif; letter-spacing: .16em; }
.guide-card h3 { margin: 76px 0 12px; color: #f7eee5; font-size: 1.2rem; }
.guide-card p { margin: 0; font-size: .84rem; }
.guide-card--accent > span, .guide-card--accent h3, .guide-card--accent p { color: #1a0c03; }

/* Comparison */
.compare-section { background: radial-gradient(circle at 82% 50%, rgba(255, 110, 12, .09), transparent 35%), #090706; }
.compare-grid { display: grid; grid-template-columns: minmax(0, .75fr) minmax(520px, 1.25fr); gap: clamp(55px, 8vw, 115px); align-items: center; }
.compare-intro { max-width: 470px; }
.compare-table { overflow: hidden; border: 1px solid var(--line); border-radius: 9px; background: rgba(19, 15, 12, .75); }
.compare-row { display: grid; grid-template-columns: 1fr 1fr 1fr; border-bottom: 1px solid var(--line); }
.compare-row:last-child { border-bottom: 0; }
.compare-row > * { padding: 18px 20px; border-right: 1px solid var(--line); color: #afa59c; font-size: .78rem; }
.compare-row > *:last-child { border-right: 0; }
.compare-row strong { color: #e8ded4; }
.compare-row--head { background: rgba(255, 198, 41, .07); }
.compare-row--head span { color: var(--gold); font: 700 .62rem/1.3 "Montserrat", "Kanit", sans-serif; }
.compare-row .positive { color: #cde997; }

/* FAQ */
.faq-section { background: var(--bg-soft); }
.faq-grid { display: grid; grid-template-columns: minmax(0, .72fr) minmax(520px, 1.28fr); gap: clamp(60px, 9vw, 135px); }
.faq-grid > div:first-child > p:last-child { max-width: 430px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center; padding: 25px 0; color: #f5eee7; font-weight: 500; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { display: grid; width: 28px; height: 28px; place-items: center; border: 1px solid rgba(255, 204, 60, .25); border-radius: 50%; color: var(--gold); font-size: 1.1rem; transition: transform .25s ease, background .25s ease; }
.faq-list details[open] summary span { background: var(--gold); color: #160a02; transform: rotate(45deg); }
.faq-list details p { margin: -5px 50px 24px 0; font-size: .88rem; }

/* Final CTA */
.final-cta { background: #090706; }
.final-cta__card { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: clamp(45px, 7vw, 95px); align-items: center; overflow: hidden; min-height: 430px; padding: clamp(35px, 6vw, 80px); border: 1px solid rgba(255, 202, 46, .24); border-radius: 14px; background: linear-gradient(135deg, #231106, #100a07 54%, #170806); box-shadow: var(--shadow); }
.final-cta__card::after { position: absolute; top: -180px; right: -180px; width: 420px; height: 420px; border: 1px solid rgba(255, 201, 40, .08); border-radius: 50%; content: ""; }
.final-cta__media { position: relative; z-index: 2; display: grid; min-width: 0; place-items: center; }
.final-cta__media img { width: 100%; height: auto; object-fit: contain; border: 1px solid rgba(255, 208, 73, .3); border-radius: 12px; background: #160a06; box-shadow: 0 25px 55px rgba(0, 0, 0, .45); }
.final-cta__card > div:last-child { position: relative; z-index: 2; }
.final-cta__card > div:last-child > p:not(.eyebrow) { max-width: 620px; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); background: #070605; }
.footer-main { display: grid; grid-template-columns: minmax(240px, .7fr) minmax(560px, 1.3fr); gap: clamp(55px, 8vw, 120px); padding-block: 70px 55px; }
.brand--footer img { width: 56px; height: 56px; }
.footer-brand-block > p { max-width: 360px; margin: 22px 0 0; font-size: .8rem; }
.footer-warning { display: flex; align-items: center; gap: 10px; }
.footer-warning strong { display: grid; width: 35px; height: 35px; place-items: center; border: 1px solid rgba(255, 201, 40, .25); border-radius: 50%; color: var(--gold); }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 35px; }
.footer-nav div { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-nav strong { margin-bottom: 8px; color: #ece3da; font-size: .79rem; }
.footer-nav a { color: #847b73; font-size: .74rem; transition: color .2s ease; }
.footer-nav a:hover { color: var(--gold); }
.footer-bottom { display: grid; grid-template-columns: 1fr 1fr auto; gap: 30px; align-items: center; padding-block: 20px; border-top: 1px solid var(--line); }
.footer-bottom p, .footer-bottom a { margin: 0; color: #716a63; font-size: .67rem; }
.footer-bottom a:hover { color: #fff; }

/* Dialog */
.game-dialog { width: min(1320px, calc(100% - 28px)); max-width: none; height: min(900px, calc(100dvh - 28px)); max-height: none; padding: 0; overflow: hidden; border: 1px solid rgba(255, 204, 63, .35); border-radius: 12px; background: #0b0907; color: var(--ink); box-shadow: 0 40px 140px rgba(0, 0, 0, .82); }
.game-dialog::backdrop { background: rgba(3, 2, 2, .86); backdrop-filter: blur(9px); }
.game-dialog__panel { display: grid; height: 100%; grid-template-rows: auto minmax(0, 1fr) auto; }
.game-dialog header, .game-dialog footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 18px; border-bottom: 1px solid var(--line); background: #100d0a; }
.game-dialog header span { color: var(--amber); font: 700 .53rem/1 "Montserrat", sans-serif; letter-spacing: .15em; }
.game-dialog h2 { margin: 3px 0 0; font: 600 clamp(.88rem, 1.5vw, 1.1rem)/1.2 "Montserrat", "Kanit", sans-serif; letter-spacing: -.01em; }
.dialog-close { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: #fff; cursor: pointer; font-size: 1.6rem; line-height: 1; }
.dialog-close:hover { border-color: var(--gold); color: var(--gold); }
.game-dialog__frame { position: relative; min-height: 0; background: #050403; }
.game-dialog__frame iframe { width: 100%; height: 100%; border: 0; background: #050403; opacity: 0; transition: opacity .3s ease; }
.game-dialog__frame.is-loaded iframe { opacity: 1; }
.game-loader { position: absolute; inset: 0; display: grid; place-content: center; place-items: center; }
.game-loader span { width: 42px; height: 42px; border: 3px solid rgba(255, 201, 40, .12); border-top-color: var(--gold); border-radius: 50%; animation: spin .75s linear infinite; }
.game-loader p { margin: 13px 0 0; font-size: .72rem; }
.game-dialog__frame.is-loaded .game-loader { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }
.game-dialog footer { border-top: 1px solid var(--line); border-bottom: 0; }
.game-dialog footer p { margin: 0; color: #766e66; font-size: .65rem; }
.game-dialog footer a { color: var(--gold); font-size: .71rem; font-weight: 500; }
.sticky-demo { position: fixed; right: 18px; bottom: 18px; z-index: 90; display: none; align-items: center; gap: 8px; padding: 11px 16px; border: 1px solid rgba(255, 236, 157, .42); border-radius: 999px; background: var(--gradient); box-shadow: 0 14px 38px rgba(0, 0, 0, .5); color: #170a02; font-size: .78rem; font-weight: 600; }
.sticky-demo span { font-size: .64rem; }

/* Motion */
.js [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2, .75, .25, 1); }
.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
  .primary-nav { gap: 14px; }
  .primary-nav a { font-size: .75rem; }
  .header-actions .button--ghost { display: none; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr); gap: 45px; }
  .hero-showcase { min-height: 520px; }
  .game-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 920px) {
  :root { --header-height: 72px; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .site-header, .site-header.is-scrolled { height: var(--header-height); }
  .nav-toggle { display: block; }
  .nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .primary-nav { position: fixed; inset: var(--header-height) 0 auto; display: grid; max-height: 0; gap: 0; overflow: hidden; margin: 0; padding-inline: 20px; border-bottom: 1px solid transparent; background: rgba(8, 7, 6, .98); opacity: 0; transition: max-height .35s ease, opacity .25s ease, padding .35s ease, border-color .35s ease; }
  .nav-open .primary-nav { max-height: calc(100dvh - var(--header-height)); padding-block: 14px 24px; border-color: var(--line); opacity: 1; overflow-y: auto; }
  .primary-nav a { padding: 13px 5px; border-bottom: 1px solid rgba(255, 255, 255, .045); font-size: .88rem; }
  .primary-nav a::after { display: none; }
  .header-actions { margin-left: 0; }
  .header-actions .signup-link { min-height: 40px; padding: 8px 13px; }
  .hero { min-height: auto; padding-top: calc(var(--header-height) + 70px); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 0; text-align: center; }
  .breadcrumbs, .hero .eyebrow, .hero-points { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-showcase { width: min(620px, 100%); min-height: 550px; margin: 0 auto 70px; }
  .section-heading, .split-intro, .benefits-grid, .compare-grid, .faq-grid { grid-template-columns: 1fr; }
  .section-heading { gap: 25px; }
  .split-intro { gap: 30px; }
  .game-toolbar { grid-template-columns: 1fr auto; }
  .game-filters { grid-column: 1 / -1; grid-row: 2; }
  .game-count { grid-column: 2; grid-row: 1; }
  .game-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .benefits-copy { position: static; }
  .benefit-cards article:nth-child(even) { transform: none; }
  .compare-grid, .faq-grid { gap: 45px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand-block > p { max-width: 550px; }
}

@media (max-width: 720px) {
  .section { padding-block: 75px; }
  h1 { font-size: clamp(2.45rem, 12vw, 4rem); }
  h2 { font-size: clamp(1.9rem, 9vw, 3rem); }
  .hero-showcase { min-height: 470px; }
  .showcase-card--main { inset: 3% 9% 3% 4%; }
  .showcase-card--top { right: -2%; }
  .showcase-card--bottom { right: 0; }
  .showcase-stamp { left: 0; width: 98px; height: 98px; }
  .game-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .game-card__overlay { opacity: 1; justify-content: flex-end; padding-bottom: 15px; background: linear-gradient(180deg, transparent 46%, rgba(6, 4, 3, .93)); transform: none; }
  .game-card__overlay::before, .game-card__overlay .play-icon, .game-card__overlay small { display: none; }
  .game-card__overlay strong { padding: 8px 10px; border: 1px solid rgba(255, 214, 93, .3); border-radius: 999px; background: rgba(4, 3, 2, .72); font-size: .63rem; }
  .game-card__media:hover img, .game-card__media:focus-visible img { filter: none; transform: scale(1.03); }
  .game-card__media--disabled .game-card__overlay small { display: block; }
  .featured-game { grid-template-columns: 42px 92px minmax(0, 1fr); gap: 18px; }
  .featured-game > img { width: 92px; height: 92px; }
  .featured-game dl { grid-column: 1 / -1; }
  .benefit-cards, .steps-list, .guide-grid { grid-template-columns: 1fr; }
  .benefit-cards article { min-height: 205px; }
  .steps-list li { min-height: 270px; }
  .steps-list li > span { margin-bottom: 60px; }
  .guide-card--wide { grid-column: auto; }
  .guide-card { min-height: 245px; }
  .guide-card h3 { margin-top: 55px; }
  .final-cta__card { grid-template-columns: 1fr; }
  .final-cta__media { width: min(620px, 100%); margin-inline: auto; }
  .final-cta__card > div:last-child { text-align: center; }
  .final-cta__card .eyebrow, .final-cta__card .hero-actions { justify-content: center; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .footer-bottom { grid-template-columns: 1fr; gap: 8px; text-align: center; }
  .game-dialog footer p { display: none; }
  .game-dialog footer { justify-content: center; }
  .sticky-demo { display: inline-flex; }
}

@media (max-width: 520px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .brand span { display: none; }
  .header-inner { gap: 9px; }
  .header-actions .signup-link { font-size: .68rem; }
  .hero { padding-top: calc(var(--header-height) + 46px); }
  .hero-copy { text-align: left; }
  .breadcrumbs, .hero .eyebrow, .hero-points, .hero-actions { justify-content: flex-start; }
  .hero .button { flex: 1 1 140px; padding-inline: 14px; }
  .hero-showcase { min-height: 365px; margin-top: 12px; }
  .showcase-stamp { bottom: 4%; width: 82px; height: 82px; }
  .showcase-stamp strong { font-size: 1.45rem; }
  .showcase-stamp span { font-size: .52rem; }
  .showcase-badge { top: 10px; left: 10px; font-size: .48rem; }
  .game-toolbar { grid-template-columns: 1fr; }
  .game-count { grid-column: 1; grid-row: 2; padding-left: 4px; }
  .game-filters { grid-row: 3; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 3px; }
  .filter-button { flex: 0 0 auto; }
  .game-grid { gap: 12px; }
  .game-card__meta { padding-top: 10px; }
  .game-card__meta h3 { font-size: .66rem; }
  .game-card__meta span { font-size: .59rem; }
  .featured-game { grid-template-columns: 38px 82px minmax(0, 1fr); gap: 13px; }
  .featured-number { padding: 0; }
  .featured-game > img { width: 82px; height: 82px; }
  .featured-game dl { grid-column: 1 / -1; }
  .featured-game dl div { flex: 1 1 90px; min-width: 90px; }
  .benefit-cards { gap: 12px; }
  .benefit-cards article, .steps-list li, .guide-card { padding: 25px; }
  .compare-table { overflow-x: auto; }
  .compare-row { min-width: 520px; }
  .faq-list summary { font-size: .9rem; }
  .final-cta__card { padding-inline: 23px; }
  .footer-nav { grid-template-columns: 1fr; }
  .game-dialog { width: 100%; height: 100dvh; border: 0; border-radius: 0; }
  .game-dialog header { padding: 11px 13px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
}

@media (max-width: 820px) {
  .footer-main { grid-template-columns: 1fr; gap: 36px; }
  .footer-trust__logos { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-trust__heading { align-items: flex-start; flex-direction: column; }
  .footer-bottom { grid-template-columns: 1fr; gap: 8px; padding-block: 20px; text-align: center; }
  .footer-bottom a { justify-self: center; }
}

@media (max-width: 560px) {
  .footer-nav { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-trust__logos { grid-template-columns: 1fr; }
  .footer-trust__logo { min-height: 84px; }
}

@media print {
  .site-header, .hero-showcase, .hero-marquee, .game-toolbar, .game-dialog, .sticky-demo, .footer-nav, .hero-actions { display: none !important; }
  body { background: #fff; color: #111; }
  h1, h2, h3, p, .game-card__meta h3 { color: #111; }
  .section, .hero { min-height: 0; padding-block: 28px; background: #fff; }
  .hero { padding-top: 20px; }
  .game-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Footer matched to the homepage reference */
.site-footer { border-top: 1px solid var(--line); background: #060504; }
.footer-main { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(70px, 12vw, 180px); align-items: start; padding-block: 62px 48px; }
.footer-brand-block p { max-width: 440px; margin: 30px 0 0; color: #b4aaa1; }
.brand--footer img { width: 58px; height: 58px; }
.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; }
.footer-nav div { display: grid; align-content: start; gap: 10px; }
.footer-nav strong { margin-bottom: 5px; color: var(--gold); font: 700 .62rem/1 "Montserrat", sans-serif; letter-spacing: .15em; }
.footer-nav a { color: #c6bbb2; font-size: .86rem; }
.footer-nav a:hover { color: #fff; }
.footer-trust { padding-block: 34px 38px; border-block: 1px solid var(--line); background: rgba(255,255,255,.012); }
.footer-trust__heading { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-bottom: 26px; }
.footer-trust__heading span { color: var(--gold); font: 700 .58rem/1.2 "Montserrat", sans-serif; letter-spacing: .16em; }
.footer-trust__heading p { margin: 0; color: #716962; font-size: .72rem; }
.footer-trust__logos { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 12px; }
.footer-trust__logo { display: grid; min-height: 92px; place-items: center; padding: 19px; border: 1px solid rgba(255,255,255,.11); border-radius: 9px; background: rgba(255,255,255,.018); }
.footer-trust__logo img { width: auto; max-width: 100%; max-height: 54px; object-fit: contain; }
.footer-trust__logo--wide img { max-height: 60px; }
.footer-trust__logo--compact img { max-height: 62px; }
.footer-bottom { display: grid; min-height: 70px; grid-template-columns: 1fr 1fr 1fr; align-items: center; color: #726a64; font-size: .68rem; }
.footer-bottom p { margin: 0; }
.footer-bottom a { justify-self: end; }
.responsible-note { text-align: center; }
.responsible-note span { margin-right: 7px; color: var(--gold); font-weight: 600; }

@media (max-width: 820px) {
  .footer-main { grid-template-columns: 1fr; gap: 36px; }
  .footer-trust__logos { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-trust__heading { align-items: flex-start; flex-direction: column; }
  .footer-bottom { grid-template-columns: 1fr; gap: 8px; padding-block: 20px; text-align: center; }
  .footer-bottom a { justify-self: center; }
}

@media (max-width: 560px) {
  .footer-nav { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-trust__logos { grid-template-columns: 1fr; }
  .footer-trust__logo { min-height: 84px; }
}

