/* =============================================
   PRAGMATICSPINS.COM — Main Stylesheet v2
   Design: Dark luxury casino, glassmorphism,
   neon accents, premium feel
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Core palette */
  --brand:        #f59e0b;
  --brand-light:  #fcd34d;
  --brand-dark:   #b45309;
  --brand-glow:   rgba(245, 158, 11, 0.3);
  --accent:       #7c3aed;
  --accent-light: #a78bfa;
  --green:        #10b981;
  --green-glow:   rgba(16, 185, 129, 0.25);
  --red:          #ef4444;
  --red-glow:     rgba(239, 68, 68, 0.25);
  --gold:         #f59e0b;

  /* Backgrounds — dark premium theme */
  --bg:           #13151f;
  --bg2:          #1a1d2e;
  --bg3:          #20243a;
  --bg4:          #272c42;
  --glass:        rgba(255,255,255,0.07);
  --glass-border: rgba(255,255,255,0.11);

  /* Text */
  --text:         #f0f3fa;
  --text-muted:   #b0bace;
  --text-dim:     #7c8aa0;

  /* UI */
  --radius:       14px;
  --radius-sm:    8px;
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.3);
  --shadow:       0 8px 32px rgba(0,0,0,0.4);
  --shadow-glow:  0 0 40px rgba(245,158,11,0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Subtle dot-grid background texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

body > * { position: relative; z-index: 1; }

a { color: var(--brand); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--brand-light); text-decoration: none; }
strong { color: #fff; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.2s, opacity 0.15s;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn:active { transform: translateY(0); }

.btn-header {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #000;
  padding: 9px 18px;
  font-size: 13px;
  border-radius: 8px;
  box-shadow: 0 2px 12px var(--brand-glow);
}
.btn-header:hover { box-shadow: 0 4px 20px var(--brand-glow); }

.btn-casino {
  background: linear-gradient(135deg, var(--brand), #f97316);
  color: #000;
  font-size: 13px;
  font-weight: 800;
  padding: 11px 20px;
  white-space: nowrap;
  flex-shrink: 0;
  border-radius: 10px;
  box-shadow: 0 2px 12px var(--brand-glow);
}
.btn-casino:hover { box-shadow: 0 4px 20px rgba(245,158,11,0.45); }

/* =============================================
   PLACEHOLDERS
   ============================================= */
.content-img { display: block; width: 100%; height: auto; border-radius: 12px; margin: 24px 0; }

/* =============================================
   INLINE DEMO FRAME
   ============================================= */
.inline-demo-wrap { width: 100%; }

.inline-demo-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.25);
  padding: 4px 10px;
  border-radius: 20px;
}

.inline-demo-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04), var(--shadow);
}
.inline-demo-frame iframe,
.inline-demo-frame .freedemo-game-widget {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.inline-demo-frame .freedemo-game-widget iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* --- Demo placeholder (lazy iframe) --- */
.demo-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: #0d0f1a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.demo-placeholder img.demo-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  filter: brightness(0.55);
  transition: filter 0.2s;
}
.demo-placeholder:hover img.demo-thumb {
  filter: brightness(0.45);
}
.demo-play-btn {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  pointer-events: none;
}
.demo-play-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(245,158,11,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px rgba(245,158,11,0.22), 0 4px 24px rgba(0,0,0,0.5);
  transition: transform 0.18s, background 0.18s;
}
.demo-placeholder:hover .demo-play-circle {
  transform: scale(1.1);
  background: #fbbf24;
}
.demo-play-circle svg {
  width: 30px;
  height: 30px;
  fill: #1a1a1a;
  margin-left: 4px;
}
.demo-play-label {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}
/* loaded state: placeholder is gone, iframe sits in its place */
.inline-demo-frame.demo-loaded .demo-placeholder {
  display: none;
}
.inline-demo-frame.demo-loaded iframe {
  display: block;
}
.inline-demo-frame iframe {
  display: none;
}

