/* ==========================================================================
   lekingdemo.com - Le King slot review
   Theme: Vegas neon / Elvis raccoon
   Palette pulled from the game art: deep purple, hot magenta, neon yellow,
   electric cyan accent.
   ========================================================================== */

:root {
  --bg: #150529;
  --bg-deep: #0c0319;
  --bg-elev: #21093c;
  --bg-elev-2: #2c0e4f;
  --border: rgba(255, 46, 154, 0.22);
  --border-soft: rgba(255, 255, 255, 0.08);
  --pink: #ff2e9a;
  --pink-bright: #ff5fb4;
  --pink-deep: #c81b78;
  --yellow: #ffc107;
  --yellow-bright: #ffd83d;
  --orange: #ff7b1f;
  --cyan: #1ec8ff;
  --cyan-soft: #6fe0ff;
  --green: #76ff03;
  --green-deep: #4caf50;
  --red: #ff3b3b;
  --text: #f4ecff;
  --text-soft: #cdb7e0;
  --text-muted: #8d7aa8;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-card: 0 10px 26px rgba(0, 0, 0, 0.45);
  --glow-pink: 0 0 24px rgba(255, 46, 154, 0.45);
  --glow-yellow: 0 0 24px rgba(255, 193, 7, 0.55);
  --glow-cyan: 0 0 22px rgba(30, 200, 255, 0.45);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse at 15% 0%, rgba(255, 46, 154, 0.18), transparent 55%),
    radial-gradient(ellipse at 90% 30%, rgba(255, 193, 7, 0.14), transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(30, 200, 255, 0.10), transparent 60%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
  max-width: 100vw;
}

/* Container clamps to viewport on mobile so internal scroll stays inside tables */
.container { width: 100%; max-width: min(1180px, 100%); }

h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--text);
}

h1 { font-size: clamp(1.95rem, 4.6vw, 2.95rem); }
h2 { font-size: clamp(1.55rem, 3.4vw, 2.15rem); margin-bottom: 18px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4 { font-size: 1.05rem; margin-bottom: 8px; }

p { margin-bottom: 14px; color: var(--text-soft); }
a { color: var(--cyan); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--cyan-soft); }

strong { color: var(--text); font-weight: 700; }

/* === ACCESSIBILITY: underline inline links in body text (WCAG 1.4.1) === */
/* So links can be distinguished without relying on color alone. */
main p a,
main dd a,
main li a,
.faq-item .faq-body a,
.footer-disclaimer a,
.footer-bottom a,
.disclaimer-bar a,
.glossary-item dd a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
/* Strip the underline back off where the link is visually a chip / button / nav item */
main .btn,
main .related-card,
main .faq-item summary a,
main .casino-card a,
main li.related-stats,
.main-nav a,
.side-nav-link,
.share-ic,
.footer-col a,
.floating-gift,
.error-logo,
.site-logo,
.footer-logo-link {
  text-decoration: none;
}

/* === LAYOUT === */
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* === DISCLAIMER BAR === */
.disclaimer-bar {
  background: linear-gradient(90deg, var(--pink-deep) 0%, var(--pink) 50%, var(--orange) 100%);
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  padding: 9px 16px;
  letter-spacing: 0.01em;
}
.disclaimer-bar a { color: #fff; font-weight: 700; text-decoration: underline; }

/* === TRUST BAR === */
.trust-bar {
  background: var(--bg-deep);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  padding: 9px 16px;
  font-size: 12.5px;
  color: var(--text-muted);
}
.trust-bar .tb-icon { color: var(--yellow); margin-right: 5px; }

/* === HEADER === */
.site-header {
  background: rgba(12, 3, 25, 0.85);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  color: var(--text);
  text-decoration: none;
}
.site-logo img {
  height: 52px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(255, 46, 154, 0.3));
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
  position: relative;
}
.main-nav a:hover { color: var(--yellow); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--pink);
  margin: 5px 0;
  border-radius: 2px;
}

