/* ============================================================
   THE GAMBLE GUIDE — www.thegambleguide.com
   Stylesheet: Editorial Dark / Casino Noir
   Typography: Cormorant Garamond (display) + IBM Plex Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=IBM+Plex+Sans:wght@300;400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  --ink:          #0B0D0C;
  --ink-2:        #11140F;
  --ink-3:        #181C16;
  --felt:         #0E2A1F;
  --felt-2:       #16412F;
  --gold:         #C9A14A;
  --gold-light:   #E5C475;
  --gold-deep:    #8E7232;
  --bone:         #EDE6D3;
  --bone-2:       #C7BFA8;
  --bone-3:       #7A7460;
  --crimson:      #B83C2A;
  --line:         rgba(201,161,74,0.18);
  --line-strong:  rgba(201,161,74,0.4);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'IBM Plex Sans', system-ui, sans-serif;
  --font-mono:    'IBM Plex Mono', Menlo, monospace;

  --max-w:        1280px;
  --gutter:       clamp(20px, 4vw, 48px);
  --radius-sm:    4px;
  --radius:       8px;
  --radius-lg:    14px;

  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(201,161,74,0.04) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.05 0 0 0 0 0.05 0 0 0 0 0.05 0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  background-attachment: fixed;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.25s var(--ease); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }

.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
section { padding: clamp(64px, 9vw, 128px) 0; position: relative; }

/* ── HEADER ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11,13,12,0.85);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand {
  display: flex; align-items: baseline; gap: 8px;
  font-family: var(--font-display);
  font-size: 26px; font-weight: 600; color: var(--bone);
  letter-spacing: -0.01em;
}
.brand-mark {
  display: inline-block; width: 8px; height: 8px;
  background: var(--gold); border-radius: 50%;
  box-shadow: 0 0 12px rgba(201,161,74,0.6);
}
.brand em { font-style: italic; color: var(--gold); font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  display: inline-block; padding: 9px 16px;
  font-size: 13.5px; font-weight: 500; color: var(--bone-2);
  border-radius: var(--radius-sm); transition: all 0.2s var(--ease);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; left: 16px; right: 16px; bottom: 4px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--bone); }
.nav-links a:hover::after, .nav-links a.is-active::after { transform: scaleX(1); }
.nav-links a.is-active { color: var(--gold); }
.nav-cta {
  margin-left: 12px; padding: 10px 20px !important;
  background: var(--gold); color: var(--ink) !important;
  font-weight: 600 !important; border-radius: var(--radius-sm);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold-light); transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,161,74,0.25);
}
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span {
  width: 22px; height: 1.5px; background: var(--bone);
  transition: 0.25s var(--ease);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; font-family: var(--font-body);
  font-size: 14px; font-weight: 600; letter-spacing: 0.02em;
  border-radius: var(--radius-sm); cursor: pointer;
  transition: all 0.25s var(--ease); white-space: nowrap; text-decoration: none;
}
.btn-gold { background: var(--gold); color: var(--ink); border: 1px solid var(--gold); }
.btn-gold:hover {
  background: var(--gold-light); border-color: var(--gold-light); color: var(--ink);
  transform: translateY(-2px); box-shadow: 0 12px 32px rgba(201,161,74,0.28);
}
.btn-ghost { background: transparent; color: var(--bone); border: 1px solid var(--line-strong); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,161,74,0.05); }
.btn-arrow::after { content: '→'; font-family: var(--font-display); font-size: 18px; transition: transform 0.25s var(--ease); }
.btn-arrow:hover::after { transform: translateX(4px); }

/* ── HERO ── */
.hero { padding: clamp(80px, 12vw, 160px) 0 clamp(80px, 10vw, 140px); position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; top: -10%; right: -5%;
  width: 60%; height: 80%;
  background: radial-gradient(ellipse at center, rgba(201,161,74,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: end; position: relative; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 112px);
  font-weight: 500; line-height: 0.95;
  letter-spacing: -0.025em; color: var(--bone);
  margin: 24px 0 28px;
}
.hero h1 .ital { font-style: italic; font-weight: 500; color: var(--gold); }
.hero h1 .underline { position: relative; display: inline-block; }
.hero h1 .underline::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0.05em;
  height: 6px; background: var(--gold); opacity: 0.5;
}
.hero-lede {
  font-size: 18px; line-height: 1.65; color: var(--bone-2);
  max-width: 540px; margin-bottom: 36px; font-weight: 400;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-meta {
  display: flex; flex-direction: column; gap: 28px;
  padding-bottom: 12px; border-left: 1px solid var(--line); padding-left: 32px;
}
.hero-meta-item { display: flex; flex-direction: column; }
.hero-meta-item .num {
  font-family: var(--font-display); font-size: 56px; font-weight: 500;
  color: var(--gold); line-height: 1; letter-spacing: -0.02em;
}
.hero-meta-item .num em { font-style: italic; font-size: 0.7em; color: var(--gold-light); }
.hero-meta-item .lbl {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--bone-3); margin-top: 6px;
}

