/* ============ Variables ============ */
:root {
  --bg: #0a0f1c;
  --bg-soft: #0e1526;
  --card: #121b30;
  --card-hover: #16213b;
  --border: #232f4b;
  --text: #eef1f8;
  --text-muted: #8b97b5;
  --saffron: #ff7a1f;
  --saffron-dark: #e8650c;
  --gold: #ffc34d;
  --green: #1fb573;
  --green-dark: #15824f;
  --red: #ff4d6a;
  --gradient-brand: linear-gradient(135deg, var(--gold) 0%, var(--saffron) 60%, var(--saffron-dark) 100%);
  --gradient-bg: radial-gradient(circle at 15% 0%, rgba(255,122,31,0.16), transparent 45%),
                 radial-gradient(circle at 85% 10%, rgba(31,181,115,0.12), transparent 40%);
  --shadow-card: 0 10px 30px -10px rgba(0,0,0,0.5);
  --radius: 16px;
  --radius-sm: 10px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  background-image: var(--gradient-bg);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: 'Poppins', Inter, sans-serif;
  margin: 0 0 .5em;
  line-height: 1.25;
  color: var(--text);
}
h1 { font-size: clamp(28px, 4vw, 52px); }
h2 { font-size: clamp(22px, 2.8vw, 36px); }
h3 { font-size: clamp(17px, 1.8vw, 22px); }
h4 { font-size: 17px; }
p { margin: 0 0 1em; color: var(--text-muted); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 88px 0; }
.section-tight { padding: 56px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(255,195,77,0.1);
  border: 1px solid rgba(255,195,77,0.25);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section-head { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { font-size: clamp(26px, 3.4vw, 38px); }
.section-head p { font-size: 16px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-brand);
  color: #1a0e02;
  box-shadow: 0 8px 24px -6px rgba(255,122,31,0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -6px rgba(255,122,31,0.7); }
.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: var(--saffron); }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-block { width: 100%; }

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,15,28,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo { display: flex; align-items: center; gap: 10px; font-family: Poppins, sans-serif; font-weight: 700; font-size: 20px; }
.logo-mark {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: #1a0e02;
  box-shadow: 0 6px 16px -4px rgba(255,122,31,0.6);
}
.logo span { color: var(--gold); }

.nav { display: flex; align-items: center; gap: 32px; }
.nav-links { display: flex; gap: 28px; list-style: none; padding: 0; margin: 0; }
.nav-item { position: relative; list-style: none; }
.nav-links a {
  font-size: 14.5px; font-weight: 500; color: var(--text-muted);
  transition: color .15s ease; position: relative;
}
.nav-links a:hover { color: var(--text); }
.nav-arrow { font-size: 10px; margin-left: 4px; display: inline-block; transition: transform .18s; vertical-align: middle; pointer-events: none; }
.has-dropdown:hover .nav-arrow,
.has-dropdown.open .nav-arrow { transform: rotate(180deg); }
/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 48px -8px rgba(0,0,0,0.7);
  min-width: 210px;
  padding: 6px 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 200;
}
.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
/* caret arrow */
.dropdown-menu::before { content: ''; position: absolute; top: -7px; left: 50%; transform: translateX(-50%); border: 7px solid transparent; border-top: none; border-bottom-color: var(--border); }
.dropdown-menu::after { content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%); border: 6px solid transparent; border-top: none; border-bottom-color: var(--card); }
.dropdown-menu li a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 16px; font-size: 13.5px; color: var(--text-muted);
  transition: background .12s, color .12s; white-space: nowrap;
}
.dropdown-menu li a:hover { background: rgba(255,255,255,0.05); color: var(--gold); }
.dropdown-menu li a .dm-logo { width: 28px; height: 20px; object-fit: contain; border-radius: 4px; background: #fff; padding: 1px 3px; display: block; flex-shrink: 0; }
/* Mobile dropdown */
@media (max-width: 900px) {
  .dropdown-menu {
    position: static; transform: none; box-shadow: none;
    border: none; border-top: 1px solid var(--border); border-radius: 0;
    background: transparent; padding: 4px 0 4px 16px;
    opacity: 1; visibility: visible; display: none; min-width: unset;
  }
  .dropdown-menu::before, .dropdown-menu::after { display: none; }
  .has-dropdown.open .dropdown-menu { display: block; }
  .dropdown-menu li a { padding: 7px 0; font-size: 13px; }
}
.header-actions { display: flex; align-items: center; gap: 14px; }
.geo-pill {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--text-muted);
  border: 1px solid var(--border); border-radius: 999px;
  padding: 7px 12px;
}
.nav-toggle {
  display: none;
  background: none; border: none; color: var(--text);
  font-size: 24px; cursor: pointer;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .geo-pill { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; gap: 18px;
    position: absolute; top: 76px; left: 0; right: 0;
    background: var(--bg-soft); padding: 24px; border-bottom: 1px solid var(--border);
  }
}

/* ============ Hero ============ */
.hero { padding: 72px 0 60px; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(32px, 4.6vw, 54px); }
.hero h1 em { font-style: normal; color: var(--gold); background: linear-gradient(135deg, var(--gold), var(--saffron)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { font-size: 17px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.trust-row { display: flex; gap: 28px; margin-top: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--text-muted); }
.trust-item .ico { width: 34px; height: 34px; border-radius: 9px; background: rgba(31,181,115,0.12); border: 1px solid rgba(31,181,115,0.3); display: flex; align-items: center; justify-content: center; color: var(--green); font-size: 16px; flex-shrink: 0; }

.hero-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-card);
}
.hero-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.hero-card-head h3 { margin: 0; font-size: 16px; }
.badge-new { font-size: 11px; font-weight: 700; color: #1a0e02; background: var(--gold); padding: 4px 10px; border-radius: 999px; }
.mini-rank { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.mini-rank:last-child { border-bottom: none; padding-bottom: 0; }
.mini-rank .rank-num { font-family: Poppins, sans-serif; font-weight: 700; color: var(--text-muted); width: 22px; }
.mini-rank .brand-avatar { width: 40px; height: 40px; border-radius: 10px; background: linear-gradient(135deg, #1e2a4a, #121b30); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; color: var(--gold); }
.mini-rank .rank-info { flex: 1; min-width: 0; }
.mini-rank .rank-info strong { display: block; font-size: 14px; }
.mini-rank .stars { font-size: 11px; color: var(--gold); }
.mini-rank .btn { padding: 7px 14px; font-size: 12.5px; }

/* ============ Stats strip ============ */
.stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 36px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat { text-align: center; }
.stat .num { font-family: Poppins, sans-serif; font-size: 30px; font-weight: 700; color: var(--gold); }
.stat .label { font-size: 13px; color: var(--text-muted); }
@media (max-width: 700px) { .stats-strip { grid-template-columns: repeat(2, 1fr); } }

/* ============ Casino cards ============ */
.casino-grid { display: flex; flex-direction: column; gap: 18px; }
.casino-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: grid;
  grid-template-columns: auto 1.6fr 1fr auto;
  gap: 24px;
  align-items: center;
  transition: border-color .18s ease, transform .18s ease;
  position: relative;
}
.casino-card:hover { border-color: rgba(255,122,31,0.4); transform: translateY(-2px); }
.casino-card .rank-tag {
  position: absolute; top: -10px; left: 20px;
  background: var(--gradient-brand); color: #1a0e02;
  font-size: 11px; font-weight: 800; letter-spacing: .04em;
  padding: 4px 12px; border-radius: 999px;
}
.casino-brand { display: flex; flex-direction: column; align-items: center; gap: 10px; width: 110px; }
.brand-logo {
  width: 64px; height: 64px; border-radius: 14px;
  background: linear-gradient(135deg, #1e2a4a, #0e1526);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: Poppins, sans-serif; font-weight: 700; font-size: 16px; color: var(--gold);
  overflow: hidden;
}
.brand-logo.brand-logo-img { background: #fff; border-color: rgba(255,255,255,0.15); padding: 6px; }
.brand-logo.brand-logo-img img { width: 100%; height: 100%; object-fit: contain; display: block; border-radius: 8px; }
.stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; }
.score-pill { font-size: 12px; font-weight: 700; color: var(--green); background: rgba(31,181,115,0.12); border: 1px solid rgba(31,181,115,0.3); padding: 3px 10px; border-radius: 999px; }

.casino-info h3 { font-size: 18px; margin-bottom: 6px; }
.feature-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.feature-tags span { font-size: 12px; color: var(--text-muted); background: rgba(255,255,255,0.04); border: 1px solid var(--border); padding: 4px 10px; border-radius: 999px; }

.casino-bonus { text-align: center; padding: 14px; background: rgba(255,122,31,0.06); border: 1px dashed rgba(255,122,31,0.35); border-radius: var(--radius-sm); }
.casino-bonus .label { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); }
.casino-bonus .amount { font-family: Poppins, sans-serif; font-size: 20px; font-weight: 700; color: var(--gold); margin: 2px 0; }
.casino-bonus .terms { font-size: 11px; color: var(--text-muted); }

.casino-cta { display: flex; flex-direction: column; gap: 10px; align-items: stretch; width: 150px; }
.casino-cta a.secondary { text-align: center; font-size: 12.5px; color: var(--text-muted); }
.casino-cta a.secondary:hover { color: var(--gold); }

@media (max-width: 880px) {
  .casino-card { grid-template-columns: 1fr; text-align: center; }
  .casino-brand { width: 100%; flex-direction: row; justify-content: center; }
  .casino-cta { width: 100%; }
}

/* ============ Trust / why us ============ */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; text-align: center;
}
.feature-card .ico {
  width: 52px; height: 52px; border-radius: 14px; margin: 0 auto 16px;
  background: var(--gradient-brand); display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.feature-card h3 { font-size: 16px; }
.feature-card p { font-size: 13.5px; margin-bottom: 0; }
@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }

/* ============ Bonus types ============ */
.bonus-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.bonus-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; position: relative; overflow: hidden;
}
.bonus-card::before {
  content: ""; position: absolute; inset: 0; opacity: 0;
  background: var(--gradient-bg); transition: opacity .2s ease;
}
.bonus-card:hover::before { opacity: 1; }
.bonus-card .tag { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--green); background: rgba(31,181,115,0.12); padding: 4px 10px; border-radius: 999px; margin-bottom: 14px; }
.bonus-card h3 { font-size: 17px; }
.bonus-card p { font-size: 13.5px; }
@media (max-width: 900px) { .bonus-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .bonus-grid { grid-template-columns: 1fr; } }

