/* ============================================
   BETNINJA CASINO — NL — Review hub
   Ninja-dark theme, content-first, bot-optimized
   ============================================ */

@font-face {
  font-family: 'Bebas Neue';
  src: url('../fonts/BebasNeue-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-VariableFont_wght.woff2') format('woff2 supports variations'),
       url('../fonts/Outfit-VariableFont_wght.woff2') format('woff2');
  font-weight: 100 900; font-style: normal; font-display: swap;
}

:root {
  --bg:        #100f10;
  --bg2:       #171516;
  --card:      #1c1a1b;
  --card-lt:   #232021;

  --green:      #00d458;
  --green-lt:   #2dff7e;
  --green-dk:   #00a045;
  --green-glow: rgba(0,212,88,0.40);
  --green-soft: rgba(0,212,88,0.10);
  --green-bdr:  rgba(0,212,88,0.30);

  --text:      #ffffff;
  --text-md:   rgba(255,255,255,0.76);
  --text-dim:  rgba(255,255,255,0.46);
  --border:    rgba(255,255,255,0.08);

  --header-h:  72px;
  --max-w:     1140px;

  --r-sm: 10px; --r-md: 14px; --r-lg: 20px; --r-pill: 50px;
  --font-d: 'Bebas Neue','Arial Black',sans-serif;
  --font-b: 'Outfit',system-ui,sans-serif;
  --tr: 0.2s ease;
}

.game-card { display: block; }
.game-info { display: flex; flex-direction: column; gap: 3px; }
html, body { overflow-x: hidden; }

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(ellipse at 12% 4%, var(--green-soft), transparent 45%),
    radial-gradient(ellipse at 88% 16%, rgba(0,212,88,0.06), transparent 50%);
  background-attachment: fixed;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
button { background: none; border: 0; cursor: pointer; color: inherit; font-family: inherit; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(20,20,21,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: var(--tr);
}
.site-header.scrolled { background: rgba(20,20,21,0.97); box-shadow: 0 4px 20px rgba(0,0,0,0.6); }
.header-inner { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.logo-link, .logo-link-mobile { display: flex; align-items: center; text-decoration: none; }
.logo-link-mobile { display: none; }
.logo-link img { height: 40px; width: auto; display: block; filter: drop-shadow(0 0 14px var(--green-glow)); }
.logo-link-mobile img { height: 34px; width: auto; display: block; filter: drop-shadow(0 0 12px var(--green-glow)); }

.header-nav { display: flex; gap: 24px; }
.header-nav a {
  font-weight: 600; font-size: 14px;
  color: var(--text-md);
  transition: var(--tr);
  position: relative;
}
.header-nav a:hover { color: var(--green-lt); }
.header-nav a::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 2px; background: var(--green); transition: var(--tr); }
.header-nav a:hover::after { width: 100%; }

.header-actions { display: flex; gap: 10px; align-items: center; }
.burger {
  width: 40px; height: 40px;
  display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
}
.burger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--tr); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { display: none; padding: 14px 0 20px; border-top: 1px solid var(--border); background: rgba(20,20,21,0.98); }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 13px 20px; color: var(--text-md); font-weight: 600; border-radius: 10px; }
.mobile-nav a:hover { color: var(--green-lt); background: var(--green-soft); }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px;
  font-family: var(--font-b); font-weight: 700; font-size: 15px;
  border-radius: var(--r-pill);
  transition: var(--tr); cursor: pointer; white-space: nowrap;
  text-decoration: none !important;
  border: 1px solid transparent;
}
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-cta {
  background: linear-gradient(135deg, var(--green), var(--green-dk));
  color: #05140b !important;
  box-shadow: 0 6px 22px var(--green-glow);
  font-weight: 800;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 30px var(--green-glow); }
.btn-ghost { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.16); color: var(--text) !important; }
.btn-ghost:hover { background: rgba(255,255,255,0.10); border-color: var(--green); color: var(--green-lt) !important; }

/* HERO */
.hero {
  position: relative;
  padding: 44px 0 52px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 75% 50%, var(--green-soft), transparent 55%);
  pointer-events: none; z-index: 0;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}