/* Marquee */
.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 22px 0; background: var(--ink-2);
  overflow: hidden; position: relative;
}
.marquee-track {
  display: flex; gap: 60px;
  animation: marquee 50s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--font-display); font-style: italic;
  font-size: 22px; color: var(--bone-3); white-space: nowrap;
  display: inline-flex; align-items: center; gap: 60px;
}
.marquee-track span::after { content: '✦'; color: var(--gold); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── SECTION HEADERS ── */
.s-head {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: end; gap: 40px;
  margin-bottom: 56px; padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.s-head-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 500; line-height: 1; color: var(--bone);
  letter-spacing: -0.02em; max-width: 700px;
}
.s-head-title em { font-style: italic; color: var(--gold); }
.s-head-num {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.22em; color: var(--gold); white-space: nowrap;
}
.s-head-link {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--bone-2); white-space: nowrap;
}
.s-head-link:hover { color: var(--gold); }
.s-head-c { text-align: center; }
.s-head-c .eyebrow { justify-content: center; }
.s-head-c .eyebrow::before { display: none; }
.s-head-c h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500; line-height: 1; color: var(--bone);
  letter-spacing: -0.02em; margin: 18px 0 12px;
}
.s-head-c h2 em { font-style: italic; color: var(--gold); }
.s-head-c .sub { color: var(--bone-2); max-width: 580px; margin: 0 auto; font-size: 17px; }

/* ── GAMES GRID ── */
.games {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  border-top: 1px solid var(--line); border-left: 1px solid var(--line);
}
.game {
  position: relative; padding: 48px 40px 44px;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  transition: background 0.4s var(--ease);
  text-decoration: none; display: block; color: inherit; overflow: hidden;
}
.game::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(201,161,74,0.08) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.game:hover { background: var(--ink-2); }
.game:hover::before { opacity: 1; }
.game-num {
  font-family: var(--font-mono); font-size: 11px; color: var(--bone-3);
  letter-spacing: 0.18em; margin-bottom: 28px; display: block;
}
.game-glyph {
  font-family: var(--font-display); font-size: 84px; font-weight: 500;
  line-height: 1; color: var(--gold); margin-bottom: 24px; font-style: italic;
}
.game-title {
  font-family: var(--font-display); font-size: 36px; font-weight: 600;
  color: var(--bone); line-height: 1.05; margin-bottom: 14px; letter-spacing: -0.01em;
}
.game-desc {
  color: var(--bone-2); font-size: 15px; line-height: 1.7;
  margin-bottom: 28px; max-width: 460px;
}
.game-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px; border-top: 1px solid var(--line); gap: 16px;
}
.game-stat {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--bone-3);
}
.game-stat strong {
  color: var(--gold); font-weight: 500; letter-spacing: 0;
  font-family: var(--font-display); font-size: 16px; text-transform: none; font-style: italic;
}
.game-link {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); display: inline-flex; align-items: center; gap: 10px;
}
.game-link::after {
  content: '→'; font-family: var(--font-display); font-size: 18px;
  transition: transform 0.25s var(--ease);
}
.game:hover .game-link::after { transform: translateX(6px); }

