:root {
  color-scheme: dark;
  --bg: #121417;
  --panel: #1c2026;
  --panel-soft: #252a32;
  --text: #f3f5f7;
  --muted: #aab2bd;
  --line: rgba(255, 255, 255, 0.1);
  --gold: #f0c76b;
  --green: #5ad69a;
  --red: #ed6a5e;
  --blue: #72a7ff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 64px);
  background: rgba(18, 20, 23, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  background: var(--gold);
  color: #111;
  font-weight: 900;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 15px;
}

.main-nav a:hover,
.footer-links a:hover {
  color: var(--text);
}

.header-cta,
.button,
.block-cta,
.slot-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 700;
}

.header-cta,
.button.primary,
.block-cta,
.slot-card a {
  background: var(--gold);
  color: #151515;
}

.button.secondary {
  border: 1px solid var(--line);
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  min-height: 620px;
  padding: 72px clamp(18px, 5vw, 64px) 48px;
  background: radial-gradient(circle at 15% 20%, rgba(240, 199, 107, 0.2), transparent 30%), linear-gradient(135deg, #121417 0%, #1b2320 54%, #171a20 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(40px, 6vw, 72px);
}

h2 {
  font-size: clamp(26px, 3vw, 40px);
}

h3 {
  font-size: 19px;
}

.hero-text {
  max-width: 600px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
}

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

.button {
  min-width: 160px;
  padding: 0 22px;
}

.hero-panel,
.bonus-card,
.notice,
.seo-content {
  border: 1px solid var(--line);
  background: rgba(28, 32, 38, 0.88);
}

.hero-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.ticker,
.stake-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

.ticker strong,
.stake-line strong {
  color: var(--text);
}

.spin-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.spin-board span {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 8px;
  background: var(--panel-soft);
  color: var(--gold);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
}

.range-label {
  color: var(--muted);
  font-size: 14px;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--gold);
}

.section,
.notice,
.seo-content {
  margin: 0 auto;
  padding: clamp(42px, 6vw, 72px) clamp(18px, 5vw, 64px);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.bonus-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.bonus-tab {
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  cursor: pointer;
}

.bonus-tab.active {
  background: var(--gold);
  color: #151515;
  border-color: transparent;
  font-weight: 800;
}

.bonus-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: 24px;
  align-items: center;
  padding: 24px;
  border-radius: 8px;
}

.bonus-main {
  display: grid;
  gap: 10px;
}

.bonus-main span {
  width: fit-content;
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(240, 199, 107, 0.14);
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.bonus-main strong {
  color: var(--text);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

.bonus-card p {
  margin: 0;
  color: var(--muted);
}

.bonus-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.bonus-facts span {
  min-height: 74px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-soft);
  color: #dfe4ea;
  font-weight: 700;
}

.bonus-note {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.slot-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.slot-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.slot-card h3 {
  min-height: 62px;
  padding: 14px;
  font-size: 17px;
}

.slot-card a {
  position: absolute;
  inset: auto 16px 84px 16px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.slot-card::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0;
  background: rgba(0, 0, 0, 0.42);
  transition: opacity 0.2s ease;
}

.slot-card:hover a,
.slot-card:focus-within a,
.slot-card:hover::before,
.slot-card:focus-within::before {
  opacity: 1;
  transform: translateY(0);
}

.block-cta {
  width: fit-content;
  margin-top: 24px;
  padding: 0 22px;
}

.notice {
  border-left: 0;
  border-right: 0;
}

.notice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 20px;
}

.notice-grid p {
  margin: 0;
  color: var(--muted);
}

.seo-content {
  max-width: 1120px;
  margin-top: 56px;
  margin-bottom: 56px;
  border-radius: 8px;
}

.seo-content > :first-child {
  margin-top: 0;
}

.seo-content p,
.seo-content li,
.seo-content td,
.seo-content th {
  color: #d2d7de;
}

.seo-content h2,
.seo-content h3 {
  margin-top: 30px;
  margin-bottom: 12px;
}

.seo-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  overflow: hidden;
  border-radius: 8px;
}

.seo-content th,
.seo-content td {
  padding: 12px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.seo-content th {
  background: var(--panel-soft);
  color: var(--text);
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 16px;
}

@media (max-width: 920px) {
  .hero,
  .bonus-card,
  .notice-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .main-nav {
    display: none;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 12px;
  }

  .brand span:last-child {
    display: none;
  }

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

  .slots-grid {
    grid-template-columns: 1fr;
  }

  .bonus-facts {
    grid-template-columns: 1fr;
  }

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

  .section-head {
    display: block;
  }

  .seo-content {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }
}
