:root {
  --bg-void: #0a0000;
  --bg-deep: #140000;
  --bg-panel: #1c0505;
  --bg-elevated: #260808;
  --bg-card: #1a0606;
  --line: rgba(212, 175, 55, 0.22);
  --line-soft: rgba(255, 255, 255, 0.06);
  --red: #b91c1c;
  --red-bright: #e11d2e;
  --red-glow: rgba(185, 28, 28, 0.35);
  --gold: #d4af37;
  --gold-light: #f0d78c;
  --gold-dark: #a8862a;
  --text: #f7f0ea;
  --text-muted: #b9a09a;
  --radius: 12px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
  --font-display: "Syne", "Avenir Next", "Segoe UI", sans-serif;
  --font-body: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(185, 28, 28, 0.22), transparent 55%),
    radial-gradient(900px 500px at 10% 20%, rgba(212, 175, 55, 0.08), transparent 50%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-void) 40%, var(--bg-deep) 100%);
  background-attachment: fixed;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold-light);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100000;
  padding: 0.75rem 1rem;
  background: var(--gold);
  color: #1a1000;
  font-weight: 700;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(20, 0, 0, 0.88);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.7rem max(1rem, env(safe-area-inset-right)) 0.7rem max(1rem, env(safe-area-inset-left));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.logo-link {
  flex-shrink: 0;
}

.logo-link img {
  height: 34px;
  width: auto;
}

.nav-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.15rem 0.35rem;
}

.nav-main a {
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
  text-decoration: none;
}

.nav-main a:hover {
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.1);
  text-decoration: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg-elevated);
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.menu-toggle-bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 18px;
}

.menu-toggle-bars span {
  display: block;
  height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(180deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
  color: #1a1000;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5);
  text-decoration: none;
  color: #1a1000;
}

.btn-ghost {
  background: transparent;
  color: var(--gold-light);
  border: 1.5px solid rgba(212, 175, 55, 0.55);
}

.btn-ghost:hover {
  background: rgba(212, 175, 55, 0.1);
  text-decoration: none;
  color: #fff8e7;
  transform: translateY(-2px);
}

.header-actions {
  flex-shrink: 0;
}

.hero-block {
  position: relative;
  overflow: hidden;
}

.hero-banner {
  margin: 0;
  max-width: var(--max);
  margin-inline: auto;
  padding: 1rem 1rem 0;
}

.hero-banner img {
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line-soft);
  object-fit: cover;
  max-height: 420px;
}

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.75rem 1rem 2.5rem;
}

.hero-inner {
  max-width: 760px;
  animation: rise 0.8s ease both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(185, 28, 28, 0.2);
  border: 1px solid rgba(225, 29, 46, 0.35);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
  background: linear-gradient(120deg, #fff 10%, var(--gold-light) 55%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  font-size: 1.08rem;
  max-width: 38rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: var(--max);
  margin: 0 auto 0.5rem;
  padding: 0 1rem;
  background: var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  animation: rise 0.9s 0.15s ease both;
}

.stat {
  background: var(--bg-panel);
  padding: 1.25rem 1rem;
  text-align: center;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--gold-light);
  letter-spacing: -0.02em;
}

.stat span {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem 1rem;
}

.section-alt {
  background: linear-gradient(180deg, rgba(38, 8, 8, 0.55), rgba(20, 0, 0, 0.2));
  border-block: 1px solid var(--line-soft);
  max-width: none;
  padding-inline: 0;
}

.section-alt > .section-wrap,
.section-alt > h2,
.section-alt > p,
.section-alt > .feature-cards,
.section-alt > .section-cta,
.section-alt > h3,
.section-alt > .loyalty-track,
.section-alt > .game-grid,
.section-alt > .rtp-chips,
.section-alt > .split-panel,
.section-alt > .trust-grid,
.section-alt > .faq-reviews {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.section-alt > h2,
.section-alt > h3,
.section-alt > p:not(.section-cta) {
  padding-left: 1rem;
  padding-right: 1rem;
}

.section h2,
.section > h3,
.faq-reviews h2 {
  margin: 0 auto 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-align: center;
  max-width: 40rem;
}

.section > h3 {
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  margin-top: 2rem;
}

.section > p,
.section-intro p {
  color: var(--text-muted);
  max-width: 46rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-intro {
  margin-bottom: 1.5rem;
  text-align: center;
}

.section-intro h2 {
  margin-left: auto;
  margin-right: auto;
}

.section-cta {
  margin-top: 1.75rem;
  text-align: center;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.75rem;
}

.feature-card {
  background: linear-gradient(160deg, var(--bg-elevated), var(--bg-card));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.35rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--line);
}

.feature-card-icon {
  display: inline-flex;
  width: 2.4rem;
  height: 2.4rem;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(185, 28, 28, 0.25);
  color: var(--gold-light);
  font-size: 1.1rem;
  margin-bottom: 0.85rem;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.loyalty-track {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
  justify-content: center;
}

.loyalty-track span {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.loyalty-track .is-active {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold);
  color: var(--gold-light);
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.25rem 0;
  justify-content: center;
}

.category-pills span {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-soft);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-muted);
}