/* ── FEATURED ── */
.featured {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 0;
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: var(--ink-2);
}
.featured-art {
  background:
    radial-gradient(circle at 30% 30%, rgba(201,161,74,0.18), transparent 50%),
    linear-gradient(135deg, var(--felt) 0%, var(--ink) 100%);
  position: relative; min-height: 380px; padding: 48px;
  display: flex; flex-direction: column; justify-content: space-between;
  border-right: 1px solid var(--line);
}
.featured-art::after {
  content: '♠ ♥ ♦ ♣'; position: absolute; bottom: 32px; right: 36px;
  font-size: 28px; color: var(--gold); letter-spacing: 8px; opacity: 0.55;
}
.featured-art .badge {
  align-self: flex-start; font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink); background: var(--gold); padding: 6px 12px; border-radius: 2px;
}
.featured-art h3 {
  font-family: var(--font-display); font-size: 56px; line-height: 0.95;
  color: var(--bone); font-weight: 500; letter-spacing: -0.02em;
}
.featured-art h3 em { font-style: italic; color: var(--gold-light); }
.featured-body { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.featured-body h4 {
  font-family: var(--font-display); font-size: 28px; font-weight: 600;
  color: var(--bone); margin-bottom: 14px; line-height: 1.15;
}
.featured-body p { color: var(--bone-2); margin-bottom: 24px; font-size: 15px; }
.featured-list { margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px; }
.featured-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 14.5px; color: var(--bone-2); line-height: 1.5;
}
.featured-list li::before { content: '✦'; color: var(--gold); flex-shrink: 0; font-size: 12px; margin-top: 5px; }

/* ── STAT BAND ── */
.stats {
  background: var(--ink-2);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 64px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat { text-align: center; padding: 20px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display); font-size: 64px; font-weight: 500;
  color: var(--gold); line-height: 1; letter-spacing: -0.02em;
}
.stat-num .ital { font-style: italic; }
.stat-lbl {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--bone-3); margin-top: 14px;
}
.stat-cap {
  font-family: var(--font-display); font-style: italic; font-size: 14px;
  color: var(--bone-2); margin-top: 6px;
}

/* ── ARTICLE PAGES ── */
.page-head {
  padding: clamp(60px, 9vw, 120px) 0 clamp(48px, 6vw, 80px);
  border-bottom: 1px solid var(--line); position: relative; overflow: hidden;
}
.page-head::before {
  content: ''; position: absolute; top: 0; right: -10%;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse at center, rgba(201,161,74,0.08), transparent 60%);
  pointer-events: none;
}
.crumbs {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--bone-3); margin-bottom: 32px;
}
.crumbs a { color: var(--bone-3); }
.crumbs a:hover { color: var(--gold); }
.crumbs .sep { color: var(--gold); opacity: 0.5; }
.page-head h1 {
  font-family: var(--font-display); font-size: clamp(44px, 6.5vw, 88px);
  font-weight: 500; line-height: 0.98; letter-spacing: -0.025em;
  color: var(--bone); max-width: 900px; margin-bottom: 24px;
}
.page-head h1 em { font-style: italic; color: var(--gold); }
.page-head .lede {
  font-size: 19px; color: var(--bone-2); max-width: 640px;
  line-height: 1.55; font-weight: 300;
}
.page-meta { display: flex; gap: 28px; margin-top: 36px; flex-wrap: wrap; }
.page-meta span {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--bone-3);
}
.page-meta strong { color: var(--gold); font-weight: 500; }

.article { display: grid; grid-template-columns: 1fr 320px; gap: 80px; align-items: start; }
.prose { max-width: 720px; font-size: 17px; line-height: 1.8; color: var(--bone); }
.prose > * + * { margin-top: 1.4em; }
.prose h2 {
  font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 500; line-height: 1.1; letter-spacing: -0.015em;
  color: var(--bone); margin-top: 2em; margin-bottom: 0.5em;
  padding-top: 1em; border-top: 1px solid var(--line); position: relative;
}
.prose h2::before {
  content: ''; position: absolute; top: -1px; left: 0;
  width: 56px; height: 1px; background: var(--gold);
}
.prose h2 em { font-style: italic; color: var(--gold); }
.prose h3 {
  font-family: var(--font-display); font-size: 26px; font-weight: 600;
  line-height: 1.2; color: var(--bone); margin-top: 2em; margin-bottom: 0.4em;
}
.prose h3 em { font-style: italic; color: var(--gold); font-weight: 500; }
.prose p { color: var(--bone); }
.prose strong { color: var(--bone); font-weight: 600; }
.prose a {
  color: var(--gold); border-bottom: 1px solid var(--line-strong);
  transition: 0.2s var(--ease);
}
.prose a:hover { color: var(--gold-light); border-bottom-color: var(--gold); }
.prose ul, .prose ol { padding-left: 0; list-style: none; }
.prose ul li, .prose ol li {
  position: relative; padding-left: 32px;
  margin-bottom: 12px; color: var(--bone);
}
.prose ul li::before {
  content: '✦'; position: absolute; left: 0; top: 0;
  color: var(--gold); font-size: 14px; line-height: 1.8;
}
.prose ol { counter-reset: nums; }
.prose ol li { counter-increment: nums; padding-left: 44px; }
.prose ol li::before {
  content: counter(nums, decimal-leading-zero);
  position: absolute; left: 0; top: 0;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.05em;
  color: var(--gold); font-weight: 500; line-height: 2.2;
}
.prose blockquote {
  border-left: 2px solid var(--gold); padding: 16px 0 16px 28px;
  margin: 32px 0; font-family: var(--font-display); font-style: italic;
  font-size: 22px; line-height: 1.4; color: var(--bone);
}

