@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Tokens ── */
:root {
  --bg:         #060614;
  --bg-2:       #0c0c24;
  --bg-card:    #0f0f2e;
  --bg-card2:   #13132e;
  --gold:       #d4a843;
  --gold-lt:    #f0c84a;
  --gold-dim:   #7a5c1a;
  --purple:     #4f22a0;
  --purple-lt:  #8b5cf6;
  --text:       #e2ddd3;
  --text-sub:   #8a8578;
  --green-lt:   #22c55e;
  --red:        #dc2626;
  --border:     rgba(212,168,67,.15);
  --border-2:   rgba(212,168,67,.07);
  --r:          10px;
  --rl:         16px;
  --shadow:     0 8px 40px rgba(0,0,0,.7);
  --glow:       0 0 30px rgba(212,168,67,.22);
  --ff-d:       'Cinzel', serif;
  --ff-b:       'Inter', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-b);
  font-size: 15px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Stars bg ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(1px 1px at 12% 22%, rgba(212,168,67,.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 33% 63%, rgba(255,255,255,.14) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 54% 11%, rgba(212,168,67,.27) 0%, transparent 100%),
    radial-gradient(1px 1px at 74% 76%, rgba(255,255,255,.11) 0%, transparent 100%),
    radial-gradient(1px 1px at 87% 41%, rgba(212,168,67,.21) 0%, transparent 100%),
    radial-gradient(1px 1px at 21% 87%, rgba(255,255,255,.17) 0%, transparent 100%),
    radial-gradient(2px 2px at 91% 57%, rgba(212,168,67,.27) 0%, transparent 100%),
    radial-gradient(1px 1px at 61% 34%, rgba(212,168,67,.19) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--ff-d);
  line-height: 1.25;
  color: var(--gold-lt);
  letter-spacing: .02em;
}
h1 { font-size: clamp(1.45rem, 4vw, 2.5rem); font-weight: 700; }
h2 { font-size: clamp(1.15rem, 3vw, 1.8rem); font-weight: 600; }
h3 { font-size: clamp(.95rem, 2.2vw, 1.3rem); font-weight: 600; }
h4 { font-size: .97rem; font-weight: 600; color: var(--gold); }
p  { margin-bottom: .85em; color: var(--text); }
a  { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-lt); }
strong { font-weight: 600; }
img { max-width: 100%; height: auto; display: block; }

/* ── Layout ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.1rem; }
section    { position: relative; padding: 4rem 0; }

/* ── Section tag ── */
.tag {
  display: inline-block;
  font-family: var(--ff-d);
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: .28rem .85rem;
  border-radius: 50px;
  margin-bottom: .8rem;
}

