:root {
  --bg: #080b14;
  --bg-card: #111827;
  --bg-card-hover: #1a2436;
  --border: #243044;
  --text: #f8f8f8;
  --text-muted: rgba(255,255,255,.5);
  --accent: #0084ff;
  --accent-hover: #0066cc;
  --gold: #00d9ff;
  --gold-soft: #7ef0ff;
  --radius: .25rem;
  --max-w: 1200px;
  --shadow-glow: 0 8px 24px rgba(0,132,255,.25);
  --shadow-card: 0 4px 20px rgba(0,0,0,.35);
  --font: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

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

html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(ellipse 60rem 30rem at 50% 0, rgba(0,132,255,.14), transparent 60%),
    radial-gradient(ellipse 40rem 24rem at 90% 8rem, rgba(0,217,255,.08), transparent 60%),
    var(--bg);
  background-repeat: no-repeat;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent-hover); }
a:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 2px; }
ul, ol { list-style: none; }

/* ── Layout ── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 1rem; }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,13,18,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(0,217,255,.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3.5rem;
}
.logo { display: flex; align-items: center; }
.logo img { height: 2rem; width: auto; filter: drop-shadow(0 0 10px rgba(0,217,255,.35)); }
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
}
.nav-toggle svg { width: 1.5rem; height: 1.5rem; }
.nav-toggle:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.main-nav { display: none; }
.main-nav.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 3.5rem;
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 1rem;
  gap: .25rem;
}
.main-nav a {
  display: block;
  padding: .5rem .75rem;
  color: var(--text);
  font-size: .9375rem;
  border-radius: var(--radius);
  transition: background .2s, color .2s;
}
.main-nav a:hover, .main-nav a.active { background: var(--bg-card); color: var(--gold); }

@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .main-nav, .main-nav.open {
    display: flex;
    flex-direction: row;
    position: static;
    background: none;
    border: none;
    padding: 0;
    gap: 0;
  }
  .main-nav a { padding: .5rem .625rem; font-size: .875rem; white-space: nowrap; }
}

/* ── Page Layout (sidebar + content) ── */
.page-layout {
  display: grid;
  gap: 2rem;
  padding-top: 2rem;
  padding-bottom: 3rem;
}

@media (min-width: 1024px) {
  .page-layout { grid-template-columns: 15rem 1fr; }
}

/* ── Sidebar ── */
.sidebar { display: none; }

@media (min-width: 1024px) {
  .sidebar {
    display: block;
    position: sticky;
    top: 4.5rem;
    align-self: start;
    background: linear-gradient(180deg, rgba(255,255,255,.02), transparent);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    max-height: calc(100vh - 5rem);
    overflow-y: auto;
    box-shadow: var(--shadow-card);
  }
  .sidebar-group { margin-bottom: 1.25rem; }
  .sidebar-group:last-child { margin-bottom: 0; }
  .sidebar-title {
    font-size: .8125rem;
    font-weight: 700;
    margin-bottom: .625rem;
    color: var(--gold-soft);
    text-transform: uppercase;
    letter-spacing: .06em;
  }
  .sidebar a {
    display: block;
    padding: .3rem .5rem;
    margin: 0 -.5rem;
    border-radius: .4rem;
    color: var(--text-muted);
    font-size: .875rem;
    transition: color .2s, background .2s, padding-left .2s;
  }
  .sidebar a:hover, .sidebar a.active { color: var(--text); background: rgba(0,217,255,.08); padding-left: .75rem; }
}

/* ── Game Info Card ── */
.game-info {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem 1.5rem;
  background: linear-gradient(135deg, #211a3d, #1a1a22);
  border: 1px solid rgba(0,217,255,.2);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255,255,255,.04);
  overflow: hidden;
}
.game-info::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto auto;
  width: 16rem;
  height: 16rem;
  background: radial-gradient(circle, rgba(0,217,255,.16), transparent 70%);
  pointer-events: none;
}
.game-info-logo {
  width: 11rem;
  height: auto;
  border-radius: .5rem;
  grid-column: 2;
  grid-row: 1;
  box-shadow: 0 6px 20px rgba(0,0,0,.4);
}
.game-info > div:not(.game-info-cta) {
  grid-column: 1;
  grid-row: 1;
}
.game-info-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-soft);
  margin-bottom: .75rem;
}
.game-info-stats {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
}
.game-info-stat {
  display: flex;
  flex-direction: column;
  gap: .125rem;
}
.game-info-stat-label {
  font-size: .75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.game-info-stat-value {
  font-size: .9375rem;
  font-weight: 600;
  color: #4ecca3;
}
.game-info-cta {
  grid-column: 1 / -1;
  justify-self: center;
}
.game-info-cta .btn {
  background: linear-gradient(90deg, #1f7a5c, #2d8c6e);
  box-shadow: 0 8px 22px rgba(45,140,110,.3);
  padding: .625rem 1.5rem;
  font-size: .9375rem;
  white-space: nowrap;
}
.game-info-cta .btn:hover { filter: brightness(1.08); }

@media (max-width: 540px) {
  .game-info {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
    padding: 1rem;
  }
  .game-info-logo { margin: 0 auto; width: 8rem; grid-column: 1; grid-row: auto; }
  .game-info > div:not(.game-info-cta) { grid-column: 1; grid-row: auto; }
  .game-info-stats { justify-content: center; }
  .game-info-cta { grid-column: 1; }
}

/* ── Breadcrumbs ── */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .375rem;
  padding-top: 1.25rem;
  font-size: .8125rem;
  color: var(--text-muted);
}
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--gold-soft); }
.breadcrumbs .sep { color: var(--border); }
.breadcrumbs .current { color: var(--text); }

/* ── Hero ── */
.hero {
  position: relative;
  padding: 1rem 0 2rem;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .25rem .75rem;
  font-size: .8125rem;
  color: var(--text-muted);
  margin: -.25rem 0 1rem;
}
.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.15fr .85fr; align-items: stretch; }
}
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  padding: .375rem .875rem;
  background: rgba(0,217,255,.08);
  border: 1px solid rgba(0,217,255,.18);
  border-radius: 999px;
}
.hero-stars { color: var(--gold); letter-spacing: 2px; }
.hero h1 {
  font-size: clamp(1.625rem, 3.6vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: .75rem;
  background: linear-gradient(135deg, #fff 40%, var(--gold-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  font-size: 1rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 1.25rem;
}

/* ── Attributes table ── */
.attr-table {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.attr-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .625rem 1rem;
  font-size: .875rem;
}
.attr-row:nth-child(odd) { background: rgba(255,255,255,.025); }
.attr-row:nth-child(even) { background: rgba(0,217,255,.04); }
.attr-label { color: var(--text-muted); }
.attr-value { color: var(--gold-soft); font-weight: 600; }

.hero-cta-wrap { text-align: center; margin-top: 1.5rem; }
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: .625rem;
  margin: 0 auto .875rem;
}
.hero-cta .btn:not(.btn-outline) {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
  width: 100%;
  max-width: 26rem;
}
.hero-cta .btn-outline {
  padding: .625rem 1.5rem;
  font-size: .875rem;
}
.hero-disclaimer { font-size: .75rem; color: var(--text-muted); margin: 0; text-align: center; }

.btn.btn-outline {
  background: transparent;
  box-shadow: none;
  border: 1px solid rgba(0,217,255,.35);
  color: var(--gold-soft);
}
.btn.btn-outline::after { display: none; }
.btn.btn-outline:hover { background: rgba(0,217,255,.08); box-shadow: none; color: var(--gold-soft); }

/* ── Hero card (slot preview) ── */
.hero-card {
  background: linear-gradient(160deg, #1c1730, #14141c);
  border: 1px solid rgba(0,217,255,.2);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.hero-card-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}
@media (min-width: 900px) {
  .hero-card-img { flex: 1 1 auto; aspect-ratio: auto; min-height: 0; }
}
.hero-card-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1rem;
  border-top: 1px solid rgba(0,217,255,.15);
}
.hero-card-badge-name { font-weight: 700; font-size: .9375rem; }
.hero-card-badge-value {
  font-size: .8125rem;
  font-weight: 700;
  color: #1a1a22;
  background: var(--gold);
  padding: .25rem .625rem;
  border-radius: 999px;
}

/* ── Content ── */
.content { min-width: 0; }
.content h2 {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 2.5rem 0 1rem;
}
.content h2:first-child { margin-top: 0; }
.content h3 {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 2rem 0 .75rem;
}
.content h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 1.5rem 0 .5rem;
}
.content p {
  margin-bottom: 1rem;
  color: rgba(255,255,255,.85);
}
.content ul, .content ol {
  margin: 0 0 1rem 1.5rem;
  list-style: disc;
}
.content ol { list-style: decimal; }
.content li { margin-bottom: .375rem; color: rgba(255,255,255,.85); }
.content img {
  border-radius: var(--radius);
  margin: 1rem 0;
}

/* ── Buttons ── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .75rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #005fb7, var(--accent) 55%, var(--gold));
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow-glow);
  transition: transform .15s, box-shadow .15s, filter .15s;
  white-space: nowrap;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.35) 48%, transparent 62%);
  transform: translateX(-120%);
  transition: transform .5s;
}
.btn:hover {
  color: #fff;
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 12px 30px rgba(0,132,255,.35);
}
.btn:hover::after { transform: translateX(120%); }
.btn:active { transform: translateY(0) scale(.98); }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.btn-sm { padding: .5rem 1rem; font-size: .875rem; box-shadow: none; }

/* ── Tables ── */
.table-wrap {
  overflow-x: auto;
  margin: 1rem 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
}
.table-wrap th, .table-wrap td {
  padding: .75rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.table-wrap th {
  font-weight: 700;
  color: var(--gold-soft);
  background: linear-gradient(180deg, rgba(0,217,255,.08), rgba(0,217,255,.02));
  white-space: nowrap;
}
.table-wrap tr:last-child td { border-bottom: none; }
.table-wrap tr:hover td { background: rgba(255,255,255,.02); }
.table-wrap td { color: rgba(255,255,255,.85); }

/* ── Casino Cards ── */
.casino-cards { display: grid; gap: 1rem; margin: 1.5rem 0; }
.casino-card {
  display: grid;
  grid-template-columns: 5rem 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.casino-card:hover {
  border-color: rgba(0,217,255,.4);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,.4);
}
.casino-card-img { width: 5rem; height: 3.5rem; object-fit: cover; border-radius: .5rem; }
.casino-card-info h3 { font-size: 1rem; margin: 0 0 .25rem; }
.casino-card-rating { font-size: .875rem; color: var(--gold); }
.casino-card-features { font-size: .8125rem; color: var(--text-muted); margin-top: .25rem; }

@media (max-width: 640px) {
  .casino-card { grid-template-columns: 1fr; text-align: center; }
  .casino-card-img { margin: 0 auto; }
}

/* ── Payment Icons ── */
.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin: 1rem 0;
  align-items: center;
}
.payment-icons img { width: 3rem; height: 2rem; object-fit: contain; border-radius: .25rem; background: #fff; padding: .25rem; }

/* ── Game Grid ── */
.game-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(9rem, 1fr)); gap: .75rem; margin: 1.5rem 0; }
.game-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.game-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,217,255,.45);
  box-shadow: 0 12px 28px rgba(0,0,0,.45);
}
.game-card img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.game-card span {
  display: block;
  padding: .375rem .5rem;
  font-size: .8125rem;
  text-align: center;
  background: var(--bg-card);
  color: var(--text);
}

/* ── Testimonials ── */
.testimonials {
  display: grid;
  gap: .75rem;
  margin: 1.25rem 0 1.5rem;
}
@media (min-width: 640px) {
  .testimonials { grid-template-columns: repeat(2, 1fr); }
}
.testimonial {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.testimonial-avatar { flex-shrink: 0; border-radius: 12px; filter: hue-rotate(150deg) saturate(1.4) brightness(1.05); }
.testimonial-body strong { display: block; margin-bottom: .25rem; color: var(--gold-soft); font-size: .9375rem; }
.testimonial-body p { margin: 0; font-size: .875rem; color: rgba(255,255,255,.8); }

/* ── FAQ / Info Sections ── */
.info-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
  box-shadow: var(--shadow-card);
}

.faq details {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .875rem 1.125rem;
  margin-bottom: .75rem;
  transition: border-color .2s;
}
.faq details:hover { border-color: rgba(0,217,255,.3); }
.faq details[open] { border-color: rgba(0,217,255,.4); }
.faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  padding-right: 1.5rem;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--gold);
  font-size: 1.25rem;
  line-height: 1;
  transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: .75rem; color: rgba(255,255,255,.8); }

/* ── Footer ── */
.site-footer {
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(0,217,255,.03), transparent 8rem);
  padding: 2rem 0;
  margin-top: 2rem;
  color: var(--text-muted);
  font-size: .8125rem;
}
.footer-inner {
  display: grid;
  gap: 1.5rem;
}
.footer-links { display: flex; flex-wrap: wrap; gap: .5rem 1rem; }
.footer-links a { color: var(--text-muted); }
.footer-links a:hover { color: var(--text); }
.footer-bottom { text-align: center; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); }

@media (min-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

/* ── Responsive Mobile CTA ── */
.mobile-cta {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  padding: .75rem 1rem;
  background: rgba(18,18,18,.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
  text-align: center;
}
.mobile-cta .btn { width: 100%; max-width: 24rem; }

@media (min-width: 768px) {
  .mobile-cta { display: none; }
}

/* ── Cookie banner ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  flex-wrap: wrap;
  padding: .75rem 1rem;
  background: rgba(18,18,18,.97);
  border-top: 1px solid var(--border);
  font-size: .85rem;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 0; }
.cookie-banner a { color: var(--accent); }

/* ── Utility ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mb-2 { margin-bottom: 1rem; }