/* === LEFT SIDE TOC === */
.side-nav {
  position: fixed;
  top: 190px;
  left: 16px;
  width: 200px;
  max-height: calc(100vh - 220px);
  overflow-y: auto;
  background: rgba(21, 5, 41, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 14px 16px;
  z-index: 85;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  scrollbar-width: thin;
  scrollbar-color: var(--pink) transparent;
}
.side-nav::-webkit-scrollbar { width: 4px; }
.side-nav::-webkit-scrollbar-thumb { background: var(--pink); border-radius: 2px; }
.side-nav-title {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  padding-bottom: 10px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.side-nav-list {
  list-style: none;
  counter-reset: section;
  padding: 0;
  margin: 0;
}
.side-nav-list li {
  counter-increment: section;
  margin: 0;
  padding: 0;
}
.side-nav-link {
  display: block;
  padding: 7px 8px 7px 30px;
  position: relative;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-soft);
  text-decoration: none;
  border-radius: 7px;
  border-left: 2px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s, padding 0.15s;
  line-height: 1.35;
}
.side-nav-link::before {
  content: counter(section, decimal-leading-zero);
  position: absolute;
  left: 8px;
  top: 8px;
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}
.side-nav-link:hover {
  background: rgba(255, 46, 154, 0.08);
  color: var(--pink-bright);
}
.side-nav-link:hover::before { color: var(--pink-bright); }
.side-nav-link.active {
  background: linear-gradient(90deg, rgba(255, 46, 154, 0.22), rgba(255, 46, 154, 0.02));
  color: var(--yellow);
  border-left-color: var(--yellow);
  padding-left: 32px;
}
.side-nav-link.active::before { color: var(--yellow); }

/* Side-nav visibility & overlap handling.

   - >= 1660px: viewport is wide enough that the fixed 200px nav clears the
     centred 1180px content column on its own. Show as-is.
   - 1100px - 1659px: not enough free margin, so the nav would sit over the
     text. Shift the page content right (padding-left) to carve out room for it.
   - < 1100px: too cramped; hide it. The header nav + in-page anchors cover it. */
@media (max-width: 1659px) and (min-width: 1100px) {
  .page-hero .container,
  main.container {
    padding-left: 248px;
  }
}
@media (max-width: 1099px) {
  .side-nav { display: none; }
}

/* === FLOATING BONUS CTA === Raccoon-star icon + BONUS badge */
.floating-gift {
  position: fixed;
  top: 190px;
  right: 22px;
  z-index: 90;
  width: 96px;
  height: 90px;
  display: block;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s, filter 0.25s;
  animation: starPulse 2.4s ease-in-out infinite;
  filter: drop-shadow(0 4px 14px rgba(255, 123, 31, 0.55));
}
.floating-gift-icon {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.floating-gift-badge {
  position: absolute;
  top: -8px;
  right: -18px;
  background: linear-gradient(135deg, var(--pink) 0%, var(--orange) 100%);
  color: #fff;
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 4px 11px;
  border-radius: 999px;
  text-transform: uppercase;
  white-space: nowrap;
  transform: rotate(10deg);
  box-shadow:
    0 4px 12px rgba(255, 46, 154, 0.6),
    0 0 0 2px rgba(21, 5, 41, 0.95),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: badgeBob 1.8s ease-in-out infinite;
}
.floating-gift:hover {
  transform: scale(1.08) rotate(-3deg);
  filter: drop-shadow(0 6px 22px rgba(255, 199, 7, 0.8));
}
.floating-gift:hover .floating-gift-badge {
  transform: rotate(0deg) scale(1.1);
  box-shadow:
    0 6px 18px rgba(255, 46, 154, 0.8),
    0 0 0 2px rgba(21, 5, 41, 0.95),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.floating-gift:active { transform: scale(0.96); }

@keyframes starPulse {
  0%, 100% { filter: drop-shadow(0 4px 12px rgba(255, 123, 31, 0.5)); }
  50%      { filter: drop-shadow(0 6px 22px rgba(255, 199, 7, 0.85)) drop-shadow(0 0 8px rgba(255, 46, 154, 0.35)); }
}

@keyframes badgeBob {
  0%, 100% { transform: rotate(10deg) translateY(0); }
  50%      { transform: rotate(10deg) translateY(-2px); }
}

@media (max-width: 600px) {
  .floating-gift {
    top: 138px;
    right: 20px;
    width: 76px;
    height: 72px;
  }
  .floating-gift-badge {
    font-size: 9px;
    padding: 3px 9px;
    top: -7px;
    right: -14px;
    letter-spacing: 0.04em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-gift, .floating-gift-badge { animation: none; }
}

/* === HERO === */
.page-hero {
  padding: 56px 0 44px;
  position: relative;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -60px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.18), transparent 65%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255, 46, 154, 0.16), transparent 65%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 44px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-text h1 {
  margin-bottom: 16px;
  color: #fff;
}
.hero-text h1 .accent {
  display: block;
  font-size: 0.45em;
  font-weight: 600;
  color: var(--yellow);
  margin-top: 8px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.hero-sub {
  font-size: 1.06rem;
  color: var(--text-soft);
  margin-bottom: 24px;
  max-width: 580px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 22px;
}
.hero-meta strong { color: var(--yellow); font-weight: 600; }
.hero-meta .meta-item { display: flex; align-items: center; gap: 6px; }

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 14px 36px rgba(255, 46, 154, 0.35));
}

/* Spec card under hero / sidebar */
.spec-card {
  background: linear-gradient(160deg, var(--bg-elev) 0%, var(--bg-elev-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-card);
}
.spec-card .heading {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px;
  text-align: center;
}
.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.spec-grid .spec {
  background: var(--bg-elev);
  padding: 13px 14px;
}
.spec .label {
  font-size: 10.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
}
.spec .value {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-size: 19px;
  color: var(--yellow);
  font-weight: 800;
}

.rating-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  background: linear-gradient(135deg, var(--pink) 0%, var(--orange) 100%);
  color: #fff;
  padding: 7px 16px;
  border-radius: 999px;
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-weight: 800;
  font-size: 17px;
  box-shadow: var(--glow-pink);
}
.rating-badge .out-of { font-size: 12px; opacity: 0.8; font-weight: 600; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  border: 0;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--pink) 0%, var(--orange) 100%);
  color: #fff;
  box-shadow: var(--glow-pink);
}
.btn-primary:hover { color: #fff; box-shadow: 0 0 32px rgba(255, 46, 154, 0.55); }

.btn-yellow {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-bright) 100%);
  color: var(--bg-deep);
  box-shadow: var(--glow-yellow);
}
.btn-yellow:hover { color: var(--bg-deep); box-shadow: 0 0 32px rgba(255, 216, 61, 0.7); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.02);
  color: var(--cyan);
  border: 1px solid var(--cyan);
}
.btn-ghost:hover { background: rgba(30, 200, 255, 0.08); color: var(--cyan-soft); }

