:root {
  --bg: #fdf8f0;
  --bg-card: #f5ede0;
  --bg-card-2: #ede3d2;
  --surface: #ffffff;
  --primary: #c41e3a;
  --primary-rgb: 196,30,58;
  --secondary: #8a6414;
  --text: #1a1a1a;
  --text-2: #4a3f38;
  --text-3: #5a4a35;
  --border: rgba(196,30,58,0.15);
  --border-solid: #ddd0c0;
  --font-display: Georgia, "Times New Roman", Times, serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --max-w: 1160px;
  --sidebar-w: 310px;
  --hdr-h: 64px;
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;
  --transition: 0.2s ease;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--secondary); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { padding-left: 1.5rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

h1,h2,h3,h4 {
  font-family: var(--font-display);
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}
h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h2 { font-size: clamp(1.2rem, 3vw, 1.65rem); margin-top: 2rem; padding-bottom: 0.4rem; border-bottom: 2px solid var(--primary); }
h3 { font-size: 1.15rem; color: var(--primary); }
h4 { font-size: 1rem; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--r-sm);
  padding: 0.65rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}
.btn-primary:hover { background: #a01830; color: #fff; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: var(--r-sm);
  padding: 0.6rem 1.3rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-secondary:hover { background: var(--primary); color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253,248,240,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-solid);
  height: var(--hdr-h);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 100%;
}

.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo svg,
.site-logo img { height: 38px; width: auto; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-nav a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color var(--transition);
}
.site-nav a:hover { color: var(--primary); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-play {
  display: none;
  align-items: center;
  background: var(--primary);
  color: #fff;
  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: #a01830; color: #fff; }

.lang-selector { position: relative; }

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bg-card);
  border: 1px solid var(--border-solid);
  border-radius: var(--r-sm);
  padding: 0.4rem 0.7rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-2);
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}
.lang-btn:hover { background: var(--bg-card-2); }
.lang-flag { width: 20px; height: 14px; object-fit: cover; border-radius: 2px; }

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--surface);
  border: 1px solid var(--border-solid);
  border-radius: var(--r-md);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  padding: 0.5rem;
  min-width: 240px;
  max-height: min(70vh, 440px);
  overflow-y: auto;
  max-width: min(92vw, 420px);
  z-index: 200;
}
.lang-dropdown.open {
  display: grid;
  grid-template-columns: repeat(2, minmax(100px, 1fr));
  gap: 2px;
}
.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.6rem;
  border-radius: 4px;
  font-size: 0.82rem;
  color: var(--text-2);
  text-decoration: none;
  transition: background var(--transition);
}
.lang-dropdown a:hover { background: var(--bg-card); color: var(--primary); }
.lang-dropdown img { width: 18px; height: 12px; object-fit: cover; border-radius: 2px; flex-shrink: 0; }

@media (min-width: 700px) {
  .lang-dropdown.open { grid-template-columns: repeat(3, minmax(100px, 1fr)); }
}

