:root {
  --bg: #071513;
  --surface: #10231f;
  --surface-2: #142b26;
  --line: #315148;
  --text: #fff7df;
  --muted: #c7bfa6;
  --gold: #f4c94f;
  --gold-dark: #c4841d;
  --red: #d7193f;
  --green: #0d6f55;
  --cyan: #46dcc6;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  font-family: Verdana, Geneva, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  padding: 0.75rem 1rem;
  color: #150900;
  background: var(--gold);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 4vw, 3rem);
  background: #091916;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: #120800;
  background: var(--gold);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.15rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
}

.top-nav {
  display: flex;
  gap: clamp(0.8rem, 2vw, 1.5rem);
  color: var(--muted);
  font-size: 0.92rem;
}

.top-nav a {
  text-decoration: none;
}

.cta,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  border-radius: 0.45rem;
  padding: 0.78rem 1rem;
  text-align: center;
  text-decoration: none;
  font-weight: 900;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.cta {
  color: #130700;
  background: var(--gold);
  border: 2px solid #ffe27a;
}

.cta:hover,
.cta:focus-visible,
.cta.is-hot {
  background: #ffe27a;
  border-color: #fff0a8;
  transform: translateY(-1px);
}

.cta-small {
  min-height: 2.55rem;
  white-space: nowrap;
}

.ghost-button {
  color: var(--gold);
  background: transparent;
  border: 2px solid var(--gold-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 24rem);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: stretch;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 5vw, 5rem);
  padding-right: clamp(1rem, 7vw, 6.5rem);
  background: linear-gradient(135deg, #0a1b18 0%, #10231f 55%, #260b12 100%);
}

.hero-orbit {
  display: none;
}

.hero-copy,
.bonus-machine,
.section-intro,
.split-section,
.responsible,
.faq {
  position: relative;
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 5vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0.9rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.15rem;
  line-height: 1.25;
}

.lead {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.6rem 0 1.2rem;
}

.cta-mega {
  flex-direction: column;
  min-width: min(100%, 18rem);
  min-height: 4.5rem;
  animation: pulse 2.2s ease-in-out infinite;
}

.cta-mega span {
  font-size: 0.78rem;
  text-transform: uppercase;
}

.cta-mega strong {
  font-size: 1.08rem;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.trust-strip span {
  padding: 0.5rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #dffbf6;
  background: #0c211d;
  font-size: 0.84rem;
}

.bonus-machine {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1rem, 3vw, 1.5rem);
  border: 2px solid var(--gold-dark);
  border-radius: 0.55rem;
  background: #5d1021;
}

.machine-top {
  align-self: flex-start;
  margin-bottom: 0.85rem;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  color: #170900;
  background: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.bonus-number {
  margin: 0.4rem 0 0.8rem;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.12;
}

.bonus-note {
  color: #f3d7c7;
}

.cta-wide {
  width: 100%;
  margin-top: 0.4rem;
}

.chip,
.card {
  display: none;
}

.ticker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  padding: 0.85rem clamp(1rem, 5vw, 5rem);
  color: #170900;
  background: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-grid,
.game-floor,
.split-section,
.responsible,
.faq {
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem, 5vw, 5rem);
  padding-right: clamp(1rem, 7vw, 6.5rem);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(15rem, 0.45fr) 1fr;
  gap: clamp(1rem, 3vw, 2rem);
  background: #091916;
}

.section-intro p,
.info-card p,
.game-tile p,
.split-section p,
.responsible p,
.faq p {
  color: var(--muted);
}

.info-grid,
.game-grid {
  display: grid;
  gap: 0.9rem;
}

.info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.info-card,
.game-tile,
.payment-panel,
.faq details {
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  background: var(--surface);
}

.info-card,
.game-tile {
  min-height: 11rem;
  padding: 1rem;
}

.card-icon {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 900;
}

.jackpot {
  background: #5d1021;
}

.game-floor {
  background: #0d1e1b;
}

.light {
  margin-bottom: 1.25rem;
}

.game-tile span {
  display: grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  color: #140800;
  background: var(--gold);
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(18rem, 0.7fr);
  gap: 1.5rem;
  align-items: start;
  background: #091916;
}

.payment-panel {
  padding: 0.2rem 1rem;
}

.payment-panel div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.payment-panel div:last-child {
  border-bottom: 0;
}

.payment-panel span {
  color: var(--muted);
  text-align: right;
}

.responsible {
  color: #140800;
  background: var(--gold);
}

.responsible p {
  max-width: 820px;
  color: #3a2500;
}

.ghost-button.dark {
  color: #140800;
  border-color: #8f6416;
  background: transparent;
}

.faq {
  padding-bottom: 7rem;
  background: #0d1e1b;
}

.faq details {
  max-width: 880px;
  margin-top: 0.8rem;
  padding: 1rem 1.1rem;
}

.faq summary {
  cursor: pointer;
  color: var(--gold);
  font-weight: 900;
}

.sticky-rail {
  position: fixed;
  right: 0.65rem;
  top: 50%;
  z-index: 12;
  display: grid;
  gap: 0.6rem;
  transform: translateY(-50%);
}

.rail-button,
.rail-secondary {
  min-height: 6.6rem;
  writing-mode: vertical-rl;
}

.rail-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.8rem;
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  color: var(--cyan);
  background: #091916;
  text-decoration: none;
  font-weight: 900;
}

.bottom-bar {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 14;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: min(92vw, 680px);
  padding: 0.65rem;
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  background: #091916;
}

.bottom-bar span {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-width: 0;
}

.bottom-bar em {
  color: var(--gold);
  font-style: normal;
  font-weight: 900;
}

@keyframes pulse {
  0%,
  100% {
    border-color: #ffe27a;
  }
  50% {
    border-color: #fff6bf;
  }
}

@media (max-width: 980px) {
  .hero,
  .section-grid,
  .split-section {
    grid-template-columns: 1fr;
  }

  .info-grid,
  .game-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .top-nav,
  .sticky-rail {
    display: none;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .site-header {
    padding-inline: 0.75rem;
  }

  .brand-mark {
    width: 2.45rem;
    height: 2.45rem;
  }

  .brand small {
    display: none;
  }

  .site-header .cta-small {
    min-width: 6.8rem;
    padding-inline: 0.6rem;
  }

  .hero,
  .section-grid,
  .game-floor,
  .split-section,
  .responsible,
  .faq {
    padding-inline: 0.9rem;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-actions,
  .info-grid,
  .game-grid {
    grid-template-columns: 1fr;
  }

  .info-grid,
  .game-grid {
    display: grid;
  }

  .hero-actions .cta,
  .hero-actions .ghost-button {
    width: 100%;
  }

  .payment-panel div {
    display: block;
  }

  .payment-panel span {
    display: block;
    margin-top: 0.25rem;
    text-align: left;
  }

  .bottom-bar {
    bottom: 0;
    width: 100%;
    border-radius: 0.55rem 0.55rem 0 0;
  }

  .bottom-bar span {
    display: none;
  }

  .bottom-bar .cta {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
