:root {
  --primary: #cf9a3e;
  --primary-rgb: 207,154,62;
  --jade: #0e3d2a;
  --jade-rgb: 14,61,42;
  --bg: #080a07;
  --surface: #0f1a0c;
  --surface2: #162013;
  --text: #f0ede6;
  --text-2: #c4bfb8;
  --text-3: #a8a49c;
  --text-muted: #a8a49c;
  --border: rgba(156,98,32,0.22);
  --font-display: Georgia, "Times New Roman", Times, serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --radius: 6px;
  --r-sm: 6px;
  --r-md: 10px;
  --max-w: 1200px;
  --sidebar-w: 300px;
  --hdr-h: 64px;
  --accent: #9c6220;
  --accent-hover: #b87328;
  --transition: 0.18s ease;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.72;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.28;
  color: var(--text);
}
h1 { font-size: clamp(1.6rem,3.5vw,2.4rem); }
h2 { font-size: clamp(1.25rem,2.5vw,1.75rem); margin-bottom: 0.75rem; }
h3 { font-size: clamp(1.05rem,2vw,1.3rem); margin-bottom: 0.5rem; }
h4 { font-size: 1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

ul,ol { padding-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: 0.25rem; }

strong { color: var(--text); font-weight: 700; }
em { font-style: italic; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 9999;
  padding: 0.5rem 1rem;
  background: var(--primary);
  color: #1a1204;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 700;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--jade);
  border-bottom: 2px solid var(--primary);
  box-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo img,
.site-logo svg { height: 40px; width: auto; }
.header-spacer { flex: 1; }

.site-nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}
.site-nav a {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 600;
  transition: color var(--transition);
}
.site-nav a:hover { color: var(--text); text-decoration: none; }

.nav-play {
  display: none;
  align-items: center;
  background: var(--primary);
  color: #1a1204;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: var(--r-sm);
  text-decoration: none;
  white-space: nowrap;
}
.nav-play:hover { background: var(--accent-hover); text-decoration: none; }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1.1rem;
  background: var(--primary);
  color: #1a1204;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.header-cta:hover { background: #b87328; transform: translateY(-1px); text-decoration: none; }

.lang-switcher { position: relative; }
.lang-current {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.7rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.82rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition);
}
.lang-current:hover { background: rgba(255,255,255,0.14); }
.lang-current img { width: 20px; height: 14px; object-fit: cover; border-radius: 2px; }
.lang-arrow { font-size: 0.65rem; margin-left: 0.2rem; transition: transform var(--transition); }
.lang-switcher.open .lang-arrow { transform: rotate(180deg); }
.lang-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 200px;
  max-width: min(92vw,420px);
  max-height: min(70vh,440px);
  overflow-y: auto;
  padding: 0.75rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.7);
  z-index: 200;
}
.lang-switcher.open .lang-dropdown {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 0.25rem;
}
.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.lang-dropdown a:hover { background: rgba(156,98,32,0.18); color: var(--text); text-decoration: none; }
.lang-dropdown a img { width: 20px; height: 14px; object-fit: cover; border-radius: 2px; flex-shrink: 0; }
.lang-dropdown a.active { color:#c9954a; font-weight: 700; }

.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-img-wrap { position: absolute; inset: 0; }
.hero-bg { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(8,10,7,0.88) 0%,
    rgba(8,10,7,0.82) 30%,
    rgba(8,10,7,0.32) 60%,
    rgba(8,10,7,0.00) 85%);
}
.hero-body {
  position: relative;
  z-index: 2;
  padding: 2.5rem 1.5rem;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero-lead {
  color: #f5ebd9;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  text-shadow: 0 2px 6px rgba(0,0,0,0.95), 0 0 12px rgba(0,0,0,0.8);
}
.hero h1 {
  color: #fff;
  max-width: 680px;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.95), 0 0 16px rgba(0,0,0,0.85), 0 0 4px rgba(0,0,0,0.9);
}
.hero h1 em {
  color: var(--primary);
  font-style: normal;
  text-shadow: 0 2px 8px rgba(0,0,0,0.95), 0 0 16px rgba(0,0,0,0.85);
}
.hero-sub {
  color: #f5ebd9;
  max-width: 520px;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 6px rgba(0,0,0,0.95), 0 0 10px rgba(0,0,0,0.8);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.6rem;
  background: var(--primary);
  color: #1a1204;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(156,98,32,0.4);
}
.btn-primary:hover { background: #b87328; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(156,98,32,0.55); text-decoration: none; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.4rem;
  background: transparent;
  color: #f5ebd9;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid rgba(245,235,217,0.5);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.btn-secondary:hover { border-color:var(--primary); color:#c9954a; background: rgba(156,98,32,0.1); text-decoration: none; }

.breadcrumb { background: var(--surface); border-bottom: 1px solid var(--border); padding: 0.55rem 0; }
.breadcrumb ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 0.3rem; align-items: center; font-size: 0.82rem; color: var(--text-muted); }
.breadcrumb li+li::before { content: "/"; margin-right: 0.3rem; color: var(--text-muted); }
.breadcrumb a { color:#c9954a; }
.breadcrumb [aria-current="page"] { color: var(--text-muted); }

.page-body { padding: 2.5rem 0 4rem; }
.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--sidebar-w);
  gap: 2.5rem;
  align-items: start;
}