/* Fullscreen toggle button (mobile) */
.demo-fs-btn {
  display: none;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.demo-fs-btn svg { width: 18px; height: 18px; fill: #fff; }
.inline-demo-frame.demo-loaded .demo-fs-btn { display: flex; }

/* Fullscreen overlay state */
.inline-demo-frame.demo-fullscreen {
  position: fixed !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  padding-top: 0 !important;
  border-radius: 0 !important;
  z-index: 99998;
  border: none !important;
}
.inline-demo-frame.demo-fullscreen iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Hero full-width casino strip (below game + stats) */
.hero-casino-strip {
  border-top: 1px solid var(--glass-border);
  padding: 24px 0 32px;
}

.hero-casino-strip-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 14px;
  text-align: center;
}

.hero-casino-strip-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hcs-card {
  display: block;
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  text-decoration: none;
  overflow: hidden;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.hcs-card:hover {
  border-color: rgba(245,158,11,0.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.4);
  text-decoration: none;
}

.hcs-banner {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

.hcs-disclaimer {
  font-size: 10px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  background: rgba(8, 9, 14, 0.9);
  border-bottom: 1px solid var(--glass-border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  letter-spacing: -0.02em;
}
.logo span { color: var(--text-muted); }
.logo strong { color: var(--brand); }
.logo-img { display: block; border-radius: 6px; object-fit: contain; }

.main-nav {
  display: flex;
  gap: 4px;
  flex: 1;
}
.main-nav a {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  transition: color 0.15s, background 0.15s;
  padding: 6px 12px;
  border-radius: 8px;
}
.main-nav a:hover { color: #fff; background: var(--glass); }

/* Burger toggle button */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  flex-shrink: 0;
}
.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(8,9,14,0.97);
  border-bottom: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0 16px;
  z-index: 99;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.15s, background 0.15s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: #fff; background: var(--glass); }
.mobile-nav .mob-random {
  margin: 10px 16px 0;
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #000;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 18px;
  border-radius: 8px;
  border-bottom: none;
}

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb-bar {
  background: transparent;
  border-bottom: 1px solid var(--glass-border);
  padding: 10px 0;
  font-size: 12px;
  color: var(--text-muted);
}
.breadcrumb-bar a { color: var(--text-muted); }
.breadcrumb-bar a:hover { color: var(--brand); }
.sep { margin: 0 8px; opacity: 0.5; }

/* =============================================
   AUTHOR / UPDATED BAR
   ============================================= */
.author-bar {
  background: transparent;
  border-bottom: 1px solid var(--glass-border);
  padding: 10px 0;
}
.author-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.author-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: opacity 0.15s;
}
.author-chip:hover { opacity: 0.8; text-decoration: none; }

.author-avatar {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(124,58,237,0.5);
  display: inline-block;
  vertical-align: middle;
}

.author-chip-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.author-chip-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.author-chip-role {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1;
}

.author-bar-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.updated-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.updated-badge time { color: var(--text-muted); font-weight: 600; }

.aff-disclosure-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--text-muted);
  background: rgba(245,158,11,0.06);
  border: 1px solid rgba(245,158,11,0.18);
  padding: 5px 11px;
  border-radius: 20px;
  white-space: nowrap;
}
.aff-disclosure-pill span { font-style: normal; color: var(--brand); }

.rg-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--text-muted);
  background: rgba(239,68,68,0.06);
  border: 1px solid rgba(239,68,68,0.18);
  padding: 5px 11px;
  border-radius: 20px;
  white-space: nowrap;
}
.rg-pill span { font-style: normal; }
.rg-link {
  color: #fc8585;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.rg-link:hover { color: #fff; }
.updated-icon { font-size: 13px; }

/* =============================================
   HERO SECTION
   ============================================= */
.slot-hero {
  background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--glass-border);
  padding: 48px 0 56px;
  position: relative;
  overflow: hidden;
}

.slot-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124,58,237,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.slot-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,158,11,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
  position: relative;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-info h1 {
  font-size: 44px;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.hero-info h1 .h1-sub {
  display: block;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0;
  opacity: 0.75;
  margin-top: 4px;
}

.hero-subtitle {
  font-size: 16px;
  color: var(--text);
  opacity: 0.85;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* =============================================
   STAT PILLS
   ============================================= */
.quick-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 28px;
}

.stat-box {
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 14px 10px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: border-color 0.2s, background 0.2s;
  position: relative;
  overflow: hidden;
}
.stat-box::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--pill-color, transparent);
  opacity: 0.7;
}
.stat-box:hover { border-color: rgba(255,255,255,0.18); background: var(--bg4); }