/* ============ Articles ============ */
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.article-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: transform .18s ease, border-color .18s ease;
}
.article-card:hover { transform: translateY(-3px); border-color: rgba(255,122,31,0.4); }
.article-thumb {
  height: 160px;
  background: linear-gradient(135deg, rgba(255,122,31,0.25), rgba(31,181,115,0.18));
  display: flex; align-items: center; justify-content: center;
  font-family: Poppins, sans-serif; font-weight: 700; color: rgba(255,255,255,0.5); font-size: 13px;
  letter-spacing: .06em; text-transform: uppercase;
}
.article-body { padding: 20px; }
.article-cat { font-size: 11.5px; color: var(--saffron); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.article-body h3 { font-size: 16px; margin: 8px 0; }
.article-body p { font-size: 13.5px; }
.article-meta { font-size: 12px; color: var(--text-muted); display: flex; gap: 12px; margin-top: 12px; }
@media (max-width: 900px) { .article-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .article-grid { grid-template-columns: 1fr; } }

/* ============ FAQ ============ */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; background: none; border: none; color: var(--text);
  font-size: 15px; font-weight: 600; cursor: pointer; text-align: left; font-family: inherit;
}
.faq-q .plus { font-size: 18px; color: var(--gold); transition: transform .2s ease; flex-shrink: 0; margin-left: 12px; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { padding: 0 22px; max-height: 0; overflow: hidden; transition: max-height .25s ease, padding .25s ease; }
.faq-item.open .faq-a { padding: 0 22px 20px; max-height: 400px; }
.faq-a p { font-size: 14px; margin: 0; }

/* ============ Responsible gambling banner ============ */
.rg-banner {
  background: linear-gradient(135deg, rgba(31,181,115,0.1), rgba(255,122,31,0.06));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.rg-banner .ico { font-size: 32px; flex-shrink: 0; }
.rg-banner h3 { font-size: 17px; margin-bottom: 6px; }
.rg-banner p { margin: 0; font-size: 13.5px; }
.rg-links { display: flex; gap: 10px; margin-left: auto; flex-wrap: wrap; }

/* ============ CTA band ============ */
.cta-band {
  background: var(--gradient-brand);
  border-radius: 24px;
  padding: 56px;
  text-align: center;
  color: #1a0e02;
}
.cta-title { font-family: 'Poppins', Inter, sans-serif; font-size: clamp(26px, 3.4vw, 38px); font-weight: 700; line-height: 1.25; margin: 0 0 .5em; color: #1a0e02; }
.cta-band p { color: rgba(26,14,2,0.75); }
.cta-band .btn-ghost { background: rgba(26,14,2,0.08); border-color: rgba(26,14,2,0.25); color: #1a0e02; }
.cta-band .btn-ghost:hover { background: rgba(26,14,2,0.15); }

/* ============ Footer ============ */
.site-footer { background: var(--bg-soft); border-top: 1px solid var(--border); padding: 64px 0 28px; margin-top: 40px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--border); }
.footer-brand p { font-size: 13.5px; max-width: 320px; }
.footer-col-title { font-family: inherit; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); margin: 0 0 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--text-muted); }
.footer-col a:hover { color: var(--gold); }
.license-row { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.license-badge { display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: var(--text-muted); border: 1px solid var(--border); border-radius: 8px; padding: 8px 12px; }
.age-badge { width: 40px; height: 40px; border-radius: 8px; border: 2px solid var(--red); color: var(--red); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; flex-wrap: wrap; gap: 14px; }
.footer-bottom p { margin: 0; font-size: 12.5px; }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--text-muted); }
.social-links a:hover { color: var(--gold); border-color: var(--gold); }
.disclaimer { font-size: 12px; color: var(--text-muted); opacity: .8; margin-top: 18px; line-height: 1.7; }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
}

/* ============ Back to top ============ */
.back-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gradient-brand); color: #1a0e02;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; border: none; cursor: pointer;
  box-shadow: 0 8px 22px -6px rgba(255,122,31,0.6);
  opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .2s ease;
  z-index: 90;
}
.back-top.visible { opacity: 1; pointer-events: auto; }
.back-top:hover { transform: translateY(-3px); }

/* ============ FAQ h3 reset ============ */
.faq-q h3 {
  margin: 0; font-size: 15px; font-weight: 600; color: var(--text);
  font-family: inherit; line-height: 1.4; text-align: left;
}

/* ============ Prose section ============ */
.prose-section { max-width: 820px; margin: 0 auto; }
.prose-section p { font-size: 16px; line-height: 1.75; color: var(--text-muted); }

/* ============ Compare table ============ */
.compare-wrap { margin-top: 48px; }
.compare-intro { text-align: center; color: var(--text-muted); margin-bottom: 20px; }
.compare-table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
.compare-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.compare-table thead { background: rgba(255,122,31,0.08); }
.compare-table th { padding: 14px 18px; text-align: left; font-size: 12px; text-transform: uppercase; letter-spacing: .07em; color: var(--gold); font-weight: 700; border-bottom: 1px solid var(--border); }
.compare-table td { padding: 14px 18px; border-bottom: 1px solid rgba(35,47,75,0.6); color: var(--text-muted); vertical-align: top; }
.compare-table td strong { color: var(--text); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: rgba(255,255,255,0.02); }

/* ============ Rank method banner ============ */
.rank-method-banner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
  background: var(--card); border: 1px solid var(--border); border-radius: 24px; padding: 44px;
}
.rank-method-content h2 { font-size: clamp(22px, 2.8vw, 32px); }
.rank-method-content p { font-size: 15px; }
.rank-method-steps { display: flex; flex-direction: column; gap: 20px; }
.method-step { display: flex; gap: 18px; align-items: flex-start; }
.step-num { font-family: Poppins, sans-serif; font-size: 28px; font-weight: 800; color: rgba(255,195,77,0.2); line-height: 1; flex-shrink: 0; width: 42px; }
.method-step strong { display: block; font-size: 15px; margin-bottom: 4px; }
.method-step p { margin: 0; font-size: 13.5px; }
@media (max-width: 820px) { .rank-method-banner { grid-template-columns: 1fr; } }