.hero-content { min-width: 0; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: var(--green-soft);
  border: 1px solid var(--green-bdr);
  font-size: 12px; font-weight: 700;
  color: var(--green-lt);
  text-transform: uppercase; letter-spacing: 1.2px;
  margin-bottom: 16px;
}
.hero-eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }
.hero-title {
  font-family: var(--font-d);
  font-size: clamp(40px, 6vw, 70px);
  line-height: 0.98;
  margin: 0 0 16px;
  letter-spacing: 0.5px;
}
.hero-title .hi { color: var(--green-lt); }
.hero-sub { font-size: 17px; color: var(--text-md); margin: 0 0 22px; max-width: 540px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 480px;
  margin: 0 0 24px;
}
.hero-stat {
  text-align: center;
  padding: 14px 8px;
  border-radius: var(--r-md);
  background: var(--green-soft);
  border: 1px solid var(--green-bdr);
}
.hero-stat-val { font-family: var(--font-d); font-size: 26px; color: var(--green-lt); line-height: 1; }
.hero-stat-lbl { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 4px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-art {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero-art img {
  width: 100%;
  max-width: 420px;
  height: auto;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.7)) drop-shadow(0 0 50px var(--green-glow));
  animation: float-y 6s ease-in-out infinite;
}
@keyframes float-y {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-14px); }
}

/* SECTIONS */
.section { padding: 56px 0; position: relative; }
.section-eyebrow {
  display: inline-block;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  background: var(--green-soft);
  border: 1px solid var(--green-bdr);
  color: var(--green-lt);
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.2px;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-d);
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.05;
  margin: 0 0 12px;
  letter-spacing: 0.5px;
}
.section-title .hi { color: var(--green-lt); }
.section-sub { font-size: 16px; color: var(--text-md); margin: 0 0 32px; max-width: 720px; }
.section-header { margin-bottom: 32px; }

/* BONUS CARDS */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.bonus-card {
  position: relative;
  padding: 28px 24px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--card-lt), var(--card));
  border: 1px solid var(--border);
  transition: var(--tr);
  text-align: center;
  overflow: hidden;
}
.bonus-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-lt));
  opacity: 0; transition: var(--tr);
}
.bonus-card:hover { border-color: var(--green-bdr); transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.5); }
.bonus-card:hover::before { opacity: 1; }
.bonus-card.is-featured { border-color: var(--green-bdr); background: linear-gradient(180deg, var(--green-soft), var(--card)); }
.bonus-card.is-featured::before { opacity: 1; }
.bonus-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  background: var(--green);
  color: #05140b;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}
.bonus-amount { font-family: var(--font-d); font-size: 44px; line-height: 1; color: var(--green-lt); margin-bottom: 8px; }
.bonus-label { font-size: 14px; color: var(--text); font-weight: 700; margin-bottom: 6px; }
.bonus-desc { font-size: 13px; color: var(--text-dim); margin: 0; line-height: 1.5; }

/* FEATURE STRIP */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.feature-item {
  padding: 22px 18px;
  border-radius: var(--r-md);
  background: var(--card);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--tr);
}
.feature-item:hover { border-color: var(--green-bdr); transform: translateY(-3px); }
.feature-icon {
  width: 52px; height: 52px;
  margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--green-soft);
  border: 1px solid var(--green-bdr);
  font-size: 24px;
}
.feature-title { font-weight: 700; font-size: 14px; margin: 0 0 5px; color: var(--text); }
.feature-text { font-size: 12px; color: var(--text-dim); margin: 0; line-height: 1.45; }

/* INFO TABLE */
.info-section { padding: 56px 0; }
.info-table-wrap {
  border-radius: var(--r-lg);
  background: var(--card);
  border: 1px solid var(--border);
  overflow: hidden;
}
.info-table { width: 100%; border-collapse: collapse; }
.info-table tr { border-bottom: 1px solid var(--border); }
.info-table tr:last-child { border-bottom: 0; }
.info-table tr:hover { background: rgba(255,255,255,0.02); }
.info-table td { padding: 15px 22px; font-size: 14px; vertical-align: middle; }
.info-table td:first-child { font-weight: 700; color: var(--green-lt); width: 38%; }
.info-table td:last-child { color: var(--text-md); }

/* GAMES GRID */
.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.game-tile {
  border-radius: var(--r-md);
  background: var(--card);
  border: 1px solid var(--border);
  padding: 22px 16px;
  text-align: center;
  transition: var(--tr);
}
.game-tile:hover { border-color: var(--green-bdr); transform: translateY(-3px); }
.game-tile-icon { font-size: 32px; margin-bottom: 10px; }
.game-tile-name { font-family: var(--font-d); font-size: 19px; color: var(--text); letter-spacing: 0.5px; margin: 0 0 4px; }
.game-tile-count { font-size: 12px; color: var(--green-lt); font-weight: 600; }