.pull {
  margin: 48px 0; padding: 36px 40px;
  background: var(--ink-2); border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  position: relative;
}
.pull::before {
  content: '“'; position: absolute; top: 8px; left: 16px;
  font-family: var(--font-display); font-size: 80px;
  color: var(--gold); opacity: 0.25; line-height: 1;
}
.pull p {
  font-family: var(--font-display); font-size: 22px; font-style: italic;
  line-height: 1.45; color: var(--bone); margin: 0 !important;
}

.info-box {
  background: linear-gradient(135deg, var(--ink-2) 0%, rgba(14,42,31,0.4) 100%);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 32px; margin: 36px 0;
}
.info-box h4 {
  font-family: var(--font-display); font-size: 22px; font-weight: 600;
  color: var(--gold); margin-bottom: 10px; letter-spacing: -0.005em;
}
.info-box h4 em { font-style: italic; }
.info-box p, .info-box li { color: var(--bone-2); font-size: 15.5px; }
.info-box ul, .info-box ol { margin-top: 8px !important; }
.info-box ul li::before { color: var(--gold); }

.table-wrap { overflow-x: auto; margin: 32px 0; }
.tbl { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.tbl th {
  text-align: left; padding: 14px 18px; background: var(--ink-2);
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold);
  border-bottom: 1px solid var(--line-strong);
}
.tbl td {
  padding: 14px 18px; border-bottom: 1px solid var(--line);
  color: var(--bone); vertical-align: top;
}
.tbl tbody tr { transition: background 0.2s var(--ease); }
.tbl tbody tr:hover { background: rgba(201,161,74,0.04); }
.tbl .pos { color: #6FBF8C; font-weight: 600; }
.tbl .neg { color: var(--crimson); font-weight: 600; }
.tbl .neu { color: var(--gold); font-weight: 600; }
.tbl strong { color: var(--bone); font-weight: 600; }

/* ── SIDEBAR ── */
.sidebar { position: sticky; top: 100px; }
.widget {
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px; margin-bottom: 20px;
}
.widget h5 {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--line);
}
.widget ul li { margin-bottom: 6px; }
.widget ul li a {
  display: flex; justify-content: space-between; padding: 10px 0;
  font-size: 14px; color: var(--bone-2);
  border-bottom: 1px dashed var(--line); transition: 0.2s var(--ease);
}
.widget ul li:last-child a { border-bottom: none; }
.widget ul li a:hover { color: var(--gold); padding-left: 6px; }
.widget ul li a span {
  font-family: var(--font-mono); font-size: 11px; color: var(--bone-3);
}

.aff {
  background:
    radial-gradient(ellipse at top, rgba(201,161,74,0.15) 0%, transparent 60%),
    linear-gradient(180deg, var(--ink-2) 0%, var(--ink) 100%);
  border: 1px solid var(--line-strong);
  padding: 32px 28px 28px; text-align: center; position: relative; overflow: hidden;
}
.aff::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.aff-stars { color: var(--gold); font-size: 16px; letter-spacing: 4px; margin-bottom: 12px; }
.aff h5 {
  font-family: var(--font-display); font-size: 26px; font-weight: 500;
  color: var(--bone); margin-bottom: 8px; border: none; padding: 0;
  text-transform: none; letter-spacing: -0.015em;
}
.aff h5 em { font-style: italic; color: var(--gold); }
.aff p { font-size: 14px; color: var(--bone-2); margin-bottom: 20px; }
.aff-bonus {
  display: inline-block; background: rgba(201,161,74,0.08);
  border: 1px solid var(--line-strong); color: var(--gold);
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 2px; margin-bottom: 18px;
}
.aff .btn { width: 100%; justify-content: center; }
.aff-fine {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.16em; color: var(--bone-3);
  margin-top: 12px; text-transform: uppercase;
}
.resp { background: rgba(184,60,42,0.06); border: 1px solid rgba(184,60,42,0.2); }
.resp h5 { color: var(--crimson); }
.resp .helpline {
  font-family: var(--font-display); font-size: 24px; font-weight: 600;
  color: var(--gold); letter-spacing: 0.04em; margin: 8px 0 4px;
}