/* ── Breadcrumb ── */
.bc { display: flex; align-items: center; gap: .4rem; font-size: .79rem; color: var(--text-sub); margin-bottom: 1.4rem; flex-wrap: wrap; }
.bc a { color: var(--gold-dim); }
.bc span { opacity: .45; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .75rem 1.7rem;
  border-radius: 50px;
  font-family: var(--ff-d);
  font-size: .83rem;
  font-weight: 600;
  letter-spacing: .06em;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all .25s;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, #d4a843, #a07820);
  color: #06060f;
  box-shadow: 0 4px 20px rgba(212,168,67,.4);
  animation: gp 2.8s infinite;
}
.btn-gold:hover  { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(212,168,67,.65); color: #06060f; }
.btn-outline     { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); }
.btn-outline:hover { background: rgba(212,168,67,.1); color: var(--gold-lt); }
.btn-green       { background: linear-gradient(135deg, #16a34a, #0f7535); color: #fff; }
.btn-green:hover { transform: translateY(-2px); color: #fff; }
@keyframes gp {
  0%,100% { box-shadow: 0 4px 20px rgba(212,168,67,.4); }
  50%      { box-shadow: 0 4px 38px rgba(212,168,67,.72), 0 0 55px rgba(212,168,67,.17); }
}

/* ── Card ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 1.5rem;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.card:hover { border-color: var(--gold); box-shadow: var(--glow); transform: translateY(-3px); }

/* ── Table wrapper ── */
.tw {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  overflow: hidden;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.t { width: 100%; border-collapse: collapse; font-size: .86rem; }
.t th {
  background: rgba(212,168,67,.1);
  color: var(--gold-lt);
  font-family: var(--ff-d);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .75rem .9rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.t td {
  padding: .72rem .9rem;
  border-bottom: 1px solid var(--border-2);
  color: var(--text);
  vertical-align: middle;
}
.t tr:last-child td { border-bottom: none; }
.t tr:hover td     { background: rgba(212,168,67,.04); }
.t .rk { font-family: var(--ff-d); font-weight: 700; color: var(--gold); font-size: 1rem; }

/* ── Badges ── */
.b { display: inline-block; padding: .18rem .6rem; border-radius: 50px; font-size: .72rem; font-weight: 600; white-space: nowrap; }
.b-gold   { background: rgba(212,168,67,.13); color: var(--gold); border: 1px solid rgba(212,168,67,.28); }
.b-green  { background: rgba(34,197,94,.11);  color: var(--green-lt); }
.b-red    { background: rgba(220,38,38,.11);  color: #f87171; }
.b-purple { background: rgba(139,92,246,.14); color: var(--purple-lt); }

/* ── Play CTA in tables ── */
.pcta {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: linear-gradient(135deg, #d4a843, #a07820);
  color: #06060f;
  font-weight: 700;
  font-size: .78rem;
  padding: .42rem .95rem;
  border-radius: 50px;
  white-space: nowrap;
  transition: all .2s;
}
.pcta:hover { transform: scale(1.05); color: #06060f; }

/* ── Stars ── */
.stars { color: var(--gold); letter-spacing: .05em; }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--ff-b);
  font-size: .93rem;
  font-weight: 600;
  text-align: left;
  padding: 1rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color .2s;
  -webkit-tap-highlight-color: transparent;
}
.faq-q:hover { color: var(--gold); }
.fi { font-size: 1.15rem; color: var(--gold); flex-shrink: 0; transition: transform .3s; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
  color: var(--text-sub);
  font-size: .9rem;
  line-height: 1.65;
}
.faq-item.open .faq-a { max-height: 600px; padding-bottom: 1rem; }
.faq-item.open .fi    { transform: rotate(45deg); }

/* ── Steps ── */
.steps { counter-reset: sc; }
.step  { display: flex; gap: 1rem; margin-bottom: 1.2rem; align-items: flex-start; }
.sn {
  counter-increment: sc;
  min-width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  color: #06060f;
  font-family: var(--ff-d);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  flex-shrink: 0;
}
.sn::after { content: counter(sc); }
.sb strong { display: block; margin-bottom: .18rem; font-size: .93rem; }
.sb p      { font-size: .84rem; color: var(--text-sub); margin: 0; }

/* ── Feature cards ── */
.feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.fc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  transition: border-color .3s, transform .2s;
}
.fc:hover { border-color: var(--gold); transform: translateY(-3px); }
.fc-icon  { font-size: 1.75rem; line-height: 1; }
.fc-title { font-family: var(--ff-d); font-size: .92rem; color: var(--gold-lt); }
.fc-val   { display: inline-block; background: rgba(212,168,67,.16); color: var(--gold); font-family: var(--ff-d); font-weight: 700; font-size: 1.05rem; padding: .18rem .65rem; border-radius: 6px; align-self: flex-start; }
.fc-desc  { font-size: .85rem; color: var(--text-sub); line-height: 1.6; margin: 0; }

/* ── Stat boxes ── */
.sr  { display: flex; flex-wrap: wrap; gap: .7rem; margin: 1.2rem 0; }
.sb2 {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: .8rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 90px;
  flex: 1;
}
.sv { font-family: var(--ff-d); font-size: 1.3rem; font-weight: 700; color: var(--gold); }
.sl { font-size: .7rem; color: var(--text-sub); margin-top: .1rem; }

/* ── Pros/Cons ── */
.pc { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.pc-p, .pc-c { background: var(--bg-card); border-radius: var(--rl); padding: 1.3rem; }
.pc-p { border: 1px solid rgba(34,197,94,.22); }
.pc-c { border: 1px solid rgba(220,38,38,.18); }
.pc-p h4 { color: var(--green-lt); margin-bottom: .8rem; font-family: var(--ff-d); }
.pc-c h4 { color: #f87171;         margin-bottom: .8rem; font-family: var(--ff-d); }
.pcl     { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.pcl li  { font-size: .87rem; display: flex; gap: .45rem; align-items: flex-start; }

/* ── Reviews ── */
.rg  { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.rc  { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--rl); padding: 1.3rem; }
.rh  { display: flex; align-items: center; gap: .7rem; margin-bottom: .8rem; }
.ra  {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--gold-dim));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-d); font-weight: 700; color: var(--gold-lt); font-size: .85rem; flex-shrink: 0;
}
.rn { font-weight: 600; font-size: .88rem; }
.rt { font-size: .86rem; color: var(--text-sub); line-height: 1.6; margin: 0; }

/* ── Symbol cards ── */
.sg  { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: .85rem; }
.sc2 { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r); padding: .9rem; text-align: center; transition: border-color .3s; }
.sc2:hover { border-color: var(--gold); }
.si  { font-size: 2rem; margin-bottom: .35rem; }
.sn2 { font-family: var(--ff-d); font-size: .82rem; color: var(--gold-lt); margin-bottom: .25rem; }
.sp  { font-size: .78rem; color: var(--text-sub); }
.sp strong { color: var(--green-lt); }

/* ── Geo bars ── */
.gb   { display: flex; align-items: center; gap: .6rem; font-size: .82rem; }
.gbar { height: 7px; border-radius: 4px; background: linear-gradient(90deg, var(--gold), var(--purple-lt)); min-width: 4px; flex-shrink: 0; }

/* ── Games grid ── */
.gg { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1rem; }
.gc { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--rl); padding: 1.2rem; text-align: center; transition: border-color .3s, transform .25s; }
.gc:hover { border-color: var(--gold); transform: translateY(-4px); }
.gc .gi { font-size: 2.3rem; margin-bottom: .55rem; }
.gc h4  { font-size: .92rem; margin-bottom: .35rem; }
.gc p   { font-size: .81rem; color: var(--text-sub); margin: 0; }

/* ── Sub-nav ── */
.subnav {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 57px;
  z-index: 90;
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.subnav::-webkit-scrollbar { display: none; }
.subnav a {
  padding: .65rem 1rem;
  font-size: .72rem;
  font-family: var(--ff-d);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-sub);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all .2s;
  -webkit-tap-highlight-color: transparent;
}
.subnav a:hover,
.subnav a.active { color: var(--gold); border-bottom-color: var(--gold); }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6,6,20,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.hi {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .72rem 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--ff-d);
  font-size: .98rem;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.logo img    { border-radius: 7px; }
.logo strong { color: var(--gold); }

.nav { display: flex; align-items: center; gap: 1rem; margin-left: auto; }
.nav a {
  font-size: .79rem;
  font-weight: 500;
  color: var(--text-sub);
  transition: color .2s;
  white-space: nowrap;
}
.nav a:hover { color: var(--gold); }

.hbtn   { font-size: .76rem; padding: .5rem 1.15rem; margin-left: .3rem; flex-shrink: 0; }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: .35rem;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all .3s;
}

/* ── Footer ── */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: 3rem 0 1.8rem; margin-top: 3rem; }
.fg {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.fh  { font-family: var(--ff-d); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: .85rem; }
.fl  { list-style: none; }
.fl li { margin-bottom: .42rem; }
.fl a  { color: var(--text-sub); font-size: .84rem; transition: color .2s; }
.fl a:hover { color: var(--gold); }
.tbadges { display: flex; flex-wrap: wrap; gap: .42rem; margin-top: .85rem; }
.fauth {
  display: flex;
  align-items: center;
  gap: .85rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 1rem 1.3rem;
  margin-bottom: 1.4rem;
}
.fav {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--gold-dim));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-d); font-weight: 700; color: var(--gold-lt); flex-shrink: 0;
}
.fdisc {
  background: rgba(6,6,20,.55);
  border: 1px solid rgba(220,38,38,.14);
  border-radius: var(--r);
  padding: 1rem 1.3rem;
  font-size: .79rem;
  color: var(--text-sub);
  margin-bottom: 1.4rem;
}