/* CASINO CARD (single — review subject) */
.review-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  padding: 30px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--green-soft), var(--card));
  border: 1px solid var(--green-bdr);
  align-items: center;
}
.review-logo {
  width: 160px; height: 100px;
  border-radius: var(--r-md);
  background: #000;
  display: flex; align-items: center; justify-content: center;
  padding: 14px;
  flex-shrink: 0;
}
.review-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.review-info-name { font-family: var(--font-d); font-size: 30px; color: var(--text); margin: 0 0 8px; letter-spacing: 0.5px; }
.review-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.review-stars { color: var(--green-lt); font-size: 16px; letter-spacing: 2px; }
.review-rating-val {
  font-family: var(--font-d);
  font-size: 22px;
  color: var(--green-lt);
  background: var(--green-soft);
  padding: 2px 12px;
  border-radius: var(--r-sm);
}
.review-perks { display: flex; flex-wrap: wrap; gap: 7px; }
.review-perk {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.05);
  color: var(--text-md);
  font-weight: 600;
}
.review-action { display: flex; flex-direction: column; gap: 9px; align-items: stretch; min-width: 160px; }

/* PAYMENTS */
.payments-section { padding: 44px 0 56px; }
.payments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 10px;
}
.pay-item {
  height: 52px;
  background: #fff;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  padding: 6px 10px;
  transition: var(--tr);
}
.pay-item:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,0,0,0.5); }
.pay-item img { max-height: 28px; max-width: 100%; object-fit: contain; }

/* PROS CONS */
.proscons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.proscons-card {
  padding: 26px;
  border-radius: var(--r-lg);
  background: var(--card);
  border: 1px solid var(--border);
}
.proscons-card.is-pros { border-color: var(--green-bdr); }
.proscons-card.is-cons { border-color: rgba(255,90,90,0.25); }
.proscons-title {
  font-family: var(--font-d);
  font-size: 24px;
  letter-spacing: 0.5px;
  margin: 0 0 16px;
  display: flex; align-items: center; gap: 10px;
}
.is-pros .proscons-title { color: var(--green-lt); }
.is-cons .proscons-title { color: #ff7676; }
.proscons-list { list-style: none; padding: 0; margin: 0; }
.proscons-list li { position: relative; padding: 8px 0 8px 28px; font-size: 14px; color: var(--text-md); border-bottom: 1px solid var(--border); }
.proscons-list li:last-child { border-bottom: 0; }
.proscons-list li::before { position: absolute; left: 0; top: 8px; font-weight: 800; }
.is-pros .proscons-list li::before { content: '✓'; color: var(--green); }
.is-cons .proscons-list li::before { content: '✕'; color: #ff7676; }

/* FAQ */
.faq-section { padding: 56px 0; }
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 920px; margin: 0 auto; }
.faq-item {
  border-radius: var(--r-md);
  background: var(--card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--tr);
}
.faq-item.open { border-color: var(--green-bdr); }
.faq-question {
  padding: 17px 22px;
  font-family: var(--font-b);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  margin: 0;
}
.faq-icon {
  width: 26px; height: 26px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-lt);
  font-size: 20px;
  transition: var(--tr);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--green); color: #05140b; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.32s ease; }
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner { padding: 0 22px 20px; color: var(--text-md); font-size: 14px; line-height: 1.65; }
.faq-answer-inner p { margin: 0 0 10px; }
.faq-answer-inner p:last-child { margin: 0; }

/* PROSE / SEO TEXT */
.section.prose.container { max-width: 920px; }
.prose { font-size: 16px; line-height: 1.72; color: var(--text-md); }
.prose h2 {
  font-family: var(--font-d);
  font-size: clamp(26px, 2.6vw, 34px);
  color: var(--text);
  margin: 36px 0 14px;
  letter-spacing: 0.5px;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: var(--font-b);
  font-size: 20px;
  font-weight: 700;
  color: var(--green-lt);
  margin: 24px 0 10px;
}
.prose p { margin: 0 0 14px; }
.prose strong { color: var(--text); font-weight: 700; }
.prose a { color: var(--green-lt); border-bottom: 1px dashed currentColor; }
.prose a:hover { color: var(--green); }
.prose ol, .prose ul, .list-content {
  padding-left: 1.5em !important;
  margin: 12px 0 18px !important;
}
.prose ol, .list-content.list-ol { list-style: decimal !important; }
.prose ul, .list-content.list-ul { list-style: disc !important; }
.prose ol li, .prose ul li, .list-content li {
  padding: 4px 0 !important;
  display: list-item !important;
}
.prose table, .review-table { width: 100%; border-collapse: collapse; margin: 18px 0; }
.review-table-wrap {
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  overflow: hidden;
  overflow-x: auto;
  margin: 18px 0;
}
.review-table td { padding: 12px 18px; border-bottom: 1px solid var(--border); font-size: 14px; }
.review-table tr:last-child td { border-bottom: 0; }
.review-table tr:nth-child(odd) td { background: rgba(255,255,255,0.02); }
.review-table tr td:first-child { font-weight: 700; color: var(--text); width: 40%; }