article { min-width: 0; }
article.content-main { min-width: 0; }
article section { margin-bottom: 2.5rem; }
article h2 {
  color: var(--primary);
  border-bottom: 2px solid var(--border);
  padding-bottom: 0.4rem;
  margin-bottom: 1rem;
}
article h3 { color: var(--text); margin-top: 1.2rem; }

article figure {
  margin: 1.5rem 0;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
article figure img {
  border-radius: 8px;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}
article figcaption {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 0.6rem 0.9rem;
  border-top: 1px solid var(--border);
  font-style: italic;
}

.infographic-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
  justify-content: flex-start;
}
.infographic-row img,
.infographic-row svg,
.infographic-figure img {
  max-width: min(400px, 70%);
  width: 100%;
  height: auto;
}

.demo-section {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
}
.demo-section h2 { color: var(--primary); margin-bottom: 0.5rem; }
.demo-wrap {
  position: relative;
  width: 100%;
  max-width: 720px;
  aspect-ratio: 16 / 9;
  margin: 1rem auto 0;
  overflow: hidden;
  background: #000;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  scroll-margin-top: calc(var(--hdr-h) + 1rem);
}
.demo-poster {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.demo-poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35);
  z-index: 1;
}
.demo-poster-content {
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius);
  max-width: 280px;
  position: relative;
  z-index: 2;
  text-align: center;
}
.demo-poster-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.btn-play-demo {
  background: var(--primary);
  color: #1a1204;
  border: none;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}
.btn-play-demo:hover { background: #b87328; }
.demo-hint {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.5rem;
  margin-bottom: 0;
}
.demo-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: none;
}
.demo-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.6rem;
}

.paytable-wrap { overflow-x: auto; margin: 1rem 0; border-radius: var(--radius); border: 1px solid var(--border); }
.paytable-wrap table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.paytable-wrap th { background: var(--jade); color: var(--primary); font-family: var(--font-display); font-size: 0.78rem; letter-spacing: 0.05em; text-transform: uppercase; padding: 0.6rem 0.75rem; text-align: left; white-space: nowrap; }
.paytable-wrap td { padding: 0.5rem 0.75rem; border-bottom: 1px solid rgba(156,98,32,0.1); color: var(--text); vertical-align: middle; }
.paytable-wrap tr:last-child td { border-bottom: none; }
.paytable-wrap tr:nth-child(even) td { background: rgba(14,61,42,0.2); }
.paytable-wrap tr:hover td { background: rgba(156,98,32,0.08); }
.paytable-wrap td:nth-child(n+2) { text-align: center; }
.sym-premium { color: var(--primary); font-weight: 700; }

.quick-facts-table-wrap { overflow-x: auto; margin: 1rem 0; border-radius: var(--radius); border: 1px solid var(--border); }
.quick-facts-table { width: 100%; min-width: 340px; border-collapse: collapse; font-size: 0.88rem; }
.qf-scroll { margin: 0; }
.quick-facts-table thead th { background: var(--jade); color: var(--primary); font-family: var(--font-display); font-size: 0.74rem; letter-spacing: 0.01em; text-transform: uppercase; padding: 0.6rem 0.45rem; text-align: left; }
.quick-facts-table tbody td { padding: 0.55rem 0.45rem; border-bottom: 1px solid rgba(156,98,32,0.1); vertical-align: top; }
.quick-facts-table tbody tr:last-child td { border-bottom: none; }
.quick-facts-table tbody tr:nth-child(even) td { background: rgba(14,61,42,0.15); }
.quick-facts-table td:first-child { color: var(--text-muted); font-size: 0.82rem; font-weight: 600; white-space: nowrap; }
.quick-facts-table td:nth-child(2) { color: var(--text); font-weight: 700; }
.quick-facts-table td:nth-child(3) { color: var(--text-muted); font-size: 0.78rem; }