/* ── Misc ── */
.divider {
  display: flex; align-items: center; gap: 1rem;
  margin: 2.5rem 0; color: var(--gold-dim);
  font-family: var(--ff-d); font-size: .72rem; letter-spacing: .12em;
}
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* ── Reusable 2-col grid classes ── */
.grid-2   { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.grid-2-r { display: grid; grid-template-columns: 1.35fr 1fr; gap: 2.5rem; align-items: start; }
.grid-2-l { display: grid; grid-template-columns: 1fr 1.35fr; gap: 2.5rem; align-items: start; }
.grid-3   { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.2rem; }
.app-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }

/* ── CTA row ── */
.cta-row { display: flex; flex-wrap: wrap; gap: .8rem; }

/* =========================================================
   MOBILE — 880px
   ========================================================= */
@media (max-width: 880px) {
  /* Nav → hamburger */
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(6,6,20,.98);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: .75rem 1.1rem;
    margin: 0;
    z-index: 99;
  }
  .nav.open { display: flex; }
  .nav a {
    padding: .62rem 0;
    width: 100%;
    border-bottom: 1px solid var(--border-2);
    font-size: .88rem;
  }
  .burger { display: flex; }
  .hbtn   { display: none; }
  .subnav { top: 53px; }
}

/* =========================================================
   TABLET — 768px
   ========================================================= */