/* FOOTER */
.site-footer {
  margin-top: 40px;
  padding: 44px 0 22px;
  background: linear-gradient(180deg, transparent, rgba(20,20,21,0.9));
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}
.footer-logo { height: 40px; width: auto; margin: 0 0 14px; }
.footer-about { font-size: 13px; color: var(--text-dim); margin: 0; line-height: 1.55; max-width: 320px; }
.footer-col-title { font-family: var(--font-d); font-size: 16px; color: var(--green-lt); margin: 0 0 12px; letter-spacing: 0.7px; }
.footer-col a { display: block; padding: 4px 0; font-size: 13px; color: var(--text-md); transition: var(--tr); }
.footer-col a:hover { color: var(--green-lt); }
.footer-bottom { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; padding-top: 22px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.age-badge { display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 50%; background: #ff3030; color: #fff; font-family: var(--font-d); font-size: 17px; flex-shrink: 0; }
.footer-disclaimer { font-size: 12px; color: var(--text-dim); line-height: 1.55; margin: 0; max-width: 780px; }
.footer-disclaimer a { color: var(--green-lt); border-bottom: 1px dashed currentColor; }
.footer-copy { font-size: 12px; color: var(--text-dim); margin: 0; }

/* FADE */
.fade-in { opacity: 0; transform: translateY(14px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fd1 { transition-delay: 0.06s; } .fd2 { transition-delay: 0.12s; } .fd3 { transition-delay: 0.18s; } .fd4 { transition-delay: 0.24s; }

/* MEDIA */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-art { order: -1; }
  .hero-art img { max-width: 300px; }
  .bonus-grid { grid-template-columns: 1fr; }
  .feature-strip { grid-template-columns: repeat(2, 1fr); }
  .games-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { display: none; }
}

@media (max-width: 900px) {
  html, body { overflow-x: hidden; }
  .header-nav { display: none; }
  .header-actions { display: none; }
  .burger { display: flex; }
  .logo-link { display: none; }
  .logo-link-mobile { display: flex; }

  .hero { padding: 32px 0 40px; }
  .hero-title { font-size: 46px; }
  .hero-stats { max-width: none; }

  .section { padding: 48px 0; }
  .feature-strip { grid-template-columns: repeat(2, 1fr); }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .proscons-grid { grid-template-columns: 1fr; }
  .review-card { grid-template-columns: 1fr; gap: 18px; text-align: center; }
  .review-logo { margin: 0 auto; }
  .review-rating { justify-content: center; }
  .review-perks { justify-content: center; }
  .review-action { min-width: 0; }
  .info-table td { padding: 13px 16px; font-size: 13px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 600px) {
  html, body { overflow-x: hidden; }
  .container { padding: 0 14px; }
  .section { padding: 44px 0; }
  .section.prose.container { padding-left: 14px !important; padding-right: 14px !important; }

  .hero { padding: 24px 0 32px; }
  .hero-title { font-size: 38px; }
  .hero-sub { font-size: 15px; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .hero-stat-val { font-size: 20px; }
  .hero-stat-lbl { font-size: 9px; }
  .hero-btns { flex-direction: column; width: 100%; }
  .hero-btns .btn { width: 100%; }
  .hero-art img { max-width: 230px; }

  .section-title { font-size: 28px; }
  .bonus-amount { font-size: 38px; }

  .feature-strip { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-about { max-width: none; }
}

@media (max-width: 380px) {
  .container { padding: 0 12px; }
  .hero-title { font-size: 32px; }
  .section-title { font-size: 24px; }
  .games-grid { grid-template-columns: 1fr; }
}
