:root {
  --bg: #08100d;
  --panel: #101c17;
  --panel-soft: #14241e;
  --text: #f7f3e8;
  --muted: #aeb8ad;
  --line: rgba(247, 243, 232, 0.14);
  --gold: #f0b84f;
  --green: #54d889;
  --cyan: #5fd5d0;
  --red: #e05f4f;
  --shadow: 0 28px 76px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 8%, rgba(95, 213, 208, 0.22), transparent 28rem),
    radial-gradient(circle at 82% 12%, rgba(240, 184, 79, 0.18), transparent 26rem),
    linear-gradient(180deg, #08100d 0%, #0b1712 58%, #070d0b 100%);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 14px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 16, 13, 0.84);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  padding: 10px;
  backdrop-filter: blur(18px);
}

.brand,
.top-nav,
.hero-actions,
.facts,
.panel-topline {
  display: flex;
  align-items: center;
}

.brand {
  gap: 11px;
  font-weight: 950;
}

.brand-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 7px;
  background: var(--gold);
  color: #10140d;
  font-size: 24px;
  font-weight: 950;
}

.top-nav {
  gap: 4px;
}

.top-nav a,
.secondary-btn {
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 12px 14px;
  color: var(--muted);
  font-weight: 800;
}

.top-nav a:hover,
.secondary-btn:hover {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.header-cta,
.primary-btn,
.casino-card a,
.footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 7px;
  background: var(--gold);
  color: #10140d;
  padding: 12px 16px;
  font-weight: 950;
  box-shadow: 0 14px 28px rgba(240, 184, 79, 0.18);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: 28px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - 80px);
  margin: 0 auto;
  padding: 64px 0 42px;
}

.hero-copy {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(46px, 9vw, 98px);
  line-height: 0.96;
  font-weight: 950;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.03;
  font-weight: 940;
}

h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.lead,
.hero-panel p,
.section-head p,
.intro p,
.casino-main p,
.split p,
.check-grid p,
.payment-grid p,
.faq p,
.footer p {
  color: var(--muted);
  line-height: 1.65;
}

.lead {
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-panel,
.quick-strip div,
.casino-card,
.check-grid div,
.payment-grid div,
.guide-card,
details,
.go-shell {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 28, 23, 0.86);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 22px;
}

.panel-topline {
  justify-content: space-between;
  margin-bottom: 18px;
  color: var(--muted);
  font-weight: 900;
}

.panel-topline strong {
  color: var(--gold);
}

.coin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.coin-grid span {
  display: grid;
  place-items: center;
  min-height: 62px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--green);
  font-weight: 950;
}

.full {
  width: 100%;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.quick-strip div {
  padding: 16px;
  box-shadow: none;
}

.quick-strip span,
.quick-strip b {
  display: block;
}

.quick-strip span {
  color: var(--muted);
  font-size: 14px;
}

.quick-strip b {
  margin-top: 6px;
  color: var(--green);
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0 0;
}

.intro,
.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}

.intro {
  border-bottom: 1px solid var(--line);
  padding-bottom: 46px;
}

.section-head {
  max-width: 780px;
  margin-bottom: 24px;
}

.casino-list {
  display: grid;
  gap: 12px;
}

.casino-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) minmax(280px, 0.8fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
}

.casino-card.featured {
  border-color: rgba(240, 184, 79, 0.46);
  background: linear-gradient(135deg, rgba(240, 184, 79, 0.14), rgba(16, 28, 23, 0.86));
}

.rank {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold);
  font-weight: 950;
}

.facts {
  flex-wrap: wrap;
  gap: 8px;
}

.facts span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 10px;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 850;
}

.check-grid,
.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.check-grid div,
.payment-grid div {
  padding: 18px;
  box-shadow: none;
}

.check-grid span {
  display: block;
  margin-bottom: 22px;
  color: var(--red);
  font-size: 28px;
  font-weight: 950;
}

.check-grid b,
.payment-grid b {
  display: block;
  margin-bottom: 8px;
}

.payment-section {
  border-top: 1px solid var(--line);
  margin-top: 76px;
}

.guide-card {
  padding: clamp(24px, 5vw, 44px);
  background:
    linear-gradient(135deg, rgba(95, 213, 208, 0.12), rgba(240, 184, 79, 0.08)),
    var(--panel);
}

.guide-card ol {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.55;
}

.faq {
  padding-bottom: 76px;
}

details {
  margin-bottom: 12px;
  padding: 18px;
  box-shadow: none;
}

summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 950;
}

details p {
  margin: 12px 0 0;
}

.footer {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  background: #050a09;
  padding: 22px max(16px, calc((100% - 1180px) / 2));
}

.footer p {
  max-width: 840px;
  margin: 0;
}

.go-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.go-shell {
  width: min(720px, 100%);
  padding: clamp(24px, 5vw, 48px);
}

.go-shell .brand {
  margin-bottom: 28px;
}

.go-shell h1 {
  font-size: clamp(34px, 6vw, 58px);
}

.go-shell code {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  padding: 2px 6px;
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .top-nav {
    display: none;
  }

  .hero,
  .intro,
  .split {
    grid-template-columns: 1fr;
  }

  .quick-strip,
  .check-grid,
  .payment-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .casino-card {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .facts,
  .casino-card a {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .site-header,
  .hero,
  .section,
  .quick-strip {
    width: calc(100% - 18px);
  }

  .site-header {
    margin-top: 9px;
  }

  .brand {
    font-size: 14px;
  }

  .header-cta {
    min-height: 40px;
    padding: 10px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .quick-strip,
  .check-grid,
  .payment-grid,
  .coin-grid {
    grid-template-columns: 1fr;
  }

  .casino-card {
    grid-template-columns: 1fr;
  }

  .footer {
    display: block;
  }

  .footer a {
    margin-top: 16px;
  }
}