/* ============ Game type grid ============ */
.game-type-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.game-type-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 22px; display: flex; flex-direction: column; gap: 8px;
  text-decoration: none; transition: border-color .18s ease, transform .18s ease;
}
.game-type-card:hover { border-color: rgba(255,122,31,0.4); transform: translateY(-3px); }
.game-type-ico { font-size: 32px; margin-bottom: 4px; }
.game-type-card strong { font-size: 17px; font-family: Poppins, sans-serif; color: var(--text); }
.game-type-card p { font-size: 13.5px; color: var(--text-muted); margin: 0; flex: 1; }
.game-link { font-size: 13px; color: var(--saffron); font-weight: 600; margin-top: 8px; }
@media (max-width: 900px) { .game-type-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .game-type-grid { grid-template-columns: 1fr; } }

/* ============ Wagering banner ============ */
.wagering-banner {
  display: flex; align-items: flex-start; gap: 20px; margin-top: 32px;
  background: rgba(255,195,77,0.06); border: 1px solid rgba(255,195,77,0.25); border-radius: var(--radius);
  padding: 28px; flex-wrap: wrap;
}
.wagering-icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.wagering-banner > div { flex: 1; min-width: 260px; }
.wagering-banner strong { display: block; font-size: 16px; color: var(--gold); margin-bottom: 8px; font-family: Poppins, sans-serif; }
.wagering-banner p { margin: 0; font-size: 14px; }

/* ============ Payment cards ============ */
.payment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 36px; }
.payment-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px;
}
.payment-ico { font-size: 30px; margin-bottom: 14px; }
.payment-card strong { display: block; font-size: 17px; font-family: Poppins, sans-serif; margin-bottom: 10px; }
.payment-card p { font-size: 13.5px; }
@media (max-width: 860px) { .payment-grid { grid-template-columns: 1fr; } }

/* ============ Deposit steps ============ */
.steps-section { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 32px; }
.steps-title { display: block; font-size: 16px; font-family: Poppins, sans-serif; margin-bottom: 20px; }
.steps-list { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-direction: column; gap: 14px; counter-reset: step; }
.steps-list li { display: flex; align-items: flex-start; gap: 14px; counter-increment: step; font-size: 14.5px; color: var(--text-muted); }
.steps-list li::before {
  content: counter(step);
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gradient-brand); color: #1a0e02;
  font-weight: 700; font-size: 12px; flex-shrink: 0; margin-top: 1px;
}

/* ============ Mobile grid ============ */
.mobile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mobile-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; }
.mobile-ico { font-size: 32px; margin-bottom: 14px; }
.mobile-card strong { display: block; font-size: 18px; font-family: Poppins, sans-serif; margin-bottom: 10px; }
.mobile-card p { font-size: 14px; }
@media (max-width: 700px) { .mobile-grid { grid-template-columns: 1fr; } }

/* ============ Legal section ============ */
.legal-banner { background: var(--card); border: 1px solid var(--border); border-radius: 24px; padding: 44px; }
.legal-content h2 { font-size: clamp(22px, 2.8vw, 32px); }
.legal-content h3 { font-size: 18px; margin: 28px 0 10px; }
.legal-content p { font-size: 15px; }
.legal-list { padding: 0; margin: 16px 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.legal-list li { display: flex; gap: 12px; font-size: 14px; color: var(--text-muted); }
.legal-list li::before { content: "›"; color: var(--gold); font-size: 18px; font-weight: 700; flex-shrink: 0; line-height: 1.4; }
.legal-note { font-size: 13px; color: var(--text-muted); opacity: .8; font-style: italic; }

/* ============ Checklist ============ */
.checklist-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.checklist-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.checklist-step { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--saffron); background: rgba(255,122,31,0.1); border: 1px solid rgba(255,122,31,0.25); padding: 4px 12px; border-radius: 999px; margin-bottom: 14px; }
.checklist-card h3 { font-size: 20px; margin-bottom: 12px; }
.checklist-card p { font-size: 14.5px; margin: 0; }
@media (max-width: 700px) { .checklist-grid { grid-template-columns: 1fr; } }

/* ============ Responsible section h2 override ============ */
.rg-banner h2 { font-size: 20px; margin-bottom: 10px; }

/* ============ Nav active state ============ */
.nav-active { color: var(--gold) !important; }

/* ============ Breadcrumb ============ */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); margin-bottom: 20px; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--text-muted); }

/* ============ Page hero (inner pages) ============ */
.page-hero { padding: 52px 0 44px; border-bottom: 1px solid var(--border); }
.page-hero h1 { font-size: clamp(28px, 3.8vw, 46px); max-width: 780px; margin-bottom: 16px; }
.page-lead { font-size: 17px; max-width: 680px; margin-bottom: 28px; }
.page-hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.ph-stat { display: flex; flex-direction: column; }
.ph-stat strong { font-family: Poppins, sans-serif; font-size: 22px; font-weight: 700; color: var(--gold); line-height: 1.2; }
.ph-stat span { font-size: 12px; color: var(--text-muted); }

/* ============ Testing grid ============ */
.testing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }
.testing-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; position: relative; }
.testing-num { position: absolute; top: 22px; right: 24px; font-family: Poppins, sans-serif; font-size: 36px; font-weight: 800; color: rgba(255,195,77,0.08); line-height: 1; }
.testing-ico { font-size: 28px; margin-bottom: 14px; }
.testing-card h3 { font-size: 18px; margin-bottom: 10px; }
.testing-card p { font-size: 14px; }
.testing-note { display: flex; align-items: flex-start; gap: 16px; background: rgba(31,181,115,0.07); border: 1px solid rgba(31,181,115,0.25); border-radius: var(--radius-sm); padding: 20px 24px; }
.testing-note-ico { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.testing-note p { margin: 0; font-size: 14px; }
@media (max-width: 700px) { .testing-grid { grid-template-columns: 1fr; } }

/* ============ Score layout ============ */
.score-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: start; }
.weight-pill { display: inline-block; font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 999px; }
.weight-pill.high { background: rgba(255,122,31,0.15); color: var(--saffron); border: 1px solid rgba(255,122,31,0.4); }
.weight-pill.mid  { background: rgba(255,195,77,0.12); color: var(--gold); border: 1px solid rgba(255,195,77,0.35); }
.weight-pill.low  { background: rgba(139,151,181,0.12); color: var(--text-muted); border: 1px solid rgba(139,151,181,0.3); }
.score-chart { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.score-chart-title { display: block; font-family: Poppins, sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 20px; }
.score-bar-list { display: flex; flex-direction: column; gap: 14px; }
.score-bar-item { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: var(--text-muted); }
.score-bar-track { background: rgba(255,255,255,0.05); border-radius: 999px; height: 28px; overflow: hidden; }
.score-bar-fill { height: 100%; background: var(--gradient-brand); border-radius: 999px; display: flex; align-items: center; justify-content: flex-end; padding-right: 10px; font-size: 12px; font-weight: 700; color: #1a0e02; }
@media (max-width: 860px) { .score-layout { grid-template-columns: 1fr; } }

/* ============ Safety / red flags ============ */
.safety-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.safety-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.safety-card.warning { border-color: rgba(255,77,106,0.3); background: rgba(255,77,106,0.04); }
.safety-ico { font-size: 28px; margin-bottom: 14px; }
.safety-card h3 { font-size: 18px; margin-bottom: 12px; }
.safety-card p { font-size: 14px; }
.redflags-list { list-style: none; padding: 0; margin: 12px 0; display: flex; flex-direction: column; gap: 10px; }
.redflags-list li { display: flex; gap: 10px; font-size: 13.5px; color: var(--text-muted); }
.redflags-list li::before { content: "✗"; color: var(--red); font-weight: 700; flex-shrink: 0; font-size: 14px; line-height: 1.5; }
@media (max-width: 700px) { .safety-grid { grid-template-columns: 1fr; } }

/* ============ Payout grid ============ */
.payout-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.payout-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; display: flex; flex-direction: column; }
.payout-ico { font-size: 28px; margin-bottom: 14px; }
.payout-card h3 { font-size: 18px; margin-bottom: 12px; }
.payout-card p { font-size: 14px; }
.payout-metrics { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.payout-metric { display: flex; justify-content: space-between; align-items: center; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 10px 14px; font-size: 13.5px; }
.pm-label { color: var(--text-muted); }
.pm-value.green { color: var(--green); font-weight: 600; }
.pm-value.gold { color: var(--gold); font-weight: 600; }
@media (max-width: 700px) { .payout-grid { grid-template-columns: 1fr; } }

/* ============ Player type grid ============ */
.player-type-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.player-type-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; transition: border-color .18s, transform .18s; }
.player-type-card:hover { border-color: rgba(255,122,31,0.4); transform: translateY(-2px); }
.pt-ico { font-size: 28px; margin-bottom: 10px; }
.pt-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--saffron); background: rgba(255,122,31,0.1); border: 1px solid rgba(255,122,31,0.25); padding: 3px 10px; border-radius: 999px; display: inline-block; margin-bottom: 12px; }
.player-type-card h3 { font-size: 17px; margin-bottom: 10px; }
.player-type-card p { font-size: 13.5px; flex: 1; }
.pt-look-for { margin-top: 14px; display: flex; flex-direction: column; gap: 6px; }
.pt-look-for strong { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); }
.pt-look-for span { font-size: 12.5px; color: var(--green); background: rgba(31,181,115,0.08); border: 1px solid rgba(31,181,115,0.2); padding: 4px 10px; border-radius: 999px; display: inline-block; }
@media (max-width: 900px) { .player-type-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .player-type-grid { grid-template-columns: 1fr; } }