.stat-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 700;
}
.stat-value {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
}
.stat-green { color: var(--green); --pill-color: var(--green); }
.stat-red   { color: #f87171;     --pill-color: #f87171; }
.stat-gold  { color: var(--gold); --pill-color: var(--gold); }

/* =============================================
   STICKY TOC BAR
   ============================================= */
.toc-sticky-bar {
  position: sticky;
  top: 57px; /* header height */
  z-index: 89;
  background: rgba(20, 23, 36, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.toc-sticky-inner {
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
}
.toc-sticky-inner::-webkit-scrollbar { display: none; }

.toc-sticky-label {
  font-size: 10px;
  font-weight: 800;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 14px 20px 14px 0;
  margin-right: 4px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.toc-sticky-nav {
  display: flex;
  flex-wrap: nowrap;
}

.toc-sticky-nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 14px 16px;
  white-space: nowrap;
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
  text-decoration: none;
  display: block;
  position: relative;
  top: 1px;
}
.toc-sticky-nav a:hover {
  color: #fff;
  text-decoration: none;
}
.toc-sticky-nav a.toc-active {
  color: #fff;
  font-weight: 600;
  border-bottom-color: var(--brand);
}

/* =============================================
   MAIN LAYOUT
   ============================================= */
.main-layout {
  display: block;
  padding-top: 48px;
  padding-bottom: 72px;
}
.content-col { min-width: 0; }

/* =============================================
   CONTENT SECTIONS
   ============================================= */
.content-section {
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--glass-border);
}
.content-section:last-child { border-bottom: none; margin-bottom: 0; }

.content-section h2 {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 12px;
}
.content-section h2::before {
  content: '';
  display: block;
  width: 4px;
  height: 22px;
  background: linear-gradient(180deg, var(--brand), var(--accent));
  border-radius: 4px;
  flex-shrink: 0;
}

.content-section p {
  color: var(--text);
  margin-bottom: 16px;
  font-size: 15px;
  opacity: 0.88;
}

/* Styled list */
/* ---- bullet styled-list (ul, non-numbered) ---- */
.styled-list { padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 6px; }
.styled-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 16px;
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 8px;
  color: var(--text);
  font-size: 15px;
}
.styled-list li > span { flex: 1; min-width: 0; }
.styled-list li > span strong { display: inline; font-weight: 700; }
.styled-list li::before {
  content: "–";
  color: var(--brand);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---- steps-table (ol, numbered how-to-play) ---- */
.steps-table {
  padding: 0;
  list-style: none;
  counter-reset: steps;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 10px;
  overflow: hidden;
}
.steps-table li {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: stretch;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 15px;
  color: var(--text);
  transition: background 0.15s;
}
.steps-table li:last-child { border-bottom: none; }
.steps-table li:nth-child(odd)  { background: var(--bg3); }
.steps-table li:nth-child(even) { background: rgba(255,255,255,0.03); }
.steps-table li:hover { background: rgba(255,255,255,0.06); }
.steps-table li::before {
  content: counter(steps);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand), #f97316);
  color: #000;
  font-weight: 900;
  font-size: 13px;
  min-height: 100%;
  flex-shrink: 0;
}
.steps-table li > span {
  padding: 13px 18px;
  min-width: 0;
  line-height: 1.55;
}
.steps-table li > span strong { display: inline; font-weight: 700; }

/* =============================================
   FEATURES GRID
   ============================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 8px;
}

.feature-card {
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--feature-accent, rgba(245,158,11,0.3)), transparent);
}
.feature-card:nth-child(1) { --feature-accent: rgba(245,158,11,0.5); }
.feature-card:nth-child(2) { --feature-accent: rgba(239,68,68,0.5); }
.feature-card:nth-child(3) { --feature-accent: rgba(16,185,129,0.5); }
.feature-card:nth-child(4) { --feature-accent: rgba(124,58,237,0.5); }
.feature-card:hover { border-color: rgba(255,255,255,0.14); transform: translateY(-3px); }
.feature-card h3 { font-size: 15px; color: #fff; font-weight: 700; }
.feature-card p { font-size: 13px; color: var(--text); opacity: 0.82; margin: 0; line-height: 1.55; }

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.feature-icon--amber  { background: rgba(245,158,11,0.12); border: 1px solid rgba(245,158,11,0.2); }
.feature-icon--red    { background: rgba(239,68,68,0.12);  border: 1px solid rgba(239,68,68,0.2); }
.feature-icon--green  { background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.2); }
.feature-icon--purple { background: rgba(124,58,237,0.12); border: 1px solid rgba(124,58,237,0.3); }

/* Info Callout */
.info-callout {
  border-radius: 10px;
  padding: 15px 20px;
  font-size: 14px;
  margin: 16px 0;
  line-height: 1.6;
}
.info-callout--gold {
  background: rgba(245,158,11,0.07);
  border: 1px solid rgba(245,158,11,0.2);
  color: #fde68a;
}
.info-callout--blue {
  background: rgba(99,102,241,0.07);
  border: 1px solid rgba(99,102,241,0.25);
  color: #c4b5fd;
}

/* Data Table */
/* =============================================
   PAYTABLE
   ============================================= */
.paytable {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  font-size: 14px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
}
.paytable thead tr {
  background: linear-gradient(135deg, rgba(251,191,36,0.18), rgba(249,115,22,0.14));
}
.paytable th {
  padding: 11px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #fbbf24;
  text-align: right;
  border-bottom: 2px solid rgba(251,191,36,0.30);
  white-space: nowrap;
}
.paytable th:first-child { text-align: left; }
.paytable tbody tr:nth-child(odd)  { background: var(--bg3); }
.paytable tbody tr:nth-child(even) { background: rgba(255,255,255,0.03); }
.paytable tbody tr:first-child td  { color: #fbbf24; font-weight: 600; }
.paytable tbody tr:hover td { background: rgba(255,255,255,0.05); }
.paytable td {
  padding: 11px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--text);
  text-align: right;
}
.paytable td:first-child {
  text-align: left;
  font-weight: 500;
}
.paytable tbody tr:last-child td { border-bottom: none; }

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  font-size: 14px;
  background: var(--glass);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
}
.data-table th {
  background: rgba(255,255,255,0.06);
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.07em;
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--glass-border);
}
.data-table td {
  padding: 13px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--text);
  font-size: 14px;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover td { background: rgba(255,255,255,0.02); }