.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-lg { padding: 16px 38px; font-size: 16px; }

/* === SECTIONS === */
section { padding: 50px 0; }
.section-title {
  display: inline-block;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.section-title::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 70px; height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--yellow));
  border-radius: 2px;
}
.section-intro {
  color: var(--text-soft);
  font-size: 1.04rem;
  margin-bottom: 28px;
  max-width: 780px;
}

/* === DEMO IFRAME === */
.demo-wrapper {
  background: var(--bg-elev);
  border: 2px solid var(--cyan);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card), var(--glow-cyan);
}
.demo-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--bg-deep);
}
.demo-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.demo-loader {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  background: var(--bg-deep);
  display: block;
  overflow: hidden;
  font-family: inherit;
  color: inherit;
}
.demo-loader-poster {
  position: absolute;
  inset: 0;
  display: block;
}
.demo-loader-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  filter: blur(2px);
  display: block;
}
.demo-loader-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background:
    radial-gradient(ellipse at center, rgba(255, 46, 154, 0.35) 0%, rgba(7, 3, 16, 0.6) 70%);
  transition: background 0.25s;
}
.demo-loader:hover .demo-loader-overlay,
.demo-loader:focus-visible .demo-loader-overlay {
  background:
    radial-gradient(ellipse at center, rgba(255, 46, 154, 0.55) 0%, rgba(7, 3, 16, 0.5) 70%);
}
.demo-loader-play {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink) 0%, var(--orange) 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  padding-left: 8px;
  box-shadow: 0 8px 32px rgba(255, 46, 154, 0.55);
  transition: transform 0.2s, box-shadow 0.2s;
}
.demo-loader:hover .demo-loader-play,
.demo-loader:focus-visible .demo-loader-play {
  transform: scale(1.08);
  box-shadow: 0 10px 40px rgba(255, 46, 154, 0.75);
}
.demo-loader-text {
  text-align: center;
  font-family: 'Inter', sans-serif;
}
.demo-loader-text strong {
  display: block;
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-size: 22px;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}
.demo-loader-text small {
  font-size: 12.5px;
  color: var(--text-soft);
  letter-spacing: 0.05em;
}
@media (max-width: 600px) {
  .demo-loader-play { width: 64px; height: 64px; font-size: 28px; }
  .demo-loader-text strong { font-size: 17px; }
  .demo-loader-text small { font-size: 11px; }
}
.demo-bar {
  padding: 14px 22px;
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.demo-bar .demo-note {
  font-size: 13px;
  color: var(--text-muted);
}
.demo-bar .demo-note strong { color: var(--yellow); }

/* === TABLES === */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  max-width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elev);
  /* Scroll-hint shadows on the right edge when content overflows */
  background:
    linear-gradient(to right, var(--bg-elev) 30%, rgba(33, 9, 60, 0)) left center,
    linear-gradient(to right, rgba(33, 9, 60, 0), var(--bg-elev) 70%) right center,
    radial-gradient(farthest-side at 0 50%, rgba(0, 0, 0, 0.35), transparent) left center,
    radial-gradient(farthest-side at 100% 50%, rgba(0, 0, 0, 0.35), transparent) right center,
    var(--bg-elev);
  background-repeat: no-repeat;
  background-size: 28px 100%, 28px 100%, 12px 100%, 12px 100%;
  background-attachment: local, local, scroll, scroll;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}