/* ============ Reviewer notes card ============ */
.notes-card { background: var(--card); border: 1px solid var(--border); border-radius: 24px; padding: 44px; }
.notes-card h2 { font-size: clamp(22px, 2.8vw, 32px); margin-bottom: 12px; }
.notes-card > p { font-size: 15px; margin-bottom: 32px; }
.notes-list { display: flex; flex-direction: column; gap: 20px; }
.notes-item { display: flex; gap: 20px; align-items: flex-start; padding: 20px; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: var(--radius-sm); }
.notes-num { font-family: Poppins, sans-serif; font-size: 24px; font-weight: 800; color: rgba(255,195,77,0.25); flex-shrink: 0; line-height: 1.4; width: 34px; }
.notes-item p { margin: 0; font-size: 14.5px; }
.notes-item strong { color: var(--gold); }

/* ============ Watch layout ============ */
.watch-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px; align-items: start; }
.watch-text p { font-size: 15px; }
@media (max-width: 860px) { .watch-layout { grid-template-columns: 1fr; } }

/* ============ Section lead (used on inner pages) ============ */
.section-lead { font-size: 16px; max-width: 760px; margin-bottom: 32px; }

/* ============ Method overview strip ============ */
.method-overview-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; padding: 24px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 8px; }
.mo-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px; display: flex; flex-direction: column; gap: 4px; }
.mo-item.mo-best { border-color: rgba(255,122,31,0.4); background: rgba(255,122,31,0.05); }
.mo-badge { font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 999px; display: inline-block; width: fit-content; background: rgba(255,122,31,0.15); color: var(--saffron); border: 1px solid rgba(255,122,31,0.3); margin-bottom: 4px; }
.mo-badge-green { background: rgba(31,181,115,0.12); color: var(--green); border-color: rgba(31,181,115,0.3); }
.mo-badge-muted { background: rgba(139,151,181,0.1); color: var(--text-muted); border-color: rgba(139,151,181,0.25); }
.mo-badge-crypto { background: rgba(255,195,77,0.12); color: var(--gold); border-color: rgba(255,195,77,0.3); }
.mo-item strong { font-size: 14px; color: var(--text); }
.mo-item span:last-child { font-size: 12px; color: var(--text-muted); }
@media (max-width: 900px) { .method-overview-strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .method-overview-strip { grid-template-columns: 1fr 1fr; } }

/* ============ Method feature card (UPI) ============ */
.method-feature-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.upi-card { border-color: rgba(31,181,115,0.3); }
.mf-header { display: flex; align-items: center; gap: 16px; padding: 24px 28px; border-bottom: 1px solid var(--border); background: rgba(31,181,115,0.05); }
.mf-icon { font-size: 32px; }
.mf-name { font-family: Poppins, sans-serif; font-size: 18px; font-weight: 700; display: block; margin-bottom: 6px; }
.method-status-pill { font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 999px; }
.method-status-pill.green { background: rgba(31,181,115,0.15); color: var(--green); border: 1px solid rgba(31,181,115,0.4); }
.mf-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-bottom: 1px solid var(--border); }
.mf-stat { padding: 16px 20px; border-right: 1px solid var(--border); }
.mf-stat:last-child { border-right: none; }
.mf-stat-label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .07em; color: var(--text-muted); margin-bottom: 4px; }
.mf-stat-val { font-size: 15px; font-weight: 600; color: var(--text); }
.mf-stat-val.green { color: var(--green); }
.mf-body { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.mf-section { padding: 28px; border-right: 1px solid var(--border); }
.mf-section:last-child { border-right: none; }
.mf-section h3 { font-size: 16px; margin-bottom: 10px; }
.mf-section p { font-size: 14px; }
@media (max-width: 860px) {
  .mf-stats { grid-template-columns: 1fr 1fr; }
  .mf-body { grid-template-columns: 1fr; }
  .mf-section { border-right: none; border-bottom: 1px solid var(--border); }
  .mf-section:last-child { border-bottom: none; }
}
@media (max-width: 560px) { .mf-stats { grid-template-columns: 1fr 1fr; } .mf-stat { border-right: none; border-bottom: 1px solid var(--border); } }

/* ============ Wallet grid ============ */
.wallet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.wallet-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.wallet-logo { width: 48px; height: 48px; border-radius: 12px; background: var(--gradient-brand); color: #1a0e02; font-weight: 800; font-size: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.wallet-name { display: block; font-family: Poppins, sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 14px; }
.wallet-stats { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; padding: 14px; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: var(--radius-sm); }
.ws-row { display: flex; justify-content: space-between; font-size: 13px; }
.ws-row span:first-child { color: var(--text-muted); }
.ws-row .green { color: var(--green); font-weight: 600; }
.wallet-card h3 { font-size: 15px; margin-bottom: 8px; }
.wallet-card p { font-size: 13.5px; margin: 0; }
@media (max-width: 860px) { .wallet-grid { grid-template-columns: 1fr; } }

/* ============ Banking grid ============ */
.banking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.banking-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; }
.banking-header { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 18px; }
.banking-ico { font-size: 28px; }
.banking-name { display: block; font-family: Poppins, sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.banking-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.pill-gold { font-size: 11.5px; font-weight: 600; color: var(--gold); background: rgba(255,195,77,0.1); border: 1px solid rgba(255,195,77,0.3); padding: 3px 10px; border-radius: 999px; }
.pill-muted { font-size: 11.5px; font-weight: 600; color: var(--text-muted); background: rgba(139,151,181,0.08); border: 1px solid rgba(139,151,181,0.25); padding: 3px 10px; border-radius: 999px; }
.pill-green { font-size: 11.5px; font-weight: 600; color: var(--green); background: rgba(31,181,115,0.1); border: 1px solid rgba(31,181,115,0.3); padding: 3px 10px; border-radius: 999px; }
.banking-card h3 { font-size: 16px; margin-bottom: 10px; }
.banking-card p { font-size: 14px; }
@media (max-width: 700px) { .banking-grid { grid-template-columns: 1fr; } }

/* ============ Crypto card ============ */
.crypto-card { display: grid; grid-template-columns: 1.1fr 1fr; gap: 24px; }
.crypto-left { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; }
.crypto-header { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 22px; }
.crypto-ico { font-size: 32px; font-weight: 800; }
.crypto-left h3 { font-size: 16px; margin: 18px 0 10px; }
.crypto-left p { font-size: 14px; }
.coin-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.coin-pill { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--gold); background: rgba(255,195,77,0.08); border: 1px solid rgba(255,195,77,0.25); padding: 6px 14px; border-radius: 999px; }
.crypto-right { display: flex; flex-direction: column; }
.crypto-warning { background: rgba(255,195,77,0.06); border: 1px solid rgba(255,195,77,0.25); border-radius: var(--radius); padding: 28px; height: 100%; }
.crypto-warning strong { display: block; font-size: 15px; font-family: Poppins, sans-serif; color: var(--gold); margin-bottom: 14px; }
.crypto-warning-h3 { font-size: 15px; margin-bottom: 12px; display: none; }
.crypto-warning p { font-size: 14px; }
@media (max-width: 860px) { .crypto-card { grid-template-columns: 1fr; } }

/* ============ Limit rows ============ */
.limit-rows { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.limit-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 14px; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 13.5px; }
.limit-row .green { color: var(--green); font-weight: 600; }
.limit-row .gold { color: var(--gold); font-weight: 600; }

/* ============ Table colour helpers ============ */
.td-green { color: var(--green); font-weight: 600; }
.td-gold { color: var(--gold); font-weight: 600; }

/* ============ Withdrawal cards ============ */
.withdrawal-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.wd-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.wd-ico { font-size: 28px; margin-bottom: 14px; }
.wd-card h3 { font-size: 16px; margin-bottom: 10px; }
.wd-card p { font-size: 14px; }
@media (max-width: 700px) { .withdrawal-cards { grid-template-columns: 1fr; } }

/* ============ Fees banner ============ */
.fees-banner { display: flex; gap: 24px; align-items: flex-start; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; }
.fees-ico { font-size: 36px; flex-shrink: 0; margin-top: 4px; }
.fees-banner h2 { font-size: clamp(20px, 2.6vw, 28px); margin-bottom: 14px; }
.fees-banner p { font-size: 14.5px; }
@media (max-width: 700px) { .fees-banner { flex-direction: column; gap: 14px; } }

/* ============ Choose grid ============ */
.choose-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.choose-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; display: flex; flex-direction: column; gap: 8px; transition: border-color .18s, transform .18s; }
.choose-card:hover { border-color: rgba(255,122,31,0.4); transform: translateY(-2px); }
.choose-ico { font-size: 28px; }
.choose-card strong { font-size: 16px; font-family: Poppins, sans-serif; }
.choose-card p { font-size: 13.5px; flex: 1; margin: 0; }
.choose-rec { font-size: 13px; color: var(--saffron); font-weight: 600; margin-top: 8px; }
@media (max-width: 900px) { .choose-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .choose-grid { grid-template-columns: 1fr; } }