.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1a1918;
}
.hero-img-wrap { position: absolute; inset: 0; }
.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 1;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(26,25,24,0.88) 0%,
    rgba(26,25,24,0.82) 30%,
    rgba(26,25,24,0.30) 60%,
    rgba(26,25,24,0.00) 85%);
}
.hero-body {
  position: relative;
  z-index: 2;
  padding: 2.5rem 1.25rem;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero-lead {
  font-size: 0.85rem;
  color: #f5ddb8;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  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: 640px;
  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);
  font-size: clamp(1.5rem, 4vw, 2.4rem);
}
.hero h1 em {
  color: #f5ddb8;
  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: #f5ddb8;
  max-width: 520px;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 6px rgba(0,0,0,0.95), 0 0 10px rgba(0,0,0,0.8);
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}
.hero-badge {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 0.78rem;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  font-weight: 600;
}
.hero-cta { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.hero-18plus {
  position: absolute;
  top: 12px;
  right: 16px;
  background: rgba(196,30,58,0.85);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
  z-index: 3;
}

.page-body {
  display: grid;
  grid-template-columns: 1fr var(--sidebar-w);
  gap: 2.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2rem 1.25rem;
  align-items: start;
}

.content-main { min-width: 0; }

.content-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sidebar-card {
  background: var(--surface);
  border: 1px solid var(--border-solid);
  border-radius: var(--r-md);
  padding: 1.1rem 1.25rem;
  overflow: hidden;
}
.toc-card nav { display: flex; flex-direction: column; gap: 0.3rem; }
.toc-card nav a { font-size: 0.85rem; color: var(--text-2); text-decoration: none; padding: 0.15rem 0; }
.toc-card nav a:hover { color: var(--primary); }
.facts-card .facts-table { width: 100%; border-collapse: collapse; }
.facts-card .facts-table td { font-size: 0.83rem; padding: 0.3rem 0.1rem; vertical-align: top; }
.sidebar-card h3,
.collapse-card > summary {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(196,30,58,0.2);
}
.collapse-card > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0;
}
.collapse-card > summary::-webkit-details-marker { display: none; }
.collapse-card > summary::after {
  content: "\25BC";
  color: var(--primary);
  font-size: 0.65rem;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.collapse-card[open] > summary::after { transform: rotate(180deg); }
.collapse-card[open] > summary { margin-bottom: 0.85rem; }

@media (min-width: 1025px) {
  details.collapse-card > summary { cursor: default; pointer-events: none; margin-bottom: 0.85rem; }
  details.collapse-card > summary::after { display: none; }
}

.facts-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  margin-top: 0.85rem;
}
.facts-table th {
  text-align: left;
  font-weight: 700;
  color: var(--text-3);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.4rem;
  border-bottom: 1px solid var(--border-solid);
}
.facts-table td {
  padding: 0.4rem 0.4rem;
  vertical-align: top;
  border-bottom: 1px solid var(--border-solid);
  line-height: 1.4;
}
.facts-table tr:last-child td { border-bottom: none; }
.facts-table td:first-child { color: var(--text-3); font-size: 0.78rem; width: 38%; }
.facts-table td:nth-child(2) { font-weight: 600; color: var(--text); }
.facts-table td:nth-child(3) { color: var(--text-3); font-size: 0.72rem; }
.source-official { color: #145a32; font-size: 0.72rem; }
.source-estimated { color: #7d4e00; font-size: 0.72rem; cursor: help; border-bottom: 1px dashed currentColor; }
.source-verified { color: var(--secondary); font-size: 0.72rem; }
.source-unavailable { color: var(--text-3); font-size: 0.72rem; }
.fact-note { font-size: 0.78rem; color: var(--text-3); margin-top: 0.5rem; line-height: 1.45; }

.toc-nav {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: 0.85rem;
}
.toc-nav a {
  font-size: 0.82rem;
  color: var(--text-2);
  text-decoration: none;
  padding: 0.25rem 0.4rem;
  border-radius: 4px;
  transition: all var(--transition);
  border-left: 2px solid transparent;
}
.toc-nav a:hover {
  background: var(--bg-card);
  color: var(--primary);
  border-left-color: var(--primary);
}

article section { margin-bottom: 2.5rem; }

.demo-section { margin: 2rem 0; }
.demo-section h2 { scroll-margin-top: calc(var(--hdr-h) + 1rem); }

.demo-wrap {
  position: relative;
  max-width: 360px;
  aspect-ratio: 9/16;
  margin: 1.5rem auto;
  overflow: hidden;
  background: #000;
  border-radius: var(--r-md);
  border: 1px solid var(--border-solid);
  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(--r-md);
  max-width: 260px;
  position: relative;
  z-index: 2;
  text-align: center;
}
.demo-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.demo-title { color: #fff; font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 0.25rem; }
.demo-sub { color: rgba(255,255,255,0.7); font-size: 0.78rem; margin-bottom: 1rem; }
.btn-play-demo {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 0.7rem 1.6rem;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--transition);
  width: 100%;
}
.btn-play-demo:hover { background: #a01830; }
.demo-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: none;
}
.demo-hint {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-3);
  margin-top: 0.5rem;
}
.demo-fs-wrap { text-align: center; margin-top: 0.75rem; }
.demo-fs-btn {
  background: transparent;
  border: 1px solid var(--border-solid);
  border-radius: var(--r-sm);
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  color: var(--text-2);
  cursor: pointer;
  transition: all var(--transition);
}
.demo-fs-btn:hover { background: var(--bg-card); border-color: var(--primary); color: var(--primary); }

article figure {
  margin: 1.5rem 0;
  border: 1px solid var(--border-solid);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--surface);
}
article figure img {
  border-radius: 0;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}
article figure figcaption {
  padding: 0.65rem 0.9rem;
  font-size: 0.82rem;
  color: var(--text-3);
  background: var(--bg-card);
  border-top: 1px solid var(--border-solid);
  line-height: 1.45;
}

.checkpoint-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 1.25rem 0;
}
.cp-figure {
  margin: 0;
  border: 1px solid var(--border-solid);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--surface);
}
.cp-figure img,
.checkpoint-gallery img {
  aspect-ratio: 9/16;
  object-fit: cover;
  width: 100%;
  cursor: zoom-in;
}
.cp-figure figcaption {
  font-size: 0.72rem;
  padding: 0.4rem 0.55rem;
  background: var(--bg-card);
  border-top: 1px solid var(--border-solid);
  color: var(--text-3);
  line-height: 1.35;
}