/* =============================================
   RTP VISUAL
   ============================================= */
.rtp-visual {
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  backdrop-filter: blur(8px);
}

.rtp-bar-wrap { display: flex; flex-direction: column; gap: 10px; }
.rtp-bar-label { font-size: 15px; font-weight: 700; color: #fff; }

.rtp-track {
  height: 12px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  overflow: hidden;
}
.rtp-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), #059669);
  border-radius: 10px;
  width: 0;
  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 0 12px rgba(16,185,129,0.4);
}
.rtp-range {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
}

.volatility-meter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.vol-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-muted); font-weight: 700; }

.vol-bars {
  display: flex;
  gap: 4px;
  align-items: flex-end;
  height: 36px;
}
.vol-bar {
  width: 10px;
  border-radius: 3px 3px 0 0;
  background: rgba(255,255,255,0.08);
}
.vol-bar:nth-child(1) { height: 30%; }
.vol-bar:nth-child(2) { height: 50%; }
.vol-bar:nth-child(3) { height: 70%; }
.vol-bar:nth-child(4) { height: 85%; }
.vol-bar:nth-child(5) { height: 100%; }
.vol-bar.vol-active { background: linear-gradient(180deg, #fca5a5, #ef4444); box-shadow: 0 0 8px rgba(239,68,68,0.5); }

.vol-text { font-size: 13px; font-weight: 800; color: #f87171; }

/* =============================================
   VERDICT
   ============================================= */
.verdict-box {
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.verdict-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), #f97316, var(--accent-light));
}

.verdict-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  border-right: 1px solid var(--glass-border);
  padding-right: 32px;
}
.verdict-number {
  font-size: 64px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.04em;
  text-shadow: 0 0 40px rgba(245,158,11,0.35);
}
.verdict-stars { color: var(--gold); font-size: 18px; letter-spacing: 3px; }
.verdict-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.25);
  padding: 3px 10px;
  border-radius: 20px;
}

.verdict-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.verdict-pros-cons h4 { font-size: 12px; font-weight: 800; margin-bottom: 10px; letter-spacing: 0.05em; text-transform: uppercase; }
.pros h4 { color: var(--green); }
.cons h4 { color: #f87171; }
.verdict-pros-cons ul { padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 5px; }
.verdict-pros-cons li {
  font-size: 13px;
  color: var(--text);
  opacity: 0.88;
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid transparent;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}
.pros li { border-color: rgba(16,185,129,0.1); }
.cons li { border-color: rgba(239,68,68,0.1); }

/* =============================================
   FAQ
   ============================================= */
.faq-list { display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }

.faq-item {
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(245,158,11,0.22); }

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  gap: 12px;
  font-family: inherit;
  transition: background 0.15s;
}
.faq-question:hover { background: rgba(255,255,255,0.03); }

.faq-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--brand);
  flex-shrink: 0;
  transition: transform 0.25s, background 0.15s;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); background: rgba(245,158,11,0.1); border-color: rgba(245,158,11,0.3); }

.faq-answer {
  display: none;
  padding: 0 22px 18px;
  border-top: 1px solid var(--glass-border);
}
.faq-item.open .faq-answer { display: block; }
.faq-answer p { margin: 14px 0 0; font-size: 14px; color: var(--text); opacity: 0.85; line-height: 1.65; }