/* ============ Safety tips grid ============ */
.safety-tips-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.safety-tip { display: flex; gap: 16px; align-items: flex-start; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 20px; }
.st-ico { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.safety-tip strong { display: block; font-size: 15px; margin-bottom: 6px; }
.safety-tip p { font-size: 13.5px; margin: 0; }
@media (max-width: 700px) { .safety-tips-grid { grid-template-columns: 1fr; } }

/* ============ First deposit layout ============ */
.first-deposit-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; align-items: start; }
.deposit-tip-card { background: rgba(255,195,77,0.06); border: 1px solid rgba(255,195,77,0.25); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; gap: 12px; }
.dtip-ico { font-size: 28px; }
.deposit-tip-card strong { font-size: 17px; font-family: Poppins, sans-serif; color: var(--gold); }
.deposit-tip-card p { font-size: 14px; margin: 0; }
@media (max-width: 860px) { .first-deposit-layout { grid-template-columns: 1fr; } }

/* ============ Update banner ============ */
.update-banner { display: flex; align-items: flex-start; gap: 24px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; }
.update-ico { font-size: 32px; flex-shrink: 0; margin-top: 4px; }
.update-banner h2 { font-size: clamp(20px, 2.4vw, 26px); margin-bottom: 12px; }
.update-banner p { font-size: 14.5px; }
@media (max-width: 700px) { .update-banner { flex-direction: column; gap: 14px; } }