caption {
  caption-side: top;
  padding: 14px 18px;
  text-align: left;
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--yellow);
  border-bottom: 1px solid var(--border);
  background: var(--bg-deep);
}
th, td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-soft);
  text-align: left;
  vertical-align: middle;
  color: var(--text-soft);
}
thead th {
  background: var(--bg-deep);
  color: var(--yellow);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 12.5px;
  text-transform: uppercase;
}
tbody th[scope="row"] {
  background: transparent;
  color: var(--text-soft);
  font-weight: 400;
  letter-spacing: normal;
  font-size: 14.5px;
  text-transform: none;
  width: auto;
}
tbody tr:hover { background: rgba(255, 46, 154, 0.04); }
tbody tr:last-child td { border-bottom: 0; }
td strong { color: var(--text); }

/* === FEATURE CARDS === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.feature-card {
  background: linear-gradient(160deg, var(--bg-elev) 0%, var(--bg-elev-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--pink);
  box-shadow: var(--glow-pink);
}
.feature-card .feat-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: rgba(255, 46, 154, 0.15);
  color: var(--pink-bright);
  border-radius: 999px;
  margin-bottom: 12px;
}
.feature-card h3 {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* === JACKPOT BADGES (visual block matching the in-game UI) === */
.jackpot-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 22px 0;
}
.jackpot-tier {
  background: var(--bg-elev);
  border: 2px solid currentColor;
  border-radius: var(--radius-sm);
  padding: 14px;
  text-align: center;
  position: relative;
  box-shadow: 0 0 22px currentColor;
}
.jackpot-tier .tier-label {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}
.jackpot-tier .tier-value {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  display: block;
}
.jackpot-tier.tier-max { color: var(--yellow); }
.jackpot-tier.tier-mega { color: var(--pink-bright); }
.jackpot-tier.tier-major { color: var(--cyan); }
.jackpot-tier.tier-mini { color: var(--green); }