/* =============================================
   AUTHOR PAGE
   ============================================= */
.author-profile-card {
  background: var(--bg2);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 48px;
}

.author-profile-top {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(124,58,237,0.08) 0%, rgba(245,158,11,0.04) 100%);
  border-bottom: 1px solid var(--glass-border);
  position: relative;
}
.author-profile-top::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,0.4), transparent);
}

.author-profile-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(124,58,237,0.45);
  box-shadow: 0 0 24px rgba(124,58,237,0.25);
  display: block;
}

.author-profile-name {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.author-profile-title {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.author-profile-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.author-profile-bio {
  padding: 32px;
}
.author-profile-bio h2 {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.author-profile-bio h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--brand);
  margin: 28px 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 12px;
}
.author-profile-bio p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 8px;
}
.expertise-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
}
.expertise-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.expertise-item strong { font-size: 14px; color: #fff; display: block; margin-bottom: 4px; }
.expertise-item p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.5; }

.author-editorial-note {
  background: rgba(245,158,11,0.05);
  border: 1px solid rgba(245,158,11,0.15);
  border-radius: 10px;
  padding: 20px 22px;
  margin-top: 20px;
}
.author-editorial-note p { margin: 0; font-size: 14px; }

/* Author review cards */
.author-reviews-section { margin-top: 16px; }
.author-reviews-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-reviews-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 18px;
  background: linear-gradient(180deg, var(--brand), var(--accent));
  border-radius: 4px;
}
.author-reviews-grid { display: flex; flex-direction: column; gap: 8px; }
.author-review-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg2);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.15s;
}
.author-review-card:hover { border-color: rgba(245,158,11,0.3); transform: translateY(-1px); text-decoration: none; }
.arc-info { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.arc-info strong { font-size: 14px; color: #fff; font-weight: 700; }
.arc-info span { font-size: 12px; color: var(--text-muted); }
.arc-updated { color: var(--text-dim) !important; font-size: 11px !important; }
.arc-score { font-size: 13px; font-weight: 800; color: var(--gold); white-space: nowrap; }

@media (max-width: 600px) {
  .expertise-grid { grid-template-columns: 1fr; }
  .author-profile-top { flex-direction: column; text-align: center; }
  .author-profile-tags { justify-content: center; }
}

/* =============================================
   SIMILAR SLOTS BOTTOM SECTION
   ============================================= */
.similar-slots-section {
  background: var(--bg2);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 48px 0;
}
.similar-slots-heading {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}
.similar-slots-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.ss-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px 12px 16px;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.ss-card:hover {
  border-color: var(--brand);
  background: var(--bg4);
  transform: translateY(-3px);
}
.ss-thumb {
  width: 64px;
  height: 64px;
  background: var(--bg4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.ss-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.3;
}
.ss-card:hover .ss-name { color: var(--text); }

@media (max-width: 900px) {
  .similar-slots-row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 500px) {
  .similar-slots-row { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--glass-border);
  padding-top: 56px;
  margin-top: 20px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo { margin-bottom: 14px; }
.site-footer p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { color: var(--text-muted); font-size: 13px; }
.footer-col ul a:hover { color: #fff; }

.rg-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.rg-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  color: var(--text-dim);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
a.rg-badge:hover {
  border-color: var(--brand);
  color: var(--text);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding: 18px 0;
  font-size: 12px;
  color: var(--text-muted);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .verdict-box { grid-template-columns: 1fr; }
  .verdict-score { border-right: none; padding-right: 0; border-bottom: 1px solid var(--glass-border); padding-bottom: 24px; flex-direction: row; justify-content: center; gap: 20px; align-items: center; }
  .rtp-visual { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .btn-header { display: none; }
  .burger { display: flex; }
  .site-header { position: sticky; } /* ensure relative context for dropdown */
}

@media (max-width: 600px) {
  .hero-info h1 { font-size: 32px; }
  .quick-stats { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .verdict-pros-cons { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .verdict-score { flex-direction: column; align-items: center; }
  .container { padding: 0 16px; }
  .hero-casino-strip-row { grid-template-columns: 1fr; }
  .h1-sub { font-size: 18px; font-weight: 400; letter-spacing: 0; opacity: 0.75; }
  .toc-sticky-label { display: none; }
  /* Mobile demo frame — taller aspect ratio so game is playable */
  .inline-demo-frame { padding-top: 75%; }
  .inline-demo-frame.demo-loaded iframe { -webkit-overflow-scrolling: touch; }
}