@media (max-width: 768px) {
  section { padding: 3rem 0; }

  /* 2-col → 1-col */
  .grid-2, .grid-2-r, .grid-2-l { grid-template-columns: 1fr; gap: 1.5rem; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .pc     { grid-template-columns: 1fr; }
  .app-cols { grid-template-columns: 1fr; }

  /* Footer */
  .fg { grid-template-columns: 1fr 1fr; gap: 1.5rem; }

  /* Tables — smaller font on tablet */
  .t { font-size: .82rem; }
  .t th, .t td { padding: .65rem .75rem; }

  /* Hero image order — image above text on mobile */
  .hero-img-wrap { order: -1; }
}

/* =========================================================
   MOBILE — 600px
   ========================================================= */
@media (max-width: 600px) {
  .container { padding: 0 .9rem; }
  section    { padding: 2.5rem 0; }

  /* Font sizes */
  body { font-size: 14px; }

  /* Buttons — full width in stacked context */
  .cta-row { flex-direction: column; }
  .cta-row .btn { width: 100%; text-align: center; justify-content: center; }

  /* Stat boxes — 2-per-row minimum */
  .sb2 { min-width: 80px; padding: .7rem .8rem; }
  .sv  { font-size: 1.15rem; }

  /* Feature grid — force 1 col */
  .feat-grid { grid-template-columns: 1fr; }
  .grid-3    { grid-template-columns: 1fr; }
  .gg        { grid-template-columns: 1fr 1fr; }
  .sg        { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); }

  /* Tables — hide less critical columns on very narrow */
  .t th, .t td { padding: .6rem .65rem; font-size: .79rem; }
  /* Hide rank col on mobile casino table */
  .t .rk { font-size: .88rem; }

  /* Footer → 1 col */
  .fg { grid-template-columns: 1fr; }
  .fauth { flex-direction: column; text-align: center; }

  /* Demo wrapper 16:9 stays correct */
  .demo-game-wrap { aspect-ratio: 4/3; }

  /* Geo table — hide notes column */
  .geo-hide { display: none; }

  /* Sub-nav smaller */
  .subnav a { padding: .55rem .75rem; font-size: .68rem; }
}

/* =========================================================
   MOBILE — 480px
   ========================================================= */
@media (max-width: 480px) {
  .gg { grid-template-columns: 1fr; }

  /* Pros cons stacked */
  .pc { grid-template-columns: 1fr; }

  /* Hero stats — 2×2 grid */
  .sr { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
  .sb2 { flex: none; width: 100%; min-width: 0; }

  /* Card padding reduce */
  .card { padding: 1.1rem; }

  /* Review grid 1-col */
  .rg { grid-template-columns: 1fr; }
}

/* =========================================================
   TOUCH — tap highlights & scroll
   ========================================================= */
@media (hover: none) {
  .card:hover    { transform: none; box-shadow: none; border-color: var(--border); }
  .fc:hover      { transform: none; }
  .gc:hover      { transform: none; }
  .btn-gold:hover { transform: none; }
  .pcta:hover    { transform: none; }
}