/* ============ Bonus offer cards ============ */
.bonus-offer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.bonus-offer-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; display: flex; flex-direction: column; gap: 14px; position: relative; }
.bo-rank { position: absolute; top: -10px; left: 16px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; background: var(--gradient-brand); color: #1a0e02; padding: 4px 12px; border-radius: 999px; }
.bo-rank-live { background: linear-gradient(135deg, #1fb573, #0e8a50); color: #fff; }
.bo-rank-high { background: linear-gradient(135deg, #a855f7, #7c3aed); color: #fff; }
.bo-rank-india { background: linear-gradient(135deg, #f97316, #ea580c); color: #fff; }
.bo-top { display: flex; align-items: center; gap: 12px; margin-top: 10px; }
.bo-top .brand-logo { width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0; font-size: 13px; }
.bo-name { display: block; font-family: Poppins, sans-serif; font-weight: 700; font-size: 15px; }
.bo-top .stars { font-size: 11px; color: var(--gold); }
.bo-amount { font-family: Poppins, sans-serif; font-size: 22px; font-weight: 800; color: var(--gold); }
.bo-amount span { font-size: 13px; font-weight: 500; color: var(--text-muted); display: block; margin-top: 2px; }
.bo-terms-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.bo-term { display: flex; flex-direction: column; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 8px 10px; }
.bt-label { font-size: 10px; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); margin-bottom: 2px; }
.bt-val { font-size: 14px; font-weight: 700; color: var(--text); }
.bt-val.green { color: var(--green); }
.bt-val.gold { color: var(--gold); }
.bo-disclaimer { font-size: 11px; color: var(--text-muted); opacity: .7; margin: 0; text-align: center; }
@media (max-width: 1000px) { .bonus-offer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .bonus-offer-grid { grid-template-columns: 1fr; } }

/* ============ Bonus type grid ============ */
.bonus-type-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bonus-type-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.bt-icon { font-size: 30px; margin-bottom: 12px; }
.bt-wager-tag { display: inline-block; font-size: 11.5px; font-weight: 700; color: var(--saffron); background: rgba(255,122,31,0.1); border: 1px solid rgba(255,122,31,0.25); padding: 4px 12px; border-radius: 999px; margin-bottom: 14px; }
.bonus-type-card h3 { font-size: 17px; margin-bottom: 10px; }
.bonus-type-card p { font-size: 13.5px; }
@media (max-width: 860px) { .bonus-type-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .bonus-type-grid { grid-template-columns: 1fr; } }

/* ============ Wagering explainer ============ */
.wager-explainer { display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; margin-bottom: 24px; align-items: start; }
.we-content { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.we-content h3 { font-size: 20px; margin-bottom: 14px; }
.we-content p { font-size: 14.5px; }
.we-calc { background: rgba(255,195,77,0.06); border: 1px solid rgba(255,195,77,0.3); border-radius: var(--radius); padding: 28px; }
.we-calc-title { display: block; font-family: Poppins, sans-serif; font-size: 14px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 20px; }
.we-calc-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(255,195,77,0.15); font-size: 14px; }
.we-calc-row:first-of-type { border-top: none; }
.we-val { font-weight: 700; color: var(--text); }
.we-val.gold { color: var(--gold); font-size: 20px; }
.we-calc-divider { height: 1px; background: rgba(255,195,77,0.3); margin: 8px 0; }
.we-calc-total { padding: 14px 0 0; border-bottom: none; font-weight: 600; }
.we-calc-note { font-size: 12.5px; color: var(--text-muted); margin: 14px 0 0; }
.we-calc-note strong { color: var(--gold); }
@media (max-width: 820px) { .wager-explainer { grid-template-columns: 1fr; } }

/* ============ Wager cards ============ */
.wager-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.wager-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; }
.wc-ico { font-size: 28px; margin-bottom: 14px; }
.wager-card h3 { font-size: 17px; margin-bottom: 12px; }
.wager-card p { font-size: 14px; }
.wc-highlight { background: rgba(255,122,31,0.08); border: 1px solid rgba(255,122,31,0.25); border-radius: var(--radius-sm); padding: 12px 16px; font-size: 13.5px; margin-top: 16px; }
.wc-highlight strong { color: var(--saffron); }
.contrib-bars { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.cb-row { display: flex; align-items: center; gap: 14px; font-size: 13px; }
.cb-row span:first-child { width: 110px; color: var(--text-muted); flex-shrink: 0; }
.cb-track { flex: 1; background: rgba(255,255,255,0.05); border-radius: 999px; height: 26px; overflow: hidden; }
.cb-fill { height: 100%; border-radius: 999px; display: flex; align-items: center; padding-left: 10px; font-size: 11.5px; font-weight: 700; color: #fff; min-width: 60px; }
.cb-note { font-size: 12px; color: var(--text-muted); margin-top: 12px; font-style: italic; }
@media (max-width: 700px) { .wager-cards { grid-template-columns: 1fr; } }

/* ============ Code grid ============ */
.code-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.code-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; }
.code-card.warning-card { border-color: rgba(255,77,106,0.3); background: rgba(255,77,106,0.04); }
.code-ico { font-size: 28px; margin-bottom: 14px; }
.code-card h3 { font-size: 17px; margin-bottom: 12px; }
.code-card p { font-size: 14px; }
.code-steps { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.cs-step { display: flex; align-items: flex-start; gap: 12px; font-size: 13.5px; color: var(--text-muted); }
.cs-n { width: 24px; height: 24px; border-radius: 50%; background: var(--gradient-brand); color: #1a0e02; font-size: 11px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
@media (max-width: 700px) { .code-grid { grid-template-columns: 1fr; } }

/* ============ Stacking banner ============ */
.stacking-banner { display: flex; align-items: flex-start; gap: 24px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; }
.stacking-ico { font-size: 36px; flex-shrink: 0; margin-top: 4px; }
.stacking-banner h2 { font-size: clamp(20px, 2.6vw, 28px); margin-bottom: 12px; }
.stacking-banner p { font-size: 14.5px; }
@media (max-width: 700px) { .stacking-banner { flex-direction: column; gap: 14px; } }

/* ============ Fair / unfair grid ============ */
.fair-unfair-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.fu-card { border-radius: var(--radius); padding: 32px; }
.fu-card.fair { background: rgba(31,181,115,0.05); border: 1px solid rgba(31,181,115,0.3); }
.fu-card.unfair { background: rgba(255,77,106,0.04); border: 1px solid rgba(255,77,106,0.3); }
.fu-header { margin-bottom: 16px; }
.fu-badge { font-size: 12px; font-weight: 700; padding: 5px 14px; border-radius: 999px; }
.fair-badge { background: rgba(31,181,115,0.15); color: var(--green); border: 1px solid rgba(31,181,115,0.4); }
.unfair-badge { background: rgba(255,77,106,0.15); color: var(--red); border: 1px solid rgba(255,77,106,0.4); }
.fu-card h3 { font-size: 17px; margin-bottom: 12px; }
.fu-card p { font-size: 14px; }
.fu-list { list-style: none; padding: 0; margin: 14px 0 0; display: flex; flex-direction: column; gap: 10px; }
.fu-list li { display: flex; gap: 10px; font-size: 13.5px; color: var(--text-muted); }
.fu-list li::before { content: "✓"; color: var(--green); font-weight: 700; flex-shrink: 0; }
.fu-list strong { color: var(--green); }
.td-red { color: var(--red); font-weight: 600; }
@media (max-width: 700px) { .fair-unfair-grid { grid-template-columns: 1fr; } }

/* ============ Games page: subsection helpers ============ */
.subsection-h3 { font-size: clamp(18px, 2.2vw, 22px); margin: 0 0 10px; }
.subsection-lead { font-size: 15px; color: var(--text-muted); margin-bottom: 24px; }

/* ============ Info note (icon tip card) ============ */
.info-note { display: flex; gap: 20px; align-items: flex-start; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 28px; }
.in-ico { font-size: 26px; flex-shrink: 0; margin-top: 2px; }
.info-note strong { display: block; font-size: 15px; font-family: Poppins, sans-serif; color: var(--text); margin-bottom: 8px; }
.info-note p { font-size: 14px; }

/* ============ Volatility grid ============ */
.vol-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.vol-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.vol-card.low-vol { border-color: rgba(31,181,115,0.3); background: rgba(31,181,115,0.04); }
.vol-card.high-vol { border-color: rgba(255,122,31,0.3); background: rgba(255,122,31,0.04); }
.vol-badge { font-size: 11.5px; font-weight: 700; padding: 5px 14px; border-radius: 999px; display: inline-block; margin-bottom: 14px; }
.vol-badge.low { background: rgba(31,181,115,0.15); color: var(--green); border: 1px solid rgba(31,181,115,0.4); }
.vol-badge.high { background: rgba(255,122,31,0.12); color: var(--saffron); border: 1px solid rgba(255,122,31,0.35); }
.vol-ico { font-size: 36px; margin-bottom: 12px; display: block; }
.vol-title { display: block; font-family: Poppins, sans-serif; font-size: 19px; font-weight: 700; margin-bottom: 12px; }
.vol-card p { font-size: 14px; margin: 0 0 16px; }
.vol-best-for { font-size: 13px; padding: 12px 16px; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: var(--radius-sm); }
.vol-best-for strong { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); margin-bottom: 4px; }
.vol-best-for span { color: var(--text); }
@media (max-width: 700px) { .vol-grid { grid-template-columns: 1fr; } }

/* ============ Game category cards ============ */
.game-cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.game-cat-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: border-color .18s, transform .18s; }
.game-cat-card:hover { border-color: rgba(255,122,31,0.35); transform: translateY(-2px); }
.gc-icon { font-size: 32px; margin-bottom: 14px; display: block; }
.gc-badge { display: inline-block; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 999px; margin-bottom: 14px; }
.gc-badge.live { background: rgba(31,181,115,0.12); color: var(--green); border: 1px solid rgba(31,181,115,0.3); }
.gc-badge.classic { background: rgba(255,195,77,0.1); color: var(--gold); border: 1px solid rgba(255,195,77,0.3); }
.gc-badge.india { background: rgba(255,122,31,0.1); color: var(--saffron); border: 1px solid rgba(255,122,31,0.3); }
.gc-badge.crash { background: rgba(168,85,247,0.12); color: #c084fc; border: 1px solid rgba(168,85,247,0.3); }
.game-cat-card h3 { font-size: 17px; margin-bottom: 10px; }
.game-cat-card > p { font-size: 13.5px; margin: 0 0 14px; }
.gc-meta { display: flex; flex-direction: column; gap: 6px; border-top: 1px solid var(--border); padding-top: 14px; margin-top: 12px; }
.gc-meta-row { display: flex; justify-content: space-between; font-size: 12.5px; }
.gc-meta-row span:first-child { color: var(--text-muted); }
.gc-meta-row strong { color: var(--text); }
@media (max-width: 860px) { .game-cat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .game-cat-grid { grid-template-columns: 1fr; } }

/* ============ RTP layout ============ */
.rtp-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 28px; align-items: start; }
.rtp-content { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.rtp-content p { font-size: 14.5px; }
.rtp-visual { background: rgba(255,195,77,0.05); border: 1px solid rgba(255,195,77,0.25); border-radius: var(--radius); padding: 28px; }
.rtp-vis-title { display: block; font-family: Poppins, sans-serif; font-size: 13px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 20px; text-align: center; }
.rtp-donut { width: 130px; height: 130px; border-radius: 50%; background: conic-gradient(var(--gold) 0% 96%, var(--red) 96% 100%); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.rtp-donut-inner { width: 88px; height: 88px; border-radius: 50%; background: var(--card); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; }
.rtp-donut-pct { font-family: Poppins, sans-serif; font-size: 22px; font-weight: 800; color: var(--gold); line-height: 1; }
.rtp-donut-lbl { font-size: 10px; color: var(--text-muted); text-transform: uppercase; }
.rtp-key { display: flex; gap: 20px; justify-content: center; margin-bottom: 20px; }
.rtp-key-item { display: flex; align-items: center; gap: 6px; }
.rtp-key-dot { width: 10px; height: 10px; border-radius: 50%; }
.rtp-key-dot.player { background: var(--gold); }
.rtp-key-dot.house { background: var(--red); }
.rtp-stat-rows { display: flex; flex-direction: column; gap: 8px; }
.rtp-stat-row { display: flex; justify-content: space-between; font-size: 13px; padding: 9px 12px; background: rgba(255,255,255,0.03); border-radius: var(--radius-sm); border: 1px solid var(--border); }
.rtp-stat-row span:first-child { color: var(--text-muted); }
.rtp-stat-row strong { color: var(--text); }
@media (max-width: 820px) { .rtp-layout { grid-template-columns: 1fr; } }

/* ============ Review page: brand hero strip ============ */
.review-brand { display: flex; align-items: flex-start; gap: 28px; margin-bottom: 28px; flex-wrap: wrap; }
.brand-logo-review { flex-shrink: 0; background: #fff; border-radius: 14px; padding: 12px 20px; display: flex; align-items: center; justify-content: center; min-width: 160px; height: 72px; }
.brand-logo-review img { max-width: 140px; max-height: 50px; object-fit: contain; }
.review-meta { display: flex; flex-direction: column; gap: 10px; }
.review-score-hero { display: flex; align-items: center; gap: 14px; }
.rsh-score { font-family: Poppins, sans-serif; font-size: 46px; font-weight: 800; color: var(--gold); line-height: 1; }
.rsh-stars { font-size: 24px; color: var(--gold); letter-spacing: 1px; }
.rsh-label { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.review-quick-facts { display: flex; gap: 8px; flex-wrap: wrap; }
.rqf-item { font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 999px; background: rgba(255,255,255,0.05); border: 1px solid var(--border); }
.rqf-item .rqf-val { color: var(--gold); }

/* ============ Review: Verdict grid ============ */
.verdict-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.verdict-card { border-radius: var(--radius); padding: 28px; }
.verdict-card.pros { background: rgba(31,181,115,0.05); border: 1px solid rgba(31,181,115,0.3); }
.verdict-card.cons { background: rgba(255,77,106,0.04); border: 1px solid rgba(255,77,106,0.28); }
.vc-header { margin-bottom: 16px; }
.vc-badge { font-size: 12px; font-weight: 700; padding: 5px 14px; border-radius: 999px; }
.vc-badge.pros { background: rgba(31,181,115,0.15); color: var(--green); border: 1px solid rgba(31,181,115,0.4); }
.vc-badge.cons { background: rgba(255,77,106,0.15); color: var(--red); border: 1px solid rgba(255,77,106,0.4); }
.vc-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.vc-list li { display: flex; gap: 10px; font-size: 13.5px; color: var(--text-muted); }
.vc-list.pros li::before { content: "✓"; color: var(--green); font-weight: 700; flex-shrink: 0; }
.vc-list.cons li::before { content: "✗"; color: var(--red); font-weight: 700; flex-shrink: 0; }
@media (max-width: 700px) { .verdict-grid { grid-template-columns: 1fr; } }

/* ============ Review: Bonus showcase ============ */
.bonus-showcase { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; align-items: start; }
.bs-card { background: var(--card); border: 1px solid rgba(255,195,77,0.3); border-radius: var(--radius); overflow: hidden; }
.bs-top { background: rgba(255,195,77,0.06); padding: 24px 28px; border-bottom: 1px solid rgba(255,195,77,0.2); }
.bs-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.bs-logo { width: 52px; height: 52px; border-radius: 12px; background: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; padding: 5px; }
.bs-logo img { width: 100%; height: 100%; object-fit: contain; }
.bs-name { font-family: Poppins, sans-serif; font-size: 18px; font-weight: 700; display: block; }
.bs-offer-label { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); display: block; margin-bottom: 8px; }
.bs-amount { font-family: Poppins, sans-serif; font-size: 32px; font-weight: 800; color: var(--gold); line-height: 1.1; margin-bottom: 6px; }
.bs-subtitle { font-size: 14px; color: var(--text-muted); margin: 0; }
.bs-body { padding: 20px 28px; display: flex; flex-direction: column; gap: 0; }
.bs-term-row { display: flex; justify-content: space-between; align-items: center; font-size: 13.5px; padding: 9px 0; border-bottom: 1px solid rgba(35,47,75,0.5); }
.bs-term-row:last-child { border-bottom: none; }
.bs-term-row span:first-child { color: var(--text-muted); }
.bs-term-row strong.green { color: var(--green); }
.bs-term-row strong.gold { color: var(--gold); }
.bs-sidebar { display: flex; flex-direction: column; gap: 16px; }
.bs-claim-steps { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.bs-claim-title { display: block; font-size: 15px; font-family: Poppins, sans-serif; font-weight: 700; margin-bottom: 16px; }
.bs-step { display: flex; align-items: flex-start; gap: 12px; font-size: 13.5px; color: var(--text-muted); margin-bottom: 10px; }
.bs-step-n { width: 26px; height: 26px; border-radius: 50%; background: var(--gradient-brand); color: #1a0e02; font-size: 11px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bs-note { background: rgba(255,122,31,0.06); border: 1px solid rgba(255,122,31,0.2); border-radius: var(--radius-sm); padding: 14px 16px; font-size: 13px; color: var(--text-muted); }
.bs-note strong { color: var(--saffron); display: block; margin-bottom: 3px; }
@media (max-width: 860px) { .bonus-showcase { grid-template-columns: 1fr; } }

/* ============ Review: Score categories ============ */
.score-cats { display: flex; flex-direction: column; gap: 18px; }
.score-cat { display: flex; align-items: center; gap: 14px; }
.sc-label { font-size: 14px; color: var(--text-muted); min-width: 170px; flex-shrink: 0; }
.sc-track { flex: 1; background: rgba(255,255,255,0.05); border-radius: 999px; height: 10px; overflow: hidden; }
.sc-fill { height: 100%; border-radius: 999px; background: var(--gradient-brand); transition: width .3s; }
.sc-score { font-size: 14px; font-weight: 700; color: var(--text); min-width: 36px; text-align: right; }
@media (max-width: 560px) { .sc-label { min-width: 100px; font-size: 12px; } }

/* ============ Review: Support grid ============ */
.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.support-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.support-ico { font-size: 28px; margin-bottom: 12px; display: block; }
.support-status { display: inline-block; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 999px; margin-bottom: 10px; }
.support-status.available { background: rgba(31,181,115,0.12); color: var(--green); border: 1px solid rgba(31,181,115,0.3); }
.support-status.limited { background: rgba(255,195,77,0.1); color: var(--gold); border: 1px solid rgba(255,195,77,0.3); }
.support-card h3 { font-size: 16px; margin-bottom: 8px; }
.support-card p { font-size: 13.5px; margin: 0; }
@media (max-width: 700px) { .support-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 450px) { .support-grid { grid-template-columns: 1fr; } }

/* ============ Footer: 5-column layout ============ */
.footer-top { grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; }
@media (max-width: 1000px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }

/* ============ Author bar ============ */
.author-bar { border-top: 1px solid var(--border); padding-top: 36px; margin-top: 52px; }
.author-bar-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin: 0 0 18px; }
.author-cards { display: flex; flex-wrap: wrap; gap: 12px; }
.author-card { display: flex; align-items: center; gap: 12px; background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 12px 16px; flex: 0 0 auto; min-width: 200px; text-decoration: none; transition: border-color .15s, box-shadow .15s; }
.author-card:hover { border-color: rgba(255,195,77,0.4); box-shadow: 0 4px 20px -6px rgba(0,0,0,0.5); }
.ac-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, #1e2a4a, #0e1526); border: 2px solid rgba(255,195,77,0.2); display: flex; align-items: center; justify-content: center; font-family: Poppins,sans-serif; font-weight: 800; font-size: 12px; color: var(--gold); flex-shrink: 0; }
.ac-info { min-width: 0; }
.ac-name { font-size: 13px; font-weight: 700; color: var(--text); margin: 0 0 1px; white-space: nowrap; }
.ac-role { font-size: 11px; color: var(--saffron); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; margin: 0 0 2px; white-space: nowrap; }
.ac-contrib { font-size: 11.5px; color: var(--text-muted); margin: 0; }
@media (max-width: 600px) { .author-card { min-width: 160px; } }

/* ============ Team page ============ */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; margin-top: 40px; }
.team-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 28px 28px; text-align: center; transition: border-color .2s, box-shadow .2s; }
.team-card:hover { border-color: rgba(255,195,77,0.35); box-shadow: 0 8px 32px -8px rgba(0,0,0,0.5); }
.team-avatar { width: 88px; height: 88px; border-radius: 50%; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; font-family: Poppins, sans-serif; font-weight: 800; font-size: 26px; color: var(--gold); background: linear-gradient(135deg, #1e2a4a 0%, #0e1526 100%); border: 3px solid rgba(255,195,77,0.25); flex-shrink: 0; }
.team-card.chief .team-avatar { border-color: rgba(255,195,77,0.55); background: linear-gradient(135deg, #2a1e0a, #1a1205); color: var(--gold); }
.team-name { font-family: Poppins, sans-serif; font-size: 18px; font-weight: 700; color: var(--text); margin: 0 0 5px; }
.team-role { font-size: 12px; font-weight: 700; color: var(--saffron); text-transform: uppercase; letter-spacing: .07em; margin: 0 0 14px; }
.team-card-bio { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; margin: 0; }
.team-badge { display: inline-block; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 999px; margin-bottom: 12px; background: rgba(255,195,77,0.1); border: 1px solid rgba(255,195,77,0.3); color: var(--gold); }
/* Team profile sections */
.team-profile { display: grid; grid-template-columns: 1fr 2.2fr; gap: 40px; align-items: start; margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--border); }
.team-profile:last-child { border-bottom: none; }
.tp-sidebar { text-align: center; }
.tp-avatar { width: 100px; height: 100px; border-radius: 50%; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; font-family: Poppins, sans-serif; font-weight: 800; font-size: 28px; color: var(--gold); background: linear-gradient(135deg, #1e2a4a, #0e1526); border: 3px solid rgba(255,195,77,0.25); }
.tp-name { font-family: Poppins, sans-serif; font-size: 17px; font-weight: 700; color: var(--text); margin: 0 0 4px; }
.tp-role { font-size: 12px; color: var(--saffron); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin: 0 0 10px; }
.tp-exp { font-size: 12px; color: var(--text-muted); }
.tp-body h3 { font-family: Poppins, sans-serif; font-size: 16px; font-weight: 700; color: var(--text); margin: 0 0 10px; }
.tp-body p { font-size: 14.5px; color: var(--text-muted); line-height: 1.8; margin: 0 0 16px; }
.tp-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.tp-tags span { font-size: 12px; background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 6px; padding: 4px 10px; color: var(--text-muted); }
@media (max-width: 700px) { .team-profile { grid-template-columns: 1fr; } .tp-sidebar { display: flex; align-items: center; gap: 16px; text-align: left; } .tp-avatar { margin: 0; flex-shrink: 0; width: 72px; height: 72px; font-size: 22px; } }
/* Static contact form */
.contact-form { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-muted); }
.form-group input, .form-group select, .form-group textarea { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 8px; padding: 11px 14px; color: var(--text); font-family: inherit; font-size: 14px; transition: border-color .15s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--saffron); }
.form-group textarea { resize: vertical; min-height: 130px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
/* RG self-assessment */
.rg-quiz { display: flex; flex-direction: column; gap: 16px; }
.rg-q { background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 18px 20px; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.rg-q p { margin: 0; font-size: 14.5px; color: var(--text); flex: 1; min-width: 220px; }
.rg-btns { display: flex; gap: 8px; flex-shrink: 0; }
.rg-btns button { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 6px; padding: 6px 16px; font-size: 13px; color: var(--text-muted); cursor: pointer; transition: all .15s; }
.rg-btns button:hover { border-color: var(--saffron); color: var(--saffron); }

/* ============ Nav: wrapping & mobile dropdown fixes ============ */

/* 1. Prevent top-level nav link text from wrapping at intermediate sizes */
.nav-links > li > a { white-space: nowrap; }

/* 2. Compact nav at mid-sizes before the mobile breakpoint */
@media (max-width: 1180px) {
  .nav-links { gap: 18px; }
}
@media (max-width: 1060px) {
  .nav-links { gap: 10px; }
  .nav-links > li > a { font-size: 13px; }
  .geo-pill { display: none; }
}

/* 3. Prevent horizontal page scroll on all viewports */
html { overflow-x: hidden; }

/* 3a. Header logo: hide "Best Casino India" text on mobile,
   keep only the BOCI mark (logo-mark has its own font-size: 13px). */
@media (max-width: 900px) {
  .site-header .logo { font-size: 0; gap: 0; }
}

/* 4. Mobile: override the desktop hover rule (specificity 0,2,0) that
   applies translateX(-50%) to static-positioned dropdowns on touch,
   causing them to shift far left. Also clean up width and wrapping. */
@media (max-width: 900px) {
  .nav-item.has-dropdown { position: static; }
  .has-dropdown:hover .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .dropdown-menu { width: 100%; }
  .dropdown-menu li a { white-space: normal; }
}

/* ============ Prose block (inline rich text container) ============ */
.prose-block { font-size: 16px; line-height: 1.75; color: var(--text-muted); }
.prose-block + .prose-block { margin-top: 1.2em; }

/* ============ Shared rich-text styles: prose-section, prose-block, seo-text ============ */
.prose-section p,
.prose-block p,
.seo-text p {
  font-size: 16px; line-height: 1.75; color: var(--text-muted); margin: 0 0 1.1em;
}
.prose-section h2, .prose-block h2, .seo-text h2 {
  font-family: 'Poppins', Inter, sans-serif;
  font-size: clamp(22px, 2.6vw, 30px); font-weight: 700;
  color: var(--text); margin: 1.8em 0 .55em; line-height: 1.25;
}
.prose-section h2:first-child, .prose-block h2:first-child, .seo-text h2:first-child { margin-top: 0; }
.prose-section h3, .prose-block h3, .seo-text h3 {
  font-family: 'Poppins', Inter, sans-serif;
  font-size: clamp(17px, 1.8vw, 21px); font-weight: 700;
  color: var(--text); margin: 1.5em 0 .45em; line-height: 1.3;
}
.prose-section h4, .prose-block h4, .seo-text h4 {
  font-family: 'Poppins', Inter, sans-serif;
  font-size: 17px; font-weight: 600; color: var(--text); margin: 1.3em 0 .4em;
}
.prose-section ul, .prose-block ul, .seo-text ul,
.prose-section ol, .prose-block ol, .seo-text ol {
  margin: 0 0 1.2em; padding-left: 1.4em;
  color: var(--text-muted); font-size: 15.5px; line-height: 1.8;
}
.prose-section li, .prose-block li, .seo-text li { margin-bottom: .45em; }
.prose-section ul li::marker, .prose-block ul li::marker, .seo-text ul li::marker { color: var(--gold); }
.prose-section ol li::marker, .prose-block ol li::marker, .seo-text ol li::marker { color: var(--gold); font-weight: 700; }
.prose-section a, .prose-block a, .seo-text a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.prose-section a:hover, .prose-block a:hover, .seo-text a:hover { color: var(--saffron); }
.prose-section strong, .prose-block strong, .seo-text strong { color: var(--text); }
.prose-section em, .prose-block em, .seo-text em { color: var(--text); font-style: italic; }
.prose-section blockquote, .prose-block blockquote, .seo-text blockquote {
  border-left: 3px solid var(--gold); padding: 12px 20px; margin: 1.5em 0;
  background: rgba(255,195,77,0.05); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text-muted);
}

/* Table defaults in rich-text contexts */
.prose-section table, .prose-block table, .seo-text table {
  width: 100%; border-collapse: collapse; font-size: 14.5px; margin: 1.5em 0;
  border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden;
  display: block; overflow-x: auto;
}
.prose-section thead, .prose-block thead, .seo-text thead { background: rgba(255,122,31,0.08); }
.prose-section th, .prose-block th, .seo-text th {
  padding: 12px 16px; text-align: left; font-size: 12px;
  text-transform: uppercase; letter-spacing: .07em;
  color: var(--gold); font-weight: 700; border-bottom: 1px solid var(--border);
}
.prose-section td, .prose-block td, .seo-text td {
  padding: 12px 16px; border-bottom: 1px solid rgba(35,47,75,0.6);
  color: var(--text-muted); vertical-align: top;
}
.prose-section td strong, .prose-block td strong, .seo-text td strong { color: var(--text); }
.prose-section tr:last-child td, .prose-block tr:last-child td, .seo-text tr:last-child td { border-bottom: none; }
.prose-section tr:hover td, .prose-block tr:hover td, .seo-text tr:hover td { background: rgba(255,255,255,0.02); }

/* ============ SEO text section ============ */
.seo-text { max-width: 820px; margin: 0 auto; }

/* ============ Home page-hero extras (buttons + trust row inside page-hero) ============ */
.page-hero .hero-actions { margin-top: 28px; }
.page-hero .trust-row { margin-top: 32px; }
.page-hero .page-hero-stats { margin-top: 36px; }

/* ============ Page image banner (above hero, full container width) ============ */
.page-img-banner {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  margin: 24px 0 0;
  line-height: 0;
}
.page-img-banner img {
  width: 100%;
  height: auto;
  max-height: 440px;
  object-fit: cover;
  display: block;
}
@media (max-width: 700px) {
  .page-img-banner img { max-height: 220px; }
}