/* === PROS / CONS === */
.proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.proscons-box {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.proscons-box h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.proscons-box.pros h3 { color: var(--green); }
.proscons-box.cons h3 { color: var(--pink-bright); }
.proscons-box ul { list-style: none; }
.proscons-box li {
  padding: 8px 0 8px 26px;
  position: relative;
  border-bottom: 1px solid var(--border-soft);
  font-size: 14.5px;
  color: var(--text-soft);
}
.proscons-box li:last-child { border-bottom: 0; }
.proscons-box.pros li::before { content: '+'; position: absolute; left: 0; color: var(--green); font-weight: 800; font-size: 18px; line-height: 1; top: 11px; }
.proscons-box.cons li::before { content: '−'; position: absolute; left: 0; color: var(--pink-bright); font-weight: 800; font-size: 18px; line-height: 1; top: 11px; }

/* === SCREENSHOT GALLERY === */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.gallery figure {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elev);
  transition: transform 0.2s, border-color 0.2s;
}
.gallery figure:hover {
  transform: translateY(-3px);
  border-color: var(--pink);
}
.gallery-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  margin: 0;
  background: none;
  cursor: zoom-in;
  position: relative;
  line-height: 0;
}
.gallery-trigger::after {
  content: '\26F6';
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #fff;
  background: rgba(7, 3, 16, 0.65);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.gallery figure:hover .gallery-trigger::after,
.gallery-trigger:focus-visible::after { opacity: 1; }
.gallery img {
  width: 100%;
  height: auto;
  display: block;
}

/* === LIGHTBOX === */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: rgba(7, 3, 16, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: fadeIn 0.2s ease-out;
}
.lightbox[hidden] { display: none; }
.lightbox-stage {
  margin: 0;
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.lightbox-stage img {
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  border: 2px solid var(--pink);
  box-shadow: 0 0 40px rgba(255, 46, 154, 0.4);
  display: block;
}
.lightbox-stage figcaption {
  color: var(--text-soft);
  font-size: 14.5px;
  text-align: center;
  max-width: 700px;
  font-family: 'Inter', sans-serif;
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.lightbox-close:hover { background: var(--pink); transform: rotate(90deg); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-nav:hover { background: var(--pink); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-counter {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.05em;
}
@media (max-width: 600px) {
  .lightbox { padding: 20px 10px; }
  .lightbox-nav { width: 42px; height: 42px; font-size: 26px; }
  .lightbox-prev { left: 6px; }
  .lightbox-next { right: 6px; }
  .lightbox-stage img { max-height: 70vh; }
  .lightbox-stage figcaption { font-size: 13px; }
}
.gallery figcaption {
  padding: 10px 14px;
  font-size: 12.5px;
  color: var(--text-muted);
  background: var(--bg-deep);
}

/* === 404 / ERROR PAGE LOGO === */
.error-logo {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 32px;
  transition: transform 0.2s;
}
.error-logo:hover { transform: scale(1.03); }
.error-logo img {
  height: auto;
  max-width: 480px;
  width: 100%;
  display: block;
  filter: drop-shadow(0 8px 26px rgba(255, 46, 154, 0.45));
}
@media (max-width: 600px) {
  .error-logo img { max-width: 320px; }
}

/* === PULL QUOTE === */
.pullquote {
  margin: 32px auto;
  max-width: 720px;
  padding: 24px 46px 20px;
  text-align: center;
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pullquote::before,
.pullquote::after {
  position: absolute;
  font-family: Georgia, 'Times New Roman', serif;
  font-style: normal;
  font-weight: 700;
  font-size: 58px;
  line-height: 1;
  background: linear-gradient(135deg, var(--pink) 0%, var(--orange) 50%, var(--yellow) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 0 8px rgba(255, 46, 154, 0.35));
  pointer-events: none;
  user-select: none;
}
.pullquote::before {
  content: '\201C';
  top: 6px;
  left: 8px;
}
.pullquote::after {
  content: '\201D';
  bottom: -16px;
  right: 8px;
}
.pullquote p {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: clamp(1rem, 1.9vw, 1.25rem);
  line-height: 1.5;
  color: var(--text);
  margin: 0 0 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.pullquote cite {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
.pullquote cite::before {
  content: '\2014';
  color: var(--yellow);
  font-weight: 400;
}
@media (max-width: 600px) {
  .pullquote { padding: 20px 30px 16px; margin: 24px auto; }
  .pullquote::before, .pullquote::after { font-size: 42px; }
  .pullquote::before { top: 4px; left: 4px; }
  .pullquote::after { bottom: -12px; right: 4px; }
  .pullquote cite { font-size: 11px; }
}

/* === RELATED SLOTS CARDS === */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.related-card {
  background: linear-gradient(160deg, var(--bg-elev) 0%, var(--bg-elev-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.related-card:hover {
  transform: translateY(-3px);
  border-color: var(--pink);
  box-shadow: var(--glow-pink);
}
.related-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.related-emoji {
  font-size: 30px;
  display: inline-block;
  line-height: 1;
  filter: drop-shadow(0 2px 6px rgba(255, 46, 154, 0.4));
}
.related-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.related-desc {
  flex: 1;
  font-size: 13.5px;
  color: var(--text-soft);
  margin-bottom: 14px;
  line-height: 1.55;
}
.related-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 12px 0 0;
  border-top: 1px solid var(--border);
}
.related-stats li {
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: 11px;
}
.related-stats li span {
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.related-stats li strong {
  color: var(--yellow);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px;
  font-weight: 800;
}

/* === GLOSSARY === */
.glossary-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  margin: 0;
}
.glossary-item {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  transition: border-color 0.2s;
}
.glossary-item:hover { border-color: var(--cyan); }
.glossary-item dt {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-weight: 800;
  color: var(--yellow);
  font-size: 0.98rem;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.glossary-item dd {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-soft);
}
.glossary-item dd a { color: var(--cyan); }

/* === LAST UPDATED TAGLINE === */
.last-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(118, 255, 3, 0.08);
  border: 1px solid rgba(118, 255, 3, 0.3);
  color: var(--green);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.last-updated::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.3); }
}

/* === STICKY MOBILE CTA BAR === */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 95;
  background: rgba(12, 3, 25, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--pink);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.5);
}
.mobile-cta-bar-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 8px;
  align-items: stretch;
}
.mobile-cta-bar .btn {
  padding: 12px 14px;
  font-size: 13.5px;
  white-space: nowrap;
}
.mobile-cta-bar .btn-primary {
  box-shadow: 0 0 20px rgba(255, 46, 154, 0.5);
}
@media (max-width: 820px) {
  .mobile-cta-bar { display: block; }
  body { padding-bottom: 70px; }
}
@media (max-width: 420px) {
  .mobile-cta-bar .btn { padding: 11px 10px; font-size: 12.5px; }
}

/* === SESSION TIME REMINDER MODAL === */
.session-modal {
  position: fixed;
  inset: 0;
  background: rgba(7, 3, 16, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.25s ease-out;
}
.session-modal.is-open { display: flex; }
.session-modal-box {
  background: linear-gradient(160deg, var(--bg-elev) 0%, var(--bg-elev-2) 100%);
  border: 2px solid var(--pink);
  border-radius: var(--radius);
  padding: 28px 26px 24px;
  max-width: 460px;
  width: 100%;
  box-shadow: var(--shadow-card), var(--glow-pink);
  position: relative;
}
.session-modal-box h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.session-modal-box h3::before {
  content: '\23F1';
  font-size: 1.4rem;
}
.session-modal-box p {
  font-size: 14.5px;
  color: var(--text-soft);
  margin-bottom: 16px;
  line-height: 1.6;
}
.session-modal-box .session-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.session-modal-box .session-actions .btn { flex: 1; }
.session-modal-box .session-help {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 12.5px;
  color: var(--text-muted);
}
.session-modal-box .session-help a { color: var(--yellow); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* === VS IMAGE (Le King vs Le Bandit) === */
.vs-image {
  margin: 0 auto 22px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-deep);
  box-shadow: var(--shadow-card);
  max-width: 720px;
  position: relative;
}
.vs-image img {
  width: 100%;
  height: auto;
  display: block;
}
.vs-image::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 60px rgba(255, 46, 154, 0.18), inset 0 0 30px rgba(30, 200, 255, 0.12);
  border-radius: inherit;
}

/* === FAQ === */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: var(--pink); }
.faq-item summary {
  padding: 16px 20px;
  cursor: pointer;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--yellow);
  font-size: 24px;
  font-weight: 300;
  transition: transform 0.2s;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--pink-bright); }
.faq-item .faq-body {
  padding: 0 20px 18px;
  color: var(--text-soft);
  font-size: 14.5px;
  line-height: 1.7;
}
.faq-item .faq-body p { margin-bottom: 10px; color: var(--text-soft); }

/* === BREADCRUMB === */
.breadcrumb {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--cyan); }
.breadcrumb span { color: var(--text-muted); margin: 0 7px; }