.section-note {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.game-grid--compact {
  grid-template-columns: repeat(4, 1fr);
}

.game-card,
.live-game-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.game-card:hover,
.live-game-card:hover {
  transform: translateY(-5px);
  border-color: var(--line);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(185, 28, 28, 0.15);
}

.game-card-visual,
.live-game-visual {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #000;
}

.game-card-visual img,
.live-game-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.game-card:hover .game-card-visual img,
.live-game-card:hover .live-game-visual img {
  transform: scale(1.06);
}

.game-card-body,
.live-game-body {
  padding: 0.95rem 1rem 1.1rem;
}

.game-card-body h3,
.live-game-body h4 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.game-card-body p,
.live-game-body p {
  margin: 0 0 0.85rem;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.game-card-body .btn {
  width: 100%;
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

.rtp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
  justify-content: center;
}

.rtp-chips span {
  padding: 0.45rem 0.8rem;
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.rtp-chips strong {
  color: var(--gold-light);
  font-weight: 700;
}

.split-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.split-panel h3 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.split-panel > div > p {
  color: var(--text-muted);
}

.live-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin: 1.5rem 0;
}

.panel-note {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.list-check {
  margin: 0.75rem 0;
  padding: 0;
  list-style: none;
}

.list-check li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.4rem;
  color: var(--text-muted);
}

.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--red-bright));
  box-shadow: 0 0 10px var(--red-glow);
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.55rem;
  margin: 1rem 0;
}

.payment-grid span {
  text-align: center;
  padding: 0.7rem 0.4rem;
  border-radius: 10px;
  background: var(--bg-elevated);
  border: 1px solid var(--line-soft);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--gold-light);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.trust-item {
  padding: 1.25rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
}

.trust-item h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.trust-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.cta-banner {
  max-width: var(--max);
  margin: 1rem auto 2rem;
  padding: 2.5rem 1.5rem;
  border-radius: 20px;
  text-align: center;
  background:
    radial-gradient(700px 280px at 50% 0%, rgba(185, 28, 28, 0.35), transparent 60%),
    linear-gradient(145deg, #2a0808, #140000 60%, #1a0505);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.cta-banner h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.cta-banner p {
  margin: 0 auto 1.35rem;
  max-width: 36rem;
  color: var(--text-muted);
}

.faq-reviews {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 0.85rem 1rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-weight: 800;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0.75rem 0 0.15rem;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.reviews-grid {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1rem;
}

.review-card {
  margin: 0;
  padding: 1.1rem;
  border-radius: 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--line-soft);
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.7rem;
}

.review-avatar {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--red), var(--gold-dark));
  font-weight: 800;
  font-size: 0.75rem;
}

.review-meta cite {
  font-style: normal;
  font-weight: 700;
  display: block;
}

.review-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.review-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #0a0000;
  padding: 2rem 1rem 2.5rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}

.footer-copy {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer-copy .btn {
  margin-top: 1rem;
}

@media (max-width: 960px) {
  .stats-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-cards,
  .trust-grid,
  .game-grid,
  .split-panel,
  .faq-reviews,
  .live-game-grid {
    grid-template-columns: 1fr 1fr;
  }

  .live-game-grid {
    grid-template-columns: 1fr 1fr;
  }

  .game-grid--compact {
    grid-template-columns: repeat(3, 1fr);
  }

  .payment-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .nav-main {
    display: none;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.4rem);
    flex-direction: column;
    background: rgba(20, 0, 0, 0.97);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0.75rem;
    box-shadow: var(--shadow);
  }

  .nav-main.is-open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-inner {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .feature-cards,
  .trust-grid,
  .game-grid,
  .game-grid--compact,
  .split-panel,
  .faq-reviews,
  .live-game-grid,
  .payment-grid {
    grid-template-columns: 1fr;
  }

  .stats-band {
    grid-template-columns: 1fr 1fr;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .header-actions .btn {
    padding: 0.55rem 0.9rem;
    font-size: 0.82rem;
  }
}