/* ── RANK LIST ── */
.rank-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.rank {
  display: grid; grid-template-columns: 80px 2fr 1.4fr 1.4fr 1fr 160px;
  align-items: center; gap: 24px; padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s var(--ease);
}
.rank:hover { background: rgba(201,161,74,0.025); }
.rank-num {
  font-family: var(--font-display); font-size: 64px; font-weight: 500;
  color: var(--gold); line-height: 1; letter-spacing: -0.04em; font-style: italic;
}
.rank-name {
  font-family: var(--font-display); font-size: 28px; font-weight: 600;
  color: var(--bone); line-height: 1.1; margin-bottom: 4px;
}
.rank-tag {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--bone-3);
}
.rank-rating { display: flex; flex-direction: column; gap: 4px; }
.rank-rating .stars { color: var(--gold); font-size: 14px; letter-spacing: 3px; }
.rank-rating .num {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--bone-3); letter-spacing: 0.06em;
}
.rank-bonus { display: flex; flex-direction: column; gap: 2px; }
.rank-bonus strong {
  font-family: var(--font-display); font-size: 22px; font-weight: 600;
  color: var(--gold); font-style: italic;
}
.rank-bonus span {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--bone-3);
}
.rank-best { font-family: var(--font-display); font-size: 17px; font-style: italic; color: var(--bone); }

/* ── CTA BANNER ── */
.cta-banner {
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(201,161,74,0.18), transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(14,42,31,0.5), transparent 60%),
    var(--ink-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: clamp(48px, 6vw, 80px) clamp(32px, 5vw, 72px);
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before, .cta-banner::after {
  content: ''; position: absolute;
  width: 220px; height: 220px;
  border: 1px solid var(--gold); border-radius: 50%;
  opacity: 0.15; pointer-events: none;
}
.cta-banner::before { top: -110px; left: -110px; }
.cta-banner::after { bottom: -110px; right: -110px; }
.cta-banner h2 {
  font-family: var(--font-display); font-size: clamp(36px, 5vw, 56px);
  font-weight: 500; line-height: 1; color: var(--bone);
  letter-spacing: -0.02em; margin-bottom: 18px; position: relative;
}
.cta-banner h2 em { font-style: italic; color: var(--gold); }
.cta-banner p {
  color: var(--bone-2); max-width: 540px; margin: 0 auto 32px;
  font-size: 17px; position: relative;
}
.cta-banner-actions {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative;
}
.cta-fine {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--bone-3); margin-top: 24px; position: relative;
}

/* ── FAQ ── */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; padding: 28px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-family: var(--font-display); font-size: 22px; font-weight: 600;
  color: var(--bone); cursor: pointer; transition: color 0.2s var(--ease);
  letter-spacing: -0.01em;
}
.faq-q:hover { color: var(--gold); }
.faq-icon {
  font-family: var(--font-display); font-size: 28px; font-weight: 400;
  color: var(--gold); transition: transform 0.3s var(--ease);
  flex-shrink: 0; line-height: 1;
}
.faq-item.is-open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-item.is-open .faq-a { max-height: 600px; }
.faq-a-inner {
  padding: 0 0 32px; font-size: 16px; line-height: 1.75;
  color: var(--bone-2); max-width: 720px;
}