.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-solid);
  border-radius: var(--r-md);
  padding: 0.85rem 1rem;
  text-align: center;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}
.stat-value.stat-positive { color: #145a32; }
.stat-value.stat-negative { color: #9b1010; }
.stat-label {
  font-size: 0.72rem;
  color: var(--text-3);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.quick-facts-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin: 1rem 0;
}
.quick-facts-table th {
  text-align: left;
  background: var(--bg-card);
  color: var(--text-2);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.55rem 0.75rem;
  border-bottom: 2px solid var(--border-solid);
}
.quick-facts-table td {
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid var(--border-solid);
  vertical-align: top;
}
.quick-facts-table tr:last-child td { border-bottom: none; }
.quick-facts-table td:first-child { color: var(--text-3); font-size: 0.82rem; width: 35%; }
.quick-facts-table td:nth-child(2) { font-weight: 600; }
.quick-facts-table td:nth-child(3) { color: var(--text-3); font-size: 0.78rem; }

.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin: 1.25rem 0; }
.pros, .cons {
  background: var(--surface);
  border: 1px solid var(--border-solid);
  border-radius: var(--r-md);
  padding: 1rem 1.15rem;
}
.pros h3 { color: #145a32; border-bottom: 2px solid #c8f7d4; padding-bottom: 0.4rem; margin-bottom: 0.75rem; }
.cons h3 { color: #9b1010; border-bottom: 2px solid #fad4d4; padding-bottom: 0.4rem; margin-bottom: 0.75rem; }
.pros ul, .cons ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.pros li { padding-left: 1.2rem; position: relative; font-size: 0.88rem; color: var(--text-2); }
.pros li::before { content: "+"; position: absolute; left: 0; color: #145a32; font-weight: 700; }
.cons li { padding-left: 1.2rem; position: relative; font-size: 0.88rem; color: var(--text-2); }
.cons li::before { content: "-"; position: absolute; left: 0; color: #9b1010; font-weight: 700; }

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin: 1.25rem 0;
  overflow-x: auto;
  display: block;
}
.comparison-table th {
  background: var(--bg-card);
  text-align: left;
  padding: 0.55rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-2);
  border-bottom: 2px solid var(--border-solid);
  white-space: nowrap;
}
.comparison-table td {
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid var(--border-solid);
  vertical-align: top;
}
.comparison-table tr.highlighted td { background: rgba(196,30,58,0.05); font-weight: 600; }
.comparison-table tr:last-child td { border-bottom: none; }

.faq-list { display: flex; flex-direction: column; gap: 0.75rem; margin: 1.25rem 0; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border-solid);
  border-radius: var(--r-md);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 0.9rem 1rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  transition: background var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item[open] > summary { background: var(--bg-card); }
.faq-item[open] > summary::after { content: "-"; }
.faq-answer { padding: 0 1rem 0.9rem 1rem; font-size: 0.9rem; color: var(--text-2); }

.eeat-card {
  background: var(--surface);
  border: 1px solid var(--border-solid);
  border-radius: var(--r-md);
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.eeat-label,
.how-built-label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}
.eeat-list { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.75rem; }
.eeat-item {
  font-size: 0.88rem;
  color: var(--text-2);
  padding-left: 1rem;
  border-left: 2px solid var(--primary);
  line-height: 1.45;
}
.eeat-by {
  text-align: right;
  font-size: 0.82rem;
  color: var(--text-3);
  margin-top: 1rem;
  border-top: 1px solid var(--border-solid);
  padding-top: 0.75rem;
}

.eeat-block {
  background: var(--bg-card);
  border: 1px solid var(--border-solid);
  border-radius: var(--r-md);
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.author-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.author-row img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.author-info { flex: 1; min-width: 0; }
.author-name { font-weight: 700; font-size: 0.95rem; color: var(--text); }
.author-title { font-size: 0.8rem; color: var(--text-3); }
.eeat-provenance { font-size: 0.85rem; color: var(--text-2); margin-bottom: 0.5rem; }

.where-to-play-section {
  background: var(--bg-card);
  border-left: 3px solid var(--primary);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  margin: 1.5rem 0;
}
.where-to-play-section h2 { border-bottom: none; margin-top: 0; padding-bottom: 0; }
.where-to-play-section p { font-size: 0.9rem; color: var(--text-2); }

.lang-code { display: none; text-transform: uppercase; font-weight: 600; }
.infographic-volatility,
.infographic-rtp,
.infographic-session {
  width: 100%;
  max-width: 420px;
  margin: 1.25rem 0;
}

.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 {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  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 var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.32); }
.lightbox-close:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

.site-footer {
  background: var(--bg-card);
  border-top: 2px solid var(--border-solid);
  margin-top: 3rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}
.footer-brand .footer-logo { height: 36px; width: auto; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.83rem; color: var(--text-3); line-height: 1.55; }
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.35rem; }
.footer-col a { font-size: 0.83rem; color: var(--text-3); text-decoration: none; }
.footer-col a:hover { color: var(--primary); }

.footer-divider {
  border: none;
  border-top: 1px solid var(--border-solid);
  margin: 0;
}

.footer-responsible-gaming {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.25rem 1.25rem;
  font-size: 0.8rem;
  color: var(--text-3);
  line-height: 1.6;
}
.footer-responsible-gaming p { margin-bottom: 0.4rem; }
.footer-responsible-gaming strong { color: var(--text-2); }

.footer-disclosures {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-disclosures p { font-size: 0.78rem; color: var(--text-3); line-height: 1.5; }

.footer-bottom {
  background: var(--bg-card-2);
  border-top: 1px solid var(--border-solid);
}
.footer-bottom-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-3);
}
.footer-bottom-inner a { color: var(--text-3); }
.footer-bottom-inner a:hover { color: var(--primary); }

.casino-card {
  background: var(--surface);
  border: 1px solid var(--border-solid);
  border-radius: var(--r-md);
  padding: 1.25rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.casino-card-info { flex: 1; min-width: 0; }
.casino-card h3 { margin: 0 0 0.3rem; font-size: 1rem; color: var(--text); }
.casino-card p { font-size: 0.85rem; color: var(--text-3); margin: 0; }
.btn-casino {
  display: inline-flex;
  align-items: center;
  background: var(--primary);
  color: #fff;
  padding: 0.6rem 1.25rem;
  border-radius: var(--r-sm);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  transition: background var(--transition);
  flex-shrink: 0;
}
.btn-casino:hover { background: #a01830; color: #fff; }

.contact-form { margin: 1.5rem 0; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.35rem; color: var(--text-2); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border-solid);
  border-radius: var(--r-sm);
  padding: 0.6rem 0.8rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--surface);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--primary); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-result { margin-top: 0.75rem; padding: 0.7rem 0.9rem; border-radius: var(--r-sm); font-size: 0.88rem; display: none; }
.form-result.success { background: #d4f5e2; color: #145a32; }
.form-result.error { background: #fad4d4; color: #7c1010; }

.page-404 { text-align: center; padding: 4rem 1.25rem; max-width: 560px; margin: 0 auto; }
.page-404 h1 { font-size: 4rem; color: var(--primary); margin-bottom: 0.5rem; }
.page-404 p { color: var(--text-3); font-size: 1.05rem; }
.page-404 .btn-primary { margin: 1.5rem auto 0; }

.scroll-top {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: none;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  z-index: 500;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition);
}
.scroll-top.visible { display: flex; opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: #a01830; }
.scroll-top svg { width: 22px; height: 22px; fill: currentColor; }

.rtp-note {
  background: var(--bg-card);
  border-left: 3px solid var(--secondary);
  padding: 0.85rem 1rem;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: 0.85rem;
  color: var(--text-2);
  margin: 0.75rem 0;
}

@media (min-width: 769px) { .scroll-top { display: none !important; } }

article section, article h2, article h3 { scroll-margin-top: calc(var(--hdr-h) + 1rem); }

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 0;
  display: block;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}
.footer-rg {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border-solid);
  border-bottom: 1px solid var(--border-solid);
  font-size: 0.8rem;
  color: var(--text-3);
  line-height: 1.55;
  margin-bottom: 0;
}
.rg-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

@media (max-width: 1024px) {
  .page-body {
    grid-template-columns: 1fr;
    padding: 1.5rem 1.25rem;
  }
  .content-main { order: 2; }
  .content-sidebar { order: 1; }
  .sidebar-card { max-width: 600px; }
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .pros-cons { grid-template-columns: 1fr; }
  .checkpoint-gallery { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .hero { min-height: 380px; }
  .demo-wrap { max-width: 300px; }
  h2 { font-size: 1.2rem; }
}

@media (max-width: 600px) {
  .site-nav { display: none; }
  .nav-play { display: inline-flex; }
  .header-inner { gap: 0.5rem; }
  .site-logo img { height: 30px; }
  .lang-full { display: none; }
  .lang-code { display: inline; }
  .lang-btn { padding: 0.4rem 0.55rem; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .hero h1 { font-size: 1.5rem; }
  .comparison-table { font-size: 0.78rem; display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .footer-rg { display: block; }
  .footer-rg .rg-badge { margin-right: 0.4rem; }
  .session-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