.session-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.75rem;
  margin: 1.25rem 0;
}
.stat-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem 0.75rem; text-align: center; }
.stat-value { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--primary); line-height: 1.1; margin-bottom: 0.25rem; }
.stat-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }

.checkpoint-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 1.25rem 0;
}
.checkpoint-gallery .cp-figure img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
  height: auto;
  cursor: zoom-in;
  border-radius: 4px;
}

.rules-gallery-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin: 1.25rem 0;
}
.rules-gallery-section .rf img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
  height: auto;
  cursor: zoom-in;
  border-radius: 4px;
}

.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin: 1rem 0; }
.pros-box,
.cons-box { background: var(--surface); border-radius: var(--radius); padding: 1.1rem 1.25rem; border: 1px solid var(--border); }
.pros-box { border-top: 3px solid #4a9b5f; }
.cons-box { border-top: 3px solid #b35252; }
.pros-box h3 { color: #4a9b5f; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.75rem; margin-top: 0; }
.cons-box h3 { color: #e08a8a; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.75rem; margin-top: 0; }
.pros-box ul,
.cons-box ul { list-style: none; padding: 0; margin: 0; }
.pros-box li,
.cons-box li { padding: 0.3rem 0; font-size: 0.9rem; display: flex; gap: 0.5rem; align-items: flex-start; }
.pros-box li::before { content: "+"; color: #4a9b5f; font-weight: 700; flex-shrink: 0; }
.cons-box li::before { content: "-"; color: #e08a8a; font-weight: 700; flex-shrink: 0; }

.comparison-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); margin: 1rem 0; }
.comparison-wrap table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.comparison-wrap th { background: var(--jade); color: var(--primary); font-family: var(--font-display); font-size: 0.78rem; letter-spacing: 0.05em; text-transform: uppercase; padding: 0.6rem 0.85rem; text-align: left; }
.comparison-wrap td { padding: 0.55rem 0.85rem; border-bottom: 1px solid rgba(156,98,32,0.1); vertical-align: middle; }
.comparison-wrap tr:last-child td { border-bottom: none; }
.comparison-wrap tr.highlight-row td { background: rgba(156,98,32,0.12); font-weight: 700; }
.comparison-wrap td:nth-child(n+2) { text-align: center; }

.page-layout { }

.demo-label { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.25rem; }
.demo-sublabel { font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-bottom: 0.75rem; }

.pros-col { background: var(--surface); border-radius: var(--radius); padding: 1.1rem 1.25rem; border: 1px solid var(--border); border-top: 3px solid #4a9b5f; }
.cons-col { background: var(--surface); border-radius: var(--radius); padding: 1.1rem 1.25rem; border: 1px solid var(--border); border-top: 3px solid #b35252; }
.pros-col h3 { color: #4a9b5f; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.75rem; margin-top: 0; }
.cons-col h3 { color: #e08a8a; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.75rem; margin-top: 0; }
.pros-col ul, .cons-col ul { list-style: none; padding: 0; margin: 0; }
.pros-col li, .cons-col li { padding: 0.3rem 0; font-size: 0.9rem; display: flex; gap: 0.5rem; align-items: flex-start; }
.pros-col li::before { content: "+"; color: #4a9b5f; font-weight: 700; flex-shrink: 0; }
.cons-col li::before { content: "-"; color: #e08a8a; font-weight: 700; flex-shrink: 0; }

.comparison-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.comparison-table th { background: var(--jade); color: var(--primary); font-family: var(--font-display); font-size: 0.78rem; letter-spacing: 0.05em; text-transform: uppercase; padding: 0.6rem 0.85rem; text-align: left; }
.comparison-table td { padding: 0.55rem 0.85rem; border-bottom: 1px solid rgba(156,98,32,0.1); vertical-align: middle; }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(odd) td { background: rgba(14,61,42,0.1); }
.comparison-table td:nth-child(n+2) { text-align: center; }

.eeat-author { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.eeat-author img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }

.infographic-volatility, .infographic-rtp, .infographic-session { display: block; width: 100%; max-width: 360px; height: auto; margin: 0.75rem 0; }

.toc-collapse { }
.facts-card { }

.session-progression { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin: 1.25rem 0; }
.session-progression figure { margin: 0; border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; background: var(--surface); }
.session-progression figure img { aspect-ratio: 16/9; object-fit: cover; width: 100%; cursor: zoom-in; }
.session-progression figcaption { font-size: 0.77rem; padding: 0.5rem 0.7rem; background: var(--surface); border-top: 1px solid var(--border); }

.faq-list { list-style: none; padding: 0; margin: 0; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 0.6rem; background: var(--surface); overflow: hidden; }
.faq-item summary { padding: 0.9rem 1.1rem; cursor: pointer; font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: var(--text); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 0.75rem; transition: background var(--transition); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "\25BC"; font-size: 0.65rem; color: var(--primary); transition: transform var(--transition); flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item summary:hover { background: rgba(156,98,32,0.08); }
.faq-answer { padding: 0.1rem 1.1rem 1rem; font-size: 0.9rem; color: var(--text-muted); border-top: 1px solid var(--border); }
.faq-answer p { margin-top: 0.75rem; }
.faq-q { font-weight: 700; }

.eeat-block { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; margin: 1.5rem 0; }
.eeat-block h2 { border-bottom: 2px solid var(--border); padding-bottom: 0.4rem; margin-bottom: 1rem; }
.eeat-checklist { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem; }
.eeat-checklist li { font-size: 0.88rem; display: flex; gap: 0.5rem; align-items: flex-start; padding: 0.25rem 0; }
.eeat-check { color: #4a9b5f; flex-shrink: 0; font-weight: 700; }
.eeat-limitations { margin-top: 1rem; padding: 0.85rem 1rem; background: rgba(14,61,42,0.3); border-left: 3px solid var(--primary); border-radius: 0 var(--radius) var(--radius) 0; font-size: 0.85rem; color: var(--text-muted); }

.infographic-session, .infographic-volatility, .infographic-rtp { width: 100%; max-width: 440px; height: auto; display: block; margin: 1.25rem 0; }
@media (max-width: 600px) { .infographic-session, .infographic-volatility, .infographic-rtp { width: calc(100% + 24px); max-width: calc(100% + 24px); margin-left: -12px; margin-right: -12px; } figure img.rf-crop { max-height: 340px; } }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; max-width: 100%; margin: 1.25rem 0; scrollbar-width: thin; scrollbar-color: var(--primary) var(--surface2); }
.table-scroll::-webkit-scrollbar { height: 8px; }
.table-scroll::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
.table-scroll::-webkit-scrollbar-track { background: var(--surface2); border-radius: 4px; }
figure img.rf-crop { max-height: 400px; width: auto; max-width: 100%; margin-left: auto; margin-right: auto; display: block; }
.lang-dropdown a { min-width: 0; }
.table-scroll .comparison-table { min-width: 500px; margin: 0; }
.verdict-card { display: flex; align-items: center; gap: 1rem; background: var(--surface2); border: 1px solid var(--border); border-left: 4px solid var(--primary); border-radius: var(--r-md); padding: 1rem 1.25rem; margin: 1.5rem 0; }
.verdict-score { flex-shrink: 0; text-align: center; line-height: 1; white-space: nowrap; }
.verdict-num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--primary); }
.verdict-den { font-family: var(--font-display); font-size: 1.1rem; color: var(--text-2); margin-left: 0.15rem; }
.verdict-body { font-size: 0.92rem; color: var(--text); }
.eeat-card { background: var(--surface); border-radius: var(--r-md); padding: 1.5rem; margin: 1.5rem 0; border: 1px solid var(--border); }
.eeat-label, .how-built-label { text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; font-size: 0.75rem; color: var(--primary); }
.eeat-list { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.75rem; }
.eeat-item { font-size: 0.92rem; color: var(--text-2); padding-left: 1rem; border-left: 2px solid var(--accent); }
.eeat-by { text-align: right; font-size: 0.85rem; color: var(--text-3); margin-top: 1rem; border-top: 1px solid var(--border); padding-top: 0.75rem; }

.where-to-play-section { background: var(--surface2); border: 1px solid var(--border); border-radius: var(--r-md); padding: 1.5rem; margin: 2rem 0; }
.where-to-play-section h2 { color: var(--primary); border-bottom: none; margin-bottom: 0.75rem; padding-bottom: 0; }

.content-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.sidebar-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.1rem 1.25rem; }
.sidebar-card h3,
.collapse-card > summary {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(156,98,32,0.2);
}
.collapse-card > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0;
}
.collapse-card > summary::-webkit-details-marker { display: none; }
.collapse-card > summary::after { content: "\25BC"; color: var(--primary); font-size: 0.7rem; transition: transform 0.2s; flex-shrink: 0; }
.collapse-card[open] > summary::after { transform: rotate(180deg); }
.collapse-card[open] > summary { margin-bottom: 1rem; }
@media (min-width: 1025px) {
  details.collapse-card > summary { cursor: default; pointer-events: none; margin-bottom: 1rem; }
  details.collapse-card > summary::after { display: none; }
}

.facts-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.facts-table tr+tr td { border-top: 1px solid rgba(156,98,32,0.1); }
.facts-table td { padding: 0.45rem 0; vertical-align: top; }
.facts-table td:first-child { color: var(--text-muted); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.04em; width: 45%; }
.facts-table td:last-child { color: var(--text); font-weight: 600; }
.fact-note { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.65rem; font-style: italic; }

.toc-card nav { display: flex; flex-direction: column; gap: 0.15rem; }
.toc-card nav a { font-size: 0.84rem; color: var(--text-muted); padding: 0.2rem 0; transition: color var(--transition); border-left: 2px solid transparent; padding-left: 0.6rem; }
.toc-card nav a:hover { color: var(--primary); border-left-color: var(--primary); text-decoration: none; }

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 2rem;
  cursor: zoom-out;
}
.lightbox-overlay.open { display: flex; }
.lightbox-overlay img {
  width: auto;
  height: auto;
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  cursor: default;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
  border-radius: 6px;
}
.lightbox-close {
  position: fixed;
  top: 1.2rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.32); }
.lightbox-close:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

.rg-bar { background: var(--surface2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 0.5rem 0; margin-bottom: 2rem; }
.rg-bar .container { display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; align-items: center; font-size: 0.78rem; color: var(--text-muted); }
.rg-bar a { color: var(--text-muted); text-decoration: underline; text-underline-offset: 2px; }
.rg-bar a:hover { color: var(--text); }
.rg-18 { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--text-muted); font-size: 0.72rem; font-weight: 700; color: var(--text-muted); flex-shrink: 0; }

.site-footer { background: var(--jade); border-top: 2px solid var(--primary); padding: 2.5rem 0 1.5rem; margin-top: 4rem; color: var(--text-muted); font-size: 0.85rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-brand { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-brand img, .footer-brand svg { height: 36px; width: auto; }
.footer-brand p { font-size: 0.82rem; max-width: 300px; }
.footer-col h4 { font-family: var(--font-display); font-size: 0.8rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.75rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.35rem; }
.footer-col a { color: var(--text-muted); font-size: 0.82rem; }
.footer-col a:hover { color: var(--text); }
.footer-divider { border: none; border-top: 1px solid rgba(156,98,32,0.2); margin: 1.5rem 0 1rem; }
.footer-bottom { font-size: 0.75rem; display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; align-items: center; }
.footer-bottom .disclaimer { flex: 1; min-width: 200px; }
.footer-responsible-gaming { margin-top: 1.25rem; padding: 1rem 1.25rem; background: rgba(14,61,42,0.4); border: 1px solid var(--border); border-radius: var(--radius); font-size: 0.82rem; }
.footer-responsible-gaming p { margin-bottom: 0.4rem; color: var(--text-muted); }
.footer-responsible-gaming a { color: var(--text-muted); text-decoration: underline; }
.footer-responsible-gaming a:hover { color: var(--text); }

.casino-cards { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 1.25rem; margin: 1rem 0; }
.casino-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; display: flex; flex-direction: column; gap: 0.6rem; }
.casino-card .casino-name { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--text); }
.casino-card .casino-bonus { font-size: 0.88rem; color: var(--primary); font-weight: 700; }
.casino-card .casino-details { font-size: 0.82rem; color: var(--text-muted); flex: 1; }
.casino-card .btn-casino { display: inline-flex; align-items: center; justify-content: center; padding: 0.6rem 1.2rem; background: var(--primary); color: #1a1204; font-family: var(--font-display); font-weight: 700; font-size: 0.88rem; border-radius: var(--radius); text-decoration: none; transition: background var(--transition); margin-top: 0.4rem; }
.casino-card .btn-casino:hover { background: #b87328; text-decoration: none; }

.inner-page { padding: 3rem 0 5rem; }
.inner-page h1 { color: var(--primary); margin-bottom: 0.5rem; font-size: clamp(1.5rem,3vw,2.2rem); }
.inner-page .page-lead { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 2rem; max-width: 680px; }
.inner-page h2 { color: var(--primary); border-bottom: 1px solid var(--border); padding-bottom: 0.35rem; margin-top: 2rem; margin-bottom: 0.75rem; }
.inner-page h3 { margin-top: 1.25rem; color: var(--text); }
.text-muted { color: var(--text-muted); }
.inner-max { max-width: 780px; }

.contact-form { max-width: 620px; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.35rem; color: var(--text); }
.form-group input,
.form-group textarea,
.form-group select { width: 100%; padding: 0.65rem 0.85rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); color: var(--text); font-family: var(--font-body); font-size: 0.95rem; transition: border-color var(--transition); outline: none; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(156,98,32,0.2); }
.form-group textarea { min-height: 130px; resize: vertical; }
.btn-submit { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 2rem; background: var(--primary); color: #1a1204; font-family: var(--font-display); font-weight: 700; font-size: 1rem; border: none; border-radius: var(--radius); cursor: pointer; transition: background var(--transition); }
.btn-submit:hover { background: #b87328; }
.form-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.75rem; }

.page-404 { min-height: 60vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 4rem 1.5rem; }
.page-404 .code-big { font-family: var(--font-display); font-size: clamp(5rem,15vw,10rem); font-weight: 700; color: var(--primary); line-height: 1; margin-bottom: 0.5rem; text-shadow: 0 0 40px rgba(14,61,42,0.6); }
.page-404 h1 { color: var(--primary); margin-bottom: 0.75rem; }
.page-404 p { color: var(--text-muted); max-width: 420px; margin-bottom: 2rem; }

.notice { padding: 0.9rem 1.1rem; border-radius: var(--radius); font-size: 0.88rem; margin: 1rem 0; display: flex; gap: 0.75rem; align-items: flex-start; }
.notice-info { background: rgba(14,61,42,0.35); border-left: 3px solid var(--jade); }
.notice-warn { background: rgba(156,98,32,0.15); border-left: 3px solid var(--primary); }
.notice p { margin: 0; }

@media (min-width: 700px) {
  .lang-switcher.open .lang-dropdown {
    grid-template-columns: repeat(3, minmax(140px, 1fr));
  }
}

@media (max-width: 1024px) {
  .content-grid { grid-template-columns: minmax(0, 1fr); gap: 1.5rem; }
  .content-sidebar { order: -1; }
  .header-cta.desktop-only,
  .lang-switcher.desktop-only { display: none; }
  .hero { min-height: 380px; }
  .hero-scrim { background: linear-gradient(135deg, rgba(8,10,7,0.90) 0%, rgba(8,10,7,0.75) 55%, rgba(8,10,7,0.40) 100%); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .pros-cons-grid { grid-template-columns: 1fr; }
  .eeat-checklist { grid-template-columns: 1fr; }
  .lang-dropdown { right: 0; left: auto; max-width: min(90vw, 260px); }
}

@media (max-width: 640px) {
  .container { padding: 0 1rem; }
  .hero { min-height: 320px; }
  .hero-body { padding: 2rem 1rem; }
  .hero h1 { font-size: 1.45rem; }
  .session-stats-grid { grid-template-columns: repeat(2,1fr); }
  .casino-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .comparison-wrap table { font-size: 0.78rem; }
  .demo-wrap { max-width: 100%; }
  .checkpoint-gallery { grid-template-columns: repeat(2,1fr); }
  .session-progression { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 600px) {
  .site-nav { display: none; }
  .nav-play { display: inline-flex; }
  .site-logo img, .site-logo svg { height: 34px; }
}
@media (max-width: 400px) {
  .site-header .container { gap: 0.6rem; padding: 0 0.6rem; }
  .site-logo img, .site-logo svg { height: 30px; }
  .header-spacer { display: none; }
  .lang-current > span:not(.lang-arrow) { display: none; }
}
@media (max-width: 360px) {
  .site-header .container { gap: 0.45rem; padding: 0 0.5rem; }
  .site-logo img, .site-logo svg { height: 26px; }
  .nav-play { padding: 0.4rem 0.6rem; font-size: 0.78rem; }
  .lang-current { padding: 0.4rem 0.5rem; }
}
@media (max-width: 300px) {
  .site-header .container { gap: 0.35rem; }
  .site-logo img, .site-logo svg { height: 23px; }
  .nav-play { padding: 0.35rem 0.5rem; font-size: 0.75rem; }
}

@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