/* === SHARE BAR === */
.share-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 22px 0 28px;
}
.share-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-right: 4px;
}
.share-ic {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elev);
  color: var(--text-soft);
  border: 1px solid var(--border);
  transition: all 0.18s;
}
.share-ic:hover { background: var(--pink); color: #fff; border-color: var(--pink); }

/* === VERDICT === */
.verdict-box {
  background: linear-gradient(160deg, var(--bg-elev) 0%, var(--bg-elev-2) 100%);
  border: 1px solid var(--pink);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--glow-pink);
  position: relative;
}
.verdict-box h2 {
  color: var(--yellow);
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}
.verdict-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 28px;
  align-items: start;
}
.verdict-rating {
  background: var(--bg-deep);
  border-radius: var(--radius-sm);
  padding: 24px;
  text-align: center;
  border: 1px solid var(--border);
}
.verdict-rating .score {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 3.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--pink) 0%, var(--yellow) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 4px;
}
.verdict-rating .score-label {
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
.rating-table {
  text-align: left;
  margin-top: 20px;
  width: 100%;
  font-size: 13px;
}
.rating-table td { padding: 6px 0; border: 0; color: var(--text-soft); }
.rating-table .bar {
  display: inline-block;
  height: 6px;
  width: 80px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
  vertical-align: middle;
  margin: 0 6px;
}
.rating-table .bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--pink), var(--yellow));
}