/* ── BLOG GRID ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog-card {
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: all 0.3s var(--ease);
  display: flex; flex-direction: column;
}
.blog-card:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.blog-card-art {
  height: 180px;
  background:
    radial-gradient(circle at 30% 50%, rgba(201,161,74,0.2), transparent 60%),
    linear-gradient(135deg, var(--felt) 0%, var(--ink) 100%);
  position: relative; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 80px; font-style: italic; color: var(--gold);
  border-bottom: 1px solid var(--line);
}
.blog-card-art.alt-1 { background: radial-gradient(circle at 70% 30%, rgba(184,60,42,0.18), transparent 60%), linear-gradient(135deg, var(--ink-2), var(--ink)); }
.blog-card-art.alt-2 { background: radial-gradient(circle at 50% 50%, rgba(201,161,74,0.24), transparent 60%), linear-gradient(135deg, var(--ink-3), var(--ink)); }
.blog-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.blog-card-cat {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px;
}
.blog-card-title {
  font-family: var(--font-display); font-size: 24px; font-weight: 600;
  line-height: 1.15; color: var(--bone); margin-bottom: 12px;
}
.blog-card-title a { color: inherit; }
.blog-card-title a:hover { color: var(--gold); }
.blog-card-excerpt {
  color: var(--bone-2); font-size: 14.5px; line-height: 1.6;
  flex: 1; margin-bottom: 20px;
}
.blog-card-foot {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--bone-3);
  padding-top: 16px; border-top: 1px solid var(--line);
}

/* ── FOOTER ── */
.site-footer {
  background: var(--ink-2); border-top: 1px solid var(--line);
  margin-top: 80px; padding: 80px 0 32px; position: relative;
}
.site-footer::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 120px; height: 1px; background: var(--gold);
}
.foot-resp {
  background: rgba(184,60,42,0.04); border: 1px solid rgba(184,60,42,0.18);
  border-radius: var(--radius); padding: 20px 28px; margin-bottom: 56px;
  text-align: center; font-size: 14px; color: var(--bone-2);
}
.foot-resp strong { color: var(--bone); }
.foot-resp a { color: var(--gold); }
.foot-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px; margin-bottom: 56px;
}
.foot-brand .brand { margin-bottom: 20px; font-size: 28px; }
.foot-brand p { color: var(--bone-2); font-size: 14.5px; max-width: 320px; line-height: 1.65; }
.foot-col h6 {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px;
}
.foot-col ul li { margin-bottom: 10px; }
.foot-col ul li a { color: var(--bone-2); font-size: 14px; font-weight: 400; }
.foot-col ul li a:hover { color: var(--bone); }
.foot-bottom {
  border-top: 1px solid var(--line); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--bone-3);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-meta { border-left: none; padding-left: 0; flex-direction: row; gap: 40px; flex-wrap: wrap; }
  .featured { grid-template-columns: 1fr; }
  .featured-art { border-right: none; border-bottom: 1px solid var(--line); min-height: 280px; }
  .article { grid-template-columns: 1fr; gap: 56px; }
  .sidebar { position: static; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .rank { grid-template-columns: 60px 1.5fr 1fr 1fr 140px; }
  .rank-best { display: none; }
}
@media (max-width: 720px) {
  body { font-size: 15.5px; }
  .nav-links {
    position: absolute; top: 76px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ink-2); border-bottom: 1px solid var(--line);
    padding: 16px;
    transform: translateY(-110%); transition: transform 0.3s var(--ease);
  }
  .nav-links.is-open { transform: translateY(0); }
  .nav-links a { padding: 14px 16px; border-bottom: 1px solid var(--line); }
  .nav-links a::after { display: none; }
  .nav-cta { margin-left: 0 !important; margin-top: 8px; text-align: center; }
  .nav-toggle { display: flex; }
  .games { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); padding-bottom: 32px; margin-bottom: 32px; }
  .blog-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .s-head { grid-template-columns: 1fr; gap: 16px; }
  .s-head-num, .s-head-link { display: none; }
  .rank { grid-template-columns: 50px 1fr; gap: 16px 20px; padding: 24px 0; }
  .rank-num { font-size: 44px; grid-row: span 4; }
  .rank-rating, .rank-bonus { grid-column: 2; }
  .rank > a { grid-column: 2; justify-self: start; }
  .pull, .info-box { padding: 24px; margin: 28px 0; }
  .pull p { font-size: 18px; }
  .featured-art, .featured-body { padding: 32px 28px; }
  .featured-art h3 { font-size: 40px; }
}
@media (max-width: 480px) {
  .hero-meta-item .num { font-size: 44px; }
  .hero-meta { gap: 28px; }
  .game { padding: 36px 28px 32px; }
  .game-glyph { font-size: 64px; }
  .game-title { font-size: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .marquee-track { animation: none; }
}
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }
