:root {
  --bg: #14122a;
  --bg-alt: #1a1830;
  --bg-card: #221f3f;
  --bg-card-hover: #2a2650;
  --bg-nav: #100e22;
  --border: rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #eae7fa;
  --text-muted: #9490b8;
  --text-dim: #6c688f;
  --gold: #f5b800;
  --gold-hover: #ffc927;
  --purple: #7c5cff;
  --purple-hover: #9276ff;
  --pink: #ff5c8a;
  --green: #37d67a;
  --red: #ff5c5c;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  --shadow-gold: 0 8px 24px rgba(245, 184, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(60% 40% at 20% 0%, rgba(124, 92, 255, 0.18) 0%, transparent 70%),
    radial-gradient(50% 40% at 90% 30%, rgba(245, 184, 0, 0.08) 0%, transparent 70%),
    radial-gradient(70% 60% at 50% 100%, rgba(124, 92, 255, 0.14) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

h1, h2, h3, h4 { font-family: "Poppins", "Inter", sans-serif; font-weight: 700; line-height: 1.15; margin: 0 0 0.6em; }
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; color: var(--text-muted); }
p.lead { color: var(--text); font-size: 1.1rem; }

.skip-link { position: absolute; left: -9999px; top: 0; }
.skip-link:focus { left: 1rem; top: 1rem; z-index: 100; background: var(--gold); color: #111; padding: 0.5rem 1rem; border-radius: 8px; }

.layout {
  position: relative;
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
  z-index: 1;
}

.sidebar {
  background: var(--bg-nav);
  border-right: 1px solid var(--border);
  padding: 1.4rem 1rem;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  z-index: 5;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.4rem 0.6rem 1.4rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
}

.brand-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.45));
  flex-shrink: 0;
}

.brand-name {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.brand-name small {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.nav-section {
  font-size: 0.7rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 1rem 0.75rem 0.4rem;
}

.nav a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  transition: background 0.15s, color 0.15s;
}

.nav a:hover { background: rgba(255, 255, 255, 0.04); color: var(--text); }
.nav a.active { background: linear-gradient(135deg, rgba(124, 92, 255, 0.2), rgba(124, 92, 255, 0.08)); color: var(--text); }
.nav a.active::before { content: ""; width: 3px; height: 18px; background: var(--gold); border-radius: 3px; margin-left: -0.75rem; margin-right: 0.4rem; }

.nav-icon {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  color: var(--text-dim);
}
.nav a.active .nav-icon,
.nav a:hover .nav-icon { color: var(--gold); }

.main {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.5rem;
  background: rgba(20, 18, 42, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.topbar-title { font-weight: 600; font-size: 0.95rem; color: var(--text-muted); }
.topbar-title strong { color: var(--text); font-weight: 700; }
.topbar-spacer { flex: 1; }

.search {
  position: relative;
  flex: 0 1 320px;
}

.search input {
  width: 100%;
  padding: 0.55rem 0.9rem 0.55rem 2.3rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 0.9rem;
  font-family: inherit;
}
.search input:focus { outline: none; border-color: var(--purple); }
.search svg { position: absolute; left: 0.75rem; top: 50%; transform: translateY(-50%); color: var(--text-muted); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.2rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  transition: transform 0.12s, box-shadow 0.15s, background 0.15s;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #ff8a2b);
  color: #1a1830;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-1px); background: linear-gradient(135deg, var(--gold-hover), #ffa14e); }

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); }

.btn-lg { padding: 0.9rem 1.6rem; font-size: 1rem; }
.btn-sm { padding: 0.45rem 0.85rem; font-size: 0.82rem; }

.container {
  padding: 1.5rem 1.5rem 3rem;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}

.hero {
  position: relative;
  background: linear-gradient(135deg, #2e1b62 0%, #4b1e5e 50%, #6d1c47 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  overflow: hidden;
  margin-bottom: 2rem;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(30% 60% at 90% 50%, rgba(245, 184, 0, 0.28) 0%, transparent 70%),
    radial-gradient(20% 40% at 10% 100%, rgba(255, 92, 138, 0.35) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 1; max-width: 620px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}

.hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.hero h1 em { color: var(--gold); font-style: normal; }

.hero p.lead { color: rgba(255, 255, 255, 0.85); font-size: 1.1rem; margin-bottom: 1.8rem; }

.hero-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }

.hero-badges {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.6rem;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
}

.stat-label { color: var(--text-muted); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; }
.stat-value { color: var(--text); font-family: "Poppins", sans-serif; font-size: 1.6rem; font-weight: 700; margin-top: 0.25rem; }
.stat-value.gold { color: var(--gold); }

.section {
  margin-bottom: 2.5rem;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}

.section-header h2 { margin: 0; }
.section-header p { margin: 0.3rem 0 0; color: var(--text-muted); }

.grid {
  display: grid;
  gap: 1rem;
}

.grid-3 { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.grid-6 { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  transition: transform 0.15s, border-color 0.15s, background 0.15s;
}

.card:hover { transform: translateY(-2px); border-color: var(--border-strong); background: var(--bg-card-hover); }

.casino-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
}

.casino-card .rank {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--gold);
  min-width: 2ch;
}

.casino-card .logo {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2e1b62, #6d1c47);
  display: grid;
  place-items: center;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  overflow: hidden;
  flex-shrink: 0;
}
.casino-card .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
  box-sizing: border-box;
  display: block;
}
.casino-card .logo.logo-flush img { padding: 0; }

.casino-card .info h3 { margin: 0 0 0.3rem; font-size: 1.1rem; }
.casino-card .rating { display: inline-flex; align-items: center; gap: 0.3rem; color: var(--gold); font-weight: 700; font-size: 0.95rem; }
.casino-card .rating small { color: var(--text-muted); font-weight: 500; }
.casino-card .features { color: var(--text-muted); font-size: 0.85rem; margin-top: 0.25rem; }
.casino-card .cta { display: flex; flex-direction: column; align-items: stretch; gap: 0.4rem; }

.slot-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, #2e1b62, #6d1c47);
  border: 1px solid var(--border);
  transition: transform 0.15s, border-color 0.15s;
  cursor: pointer;
}