@media (max-width: 800px) {
  .verdict-grid { grid-template-columns: 1fr; }
}

/* === AUTHOR BOX === */
.author-box {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 14px;
  color: var(--text-soft);
}
.author-box .avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 22px;
  flex-shrink: 0;
  object-fit: cover;
  border: 2px solid var(--pink);
  box-shadow: 0 4px 12px rgba(255, 46, 154, 0.3);
}
img.author-box-avatar, .author-box img.avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--pink);
  box-shadow: 0 4px 12px rgba(255, 46, 154, 0.3);
  display: block;
}
.author-box .meta strong { color: var(--text); display: block; font-size: 15px; }
.author-box .meta span { color: var(--text-muted); font-size: 12.5px; }

/* === REAL MONEY CTA BOX === */
.cta-box {
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 46, 154, 0.25), transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(255, 193, 7, 0.22), transparent 60%),
    var(--bg-elev);
  border: 2px solid var(--pink);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
  box-shadow: var(--glow-pink);
  margin: 24px 0;
}
.cta-box h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  margin-bottom: 12px;
  color: #fff;
}
.cta-box p { color: var(--text-soft); max-width: 620px; margin: 0 auto 22px; }
.cta-box .btn { font-size: 17px; padding: 16px 38px; }
.cta-box .tiny { font-size: 12px; color: var(--text-muted); margin-top: 14px; margin-bottom: 0; }

/* === FOOTER === */
.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  margin-top: 60px;
  padding: 44px 20px 22px;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 32px;
}
.footer-col-title {
  color: var(--yellow);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  margin: 0 0 14px;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-transform: none;
}
.footer-col ul { list-style: none; }
.footer-col li { padding: 4px 0; }
.footer-col a { color: var(--text-muted); font-size: 13.5px; }
.footer-col a:hover { color: var(--cyan); }
.footer-logo-link {
  display: inline-block;
  margin-bottom: 14px;
}
.footer-logo-link img {
  height: 56px;
  width: auto;
  display: block;
  filter: drop-shadow(0 3px 10px rgba(255, 46, 154, 0.3));
}
@media (max-width: 600px) {
  .footer-logo-link img { height: 44px; }
}
.footer-desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; }
.footer-desc strong { color: var(--text-soft); }

.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  font-size: 12.5px;
  color: var(--text-muted);
  text-align: center;
}
.footer-bottom p { margin-bottom: 8px; color: var(--text-muted); font-size: 12.5px; }
.footer-bottom strong { color: var(--text-soft); }
.footer-bottom a { color: var(--yellow); }
.footer-disclaimer { line-height: 1.7; }

/* === SYMBOL CHIPS / TAGS === */
.tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 999px;
  background: rgba(255, 193, 7, 0.12);
  color: var(--yellow);
  border: 1px solid rgba(255, 193, 7, 0.4);
}
.tag-pink { background: rgba(255, 46, 154, 0.14); color: var(--pink-bright); border-color: var(--pink-bright); }
.tag-cyan { background: rgba(30, 200, 255, 0.12); color: var(--cyan); border-color: var(--cyan); }
.tag-green { background: rgba(118, 255, 3, 0.1); color: var(--green); border-color: var(--green); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .proscons { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .jackpot-strip { grid-template-columns: 1fr 1fr; }
  .verdict-box { padding: 24px; }
}

@media (max-width: 600px) {
  body { font-size: 14.5px; line-height: 1.6; }
  .container { padding: 0 14px; }
  h1 { font-size: clamp(1.5rem, 6.5vw, 1.95rem); }
  h2 { font-size: clamp(1.25rem, 5.5vw, 1.65rem); margin-bottom: 14px; }
  h3 { font-size: 1.1rem; margin-bottom: 10px; }
  p { margin-bottom: 12px; }
  .header-inner { padding: 10px 14px; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--bg-deep);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    display: none;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; padding: 8px 0; }
  .main-nav li { width: 100%; }
  .main-nav a { display: block; padding: 12px 20px; border-bottom: 1px solid var(--border-soft); }
  .nav-toggle { display: block; }
  .footer-inner { grid-template-columns: 1fr; gap: 22px; }
  section { padding: 28px 0; }
  .verdict-box { padding: 18px; }
  .cta-box { padding: 22px; }
  .cta-box h2 { font-size: 1.4rem; }
  .cta-box .btn { font-size: 15px; padding: 14px 24px; }
  .trust-bar { gap: 10px; font-size: 11px; padding: 7px 10px; }
  .disclaimer-bar { font-size: 12px; padding: 7px 12px; line-height: 1.4; }
  .site-logo img { height: 40px; }

  /* Hero stack */
  .page-hero { padding: 28px 0 24px; }
  .hero-text h1 .accent { font-size: 0.55em; }
  .hero-sub { font-size: 0.98rem; margin-bottom: 18px; }
  .hero-meta { gap: 10px; font-size: 12px; margin-bottom: 16px; }
  .hero-cta { gap: 8px; }
  .hero-cta .btn { font-size: 13.5px; padding: 12px 20px; flex: 1 1 auto; }
  .spec-card { padding: 18px; }
  .spec-grid .spec { padding: 10px 11px; }
  .spec .label { font-size: 9.5px; }
  .spec .value { font-size: 16px; }

  /* Tables: shrink padding/font; force horizontal scroll for data tables only */
  .table-wrap { border-radius: 10px; }
  .table-wrap table { font-size: 12.5px; min-width: 460px; }
  .table-wrap caption { font-size: 0.95rem; padding: 11px 14px; }
  .table-wrap th, .table-wrap td { padding: 9px 11px; }
  .table-wrap th { font-size: 10.5px; letter-spacing: 0.03em; }
  /* Verdict's rating table stays inline and compact */
  .rating-table { font-size: 12.5px; }

  /* Jackpot tier strip becomes 2x2 */
  .jackpot-strip { grid-template-columns: 1fr 1fr; gap: 10px; margin: 16px 0; }
  .jackpot-tier { padding: 11px; }
  .jackpot-tier .tier-value { font-size: 18px; }

  /* Feature cards */
  .feature-card { padding: 18px; }
  .feature-card h3 { font-size: 1.08rem; }

  /* Pros / cons */
  .proscons-box { padding: 18px; }
  .proscons-box li { font-size: 13.5px; padding: 7px 0 7px 24px; }

  /* FAQ */
  .faq-item summary { padding: 13px 16px; font-size: 0.98rem; }
  .faq-item .faq-body { padding: 0 16px 14px; font-size: 13.5px; }

  /* Verdict */
  .verdict-rating .score { font-size: 3rem; }

  /* Author + share */
  .author-box { padding: 16px; font-size: 13px; gap: 12px; }
  .author-box .avatar { width: 48px; height: 48px; font-size: 19px; }
  .share-bar { gap: 6px; flex-wrap: wrap; }
  .share-ic { width: 30px; height: 30px; }

  /* Gallery: 2 columns on mobile */
  .gallery { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery figcaption { font-size: 11.5px; padding: 8px 10px; }

  /* Footer */
  .site-footer { padding: 32px 14px 18px; }
  .footer-desc { font-size: 13px; }
  .footer-col a { font-size: 13px; }
}

@media (max-width: 380px) {
  /* Extra-small phones */
  body { font-size: 14px; }
  .table-wrap table { font-size: 11.5px; min-width: 380px; }
  .table-wrap th, .table-wrap td { padding: 8px 9px; }
  .gallery { grid-template-columns: 1fr; }
  .hero-cta .btn { font-size: 13px; padding: 11px 16px; }
}

/* === ACCESSIBILITY === */
:focus-visible { outline: 2px solid var(--yellow); outline-offset: 2px; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* === UTILITY === */
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