.slot-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 40% at 50% 30%, rgba(245, 184, 0, 0.3) 0%, transparent 70%),
    radial-gradient(60% 60% at 50% 100%, rgba(0, 0, 0, 0.5) 0%, transparent 60%);
}

.slot-card .title {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.9rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  z-index: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.slot-card .tag {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  background: var(--gold);
  color: #1a1830;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 1;
}

.slot-card .icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 3.5rem;
  color: rgba(255, 255, 255, 0.92);
  z-index: 0;
}

.slot-card .icon svg {
  width: 5.5rem;
  height: 5.5rem;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
}

.slot-card .icon img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slot-card:has(.icon img)::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.75) 100%);
}

.slot-card:hover { transform: translateY(-2px); border-color: var(--gold); }

.bonus-card {
  position: relative;
  padding: 1.6rem;
  background: linear-gradient(135deg, #2e1b62, #4b1e5e);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  overflow: hidden;
}
.bonus-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 100% 0%, rgba(245, 184, 0, 0.22), transparent 60%);
}
.bonus-card > * { position: relative; z-index: 1; }
.bonus-card .amount { font-family: "Poppins", sans-serif; font-weight: 800; font-size: 2.4rem; color: var(--gold); line-height: 1; margin-bottom: 0.4rem; }
.bonus-card .label { text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255, 255, 255, 0.7); font-size: 0.75rem; margin-bottom: 0.8rem; }
.bonus-card h3 { color: #fff; }
.bonus-card ul { list-style: none; padding: 0; margin: 0 0 1.2rem; }
.bonus-card li { color: rgba(255, 255, 255, 0.85); padding: 0.3rem 0 0.3rem 1.4rem; position: relative; font-size: 0.92rem; }
.bonus-card li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

.provider-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  text-align: center;
  transition: transform 0.15s, border-color 0.15s;
}
.provider-card:hover { transform: translateY(-2px); border-color: var(--gold); }
.provider-card .provider-logo {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  margin: 0 auto 0.8rem;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
}
.provider-card h3 { font-size: 1rem; margin: 0 0 0.2rem; }
.provider-card p { font-size: 0.85rem; margin: 0; }

.article-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  transition: transform 0.15s, border-color 0.15s;
}
.article-card:hover { transform: translateY(-2px); border-color: var(--border-strong); }
.article-card .meta { font-size: 0.78rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.1em; }
.article-card h3 { margin: 0; font-size: 1.1rem; }
.article-card p { margin: 0; font-size: 0.92rem; }
.article-card .more { color: var(--gold); font-size: 0.9rem; font-weight: 600; margin-top: auto; }

.review-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  margin-bottom: 1.2rem;
}
.review-block h2 { margin-top: 0; }
.review-block dl { display: grid; grid-template-columns: 200px 1fr; gap: 0.6rem 1.6rem; margin: 0; }
.review-block dt { color: var(--text-muted); font-size: 0.9rem; }
.review-block dd { margin: 0; color: var(--text); font-weight: 500; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.3rem;
  margin-bottom: 0.6rem;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  padding: 0.4rem 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--gold); font-size: 1.5rem; font-weight: 400; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin: 0.6rem 0 0; }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  counter-reset: step;
  list-style: none;
  padding: 0;
}
.steps li {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  position: relative;
  counter-increment: step;
}
.steps li::before {
  content: "0" counter(step);
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.4;
  display: block;
  margin-bottom: 0.5rem;
}
.steps h3 { font-size: 1.05rem; margin: 0 0 0.4rem; }
.steps p { margin: 0; font-size: 0.92rem; }

.cta-banner {
  position: relative;
  background: linear-gradient(135deg, #2e1b62, #6d1c47);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 2rem 2.4rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}
.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(40% 100% at 100% 50%, rgba(245, 184, 0, 0.25), transparent 60%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { margin: 0 0 0.3rem; color: #fff; }
.cta-banner p { margin: 0; color: rgba(255, 255, 255, 0.85); }

.footer {
  border-top: 1px solid var(--border);
  padding: 2rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 1.6rem;
}
.footer h4 { color: var(--text); font-size: 0.95rem; margin: 0 0 0.8rem; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.4rem; }
.footer a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1240px;
  margin: 1.6rem auto 0;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-dim);
}

.disclaimer {
  background: rgba(255, 92, 92, 0.06);
  border: 1px solid rgba(255, 92, 92, 0.2);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin: 1.4rem 0;
}
.disclaimer strong { color: var(--red); }

.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text);
  padding: 0.5rem 0.7rem;
  border-radius: 8px;
  cursor: pointer;
}

@media (max-width: 960px) {
  .layout { grid-template-columns: 1fr; }
  .sidebar {
    position: fixed;
    left: -280px;
    top: 0;
    width: 260px;
    transition: left 0.2s;
    z-index: 20;
  }
  .sidebar.open { left: 0; }
  .mobile-toggle { display: inline-flex; }
  .review-block dl { grid-template-columns: 1fr; gap: 0.2rem; }
  .review-block dt { margin-top: 0.4rem; }
  .casino-card { grid-template-columns: 1fr; text-align: center; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .container { padding: 1rem 1rem 2.5rem; }
  .hero { padding: 1.8rem; }
  .cta-banner { padding: 1.6rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .topbar { padding: 0.7rem 1rem; }
  .search { display: none; }
}
