:root {
  --color-primary: #070b16;
  --color-accent: #f5c451;
  --color-accent-strong: #ff8a2a;
  --color-bg: #050816;
  --color-bg-alt: #0a1120;
  --color-surface: rgba(15, 23, 42, 0.76);
  --color-surface-strong: rgba(9, 14, 28, 0.94);
  --color-text: #f8fafc;
  --color-muted: #94a3b8;
  --color-border: rgba(255, 255, 255, 0.11);
  --color-success: #10b981;
  --color-caution: #fb923c;
  --color-glow: rgba(245, 196, 81, 0.28);
  --container-max: 1200px;
  --radius: 18px;
  --shadow-soft: 0 20px 50px rgba(0, 0, 0, 0.32);
  --font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-family);
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(245, 196, 81, 0.14), transparent 24%),
    radial-gradient(circle at top right, rgba(168, 85, 247, 0.16), transparent 22%),
    linear-gradient(180deg, #050816 0%, #07101f 40%, #050816 100%);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.25;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 2rem, var(--container-max));
  margin: 0 auto;
}

.narrow {
  max-width: 860px;
}

.section {
  position: relative;
  padding: 4rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(10, 17, 32, 0.92), rgba(8, 13, 25, 0.92));
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(1.55rem, 4.2vw, 2.8rem);
}

h2 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
}

h3 {
  font-size: 1.1rem;
}

p,
ul,
ol,
table,
figure {
  margin: 0;
}

ul,
ol {
  padding-left: 1.2rem;
}

li + li {
  margin-top: 0.45rem;
}

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: 10px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(4, 8, 20, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}

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

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand strong {
  letter-spacing: 0.02em;
}

.brand small,
.updated,
.eyebrow,
.note,
.page-intro,
.footer-meta,
figcaption {
  color: var(--color-muted);
}

.eyebrow {
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  position: fixed;
  inset: 74px 1rem auto 1rem;
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.8rem;
  background: rgba(8, 13, 25, 0.96);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.site-nav a,
.footer-links a {
  padding: 0.6rem 0.75rem;
  border-radius: 10px;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  background: rgba(245, 196, 81, 0.12);
  color: #fff4cf;
  outline: none;
}

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

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
}

.menu-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--color-text);
  border-radius: 999px;
}

.header-actions {
  display: none;
  gap: 0.4rem;
  flex-shrink: 0;
}

.header-actions--triple {
  gap: 0.35rem;
}

.button-sm {
  min-height: 32px;
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
  border-radius: 999px;
}

.header-actions .button-sm {
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.72rem 1.05rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-strong));
  color: var(--color-primary);
  font-weight: 800;
  font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 20px rgba(255, 138, 42, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(255, 138, 42, 0.24);
  outline: none;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--color-border);
  color: var(--color-text);
  box-shadow: none;
}

.button-ghost {
  background: rgba(245, 196, 81, 0.08);
  border-color: rgba(245, 196, 81, 0.3);
  color: #fff4cf;
  box-shadow: none;
}

.hero {
  padding-top: 2.75rem;
}

.hero-grid,
.split-layout,
.grid-2,
.grid-3,
.footer-grid {
  display: grid;
  gap: 1.25rem;
}

.hero-copy {
  display: grid;
  gap: 1.2rem;
  align-content: center;
}

.lead {
  font-size: 1.05rem;
  color: #d6e0ef;
}

.hero-actions,
.payment-icons,
.badge-list,
.provider-list,
.footer-links,
.meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-left: 0;
  list-style: none;
}

.badge-list--facts {
  display: grid;
  gap: 0.7rem;
}

.badge-list--facts li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.badge-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(245, 196, 81, 0.18);
  color: #fff0b3;
  font-size: 0.82rem;
  font-weight: 800;
  flex-shrink: 0;
}

.payment-panel {
  display: grid;
  gap: 0.8rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.payment-panel-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #dce6f5;
}

.payment-icons--brands span {
  min-width: 72px;
  justify-content: center;
  text-align: center;
  background: rgba(8, 13, 25, 0.72);
  border-color: rgba(245, 196, 81, 0.16);
  color: #f8fafc;
}

.slot-showcase-head {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.slot-showcase-grid {
  display: grid;
  gap: 1rem;
}

.slot-tile {
  overflow: hidden;
  padding: 0;
}

.slot-tile img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0;
}

.slot-tile-body {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
}

.slot-meta {
  color: var(--color-accent);
  font-size: 0.92rem;
  font-weight: 700;
}

.badge-list li,
.payment-icons span,
.provider-list li,
.meta-list li {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
}

.badge-list--facts li {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.card,
.notice {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.82), rgba(8, 13, 25, 0.88));
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 1.25rem;
  backdrop-filter: blur(14px);
}

.card:hover {
  border-color: rgba(245, 196, 81, 0.22);
}

.hero-stage {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
  margin-bottom: 1rem;
  border-radius: calc(var(--radius) - 4px);
  background:
    radial-gradient(circle at 30% 20%, rgba(245, 196, 81, 0.18), transparent 22%),
    radial-gradient(circle at 75% 25%, rgba(168, 85, 247, 0.22), transparent 25%),
    linear-gradient(180deg, rgba(10, 17, 32, 0.86), rgba(7, 11, 22, 0.96));
}

.hero-media img,
.media-card img {
  border-radius: calc(var(--radius) - 4px);
}

.slot-machine {
  position: relative;
  width: min(100%, 330px);
  padding: 1rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(24, 36, 64, 0.96), rgba(9, 15, 30, 0.98));
  border: 1px solid rgba(245, 196, 81, 0.2);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45), 0 0 50px var(--color-glow);
}

.slot-top,
.slot-footer {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.slot-top {
  margin-bottom: 1rem;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--color-success);
  box-shadow: 0 0 16px rgba(16, 185, 129, 0.7);
}

.slot-reels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.slot-reels span {
  display: grid;
  place-items: center;
  min-height: 84px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(245, 196, 81, 0.16), rgba(255,255,255,0.05));
  border: 1px solid rgba(245, 196, 81, 0.25);
  font-size: 2rem;
  font-weight: 800;
  color: #fff3c2;
}

.floating-chip,
.hero-icon-card {
  position: absolute;
  border-radius: 999px;
}

.floating-chip {
  width: 74px;
  height: 74px;
  border: 10px solid rgba(245, 196, 81, 0.9);
  box-shadow: 0 0 0 10px rgba(255,255,255,0.03), 0 10px 30px rgba(0,0,0,0.35);
}

.chip-one {
  top: 34px;
  left: 22px;
}

.chip-two {
  bottom: 44px;
  right: 26px;
  border-color: rgba(168, 85, 247, 0.85);
}

.chip-three {
  top: 92px;
  right: 82px;
  width: 54px;
  height: 54px;
  border-width: 8px;
}

.hero-icon-card {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
}

.hero-icon-card svg,
.slot-card-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-dice {
  left: 18px;
  bottom: 26px;
}

.icon-crown {
  right: 18px;
  top: 22px;
}

.check-list {
  margin-top: 1.25rem;
}

.table-wrap {
  overflow-x: auto;
  margin-top: 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: rgba(7, 11, 22, 0.84);
  box-shadow: var(--shadow-soft);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

th,
td {
  padding: 0.95rem 1rem;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  vertical-align: top;
}

tr:last-child th,
tr:last-child td {
  border-bottom: 0;
}

th {
  width: 38%;
  color: #fff4cf;
}

.compact-table table {
  min-width: 100%;
}

.notice {
  margin-top: 1.25rem;
  border-left: 4px solid var(--color-accent);
}

.top-gap {
  margin-top: 1.25rem;
}

.success-card {
  border-top: 4px solid var(--color-success);
}

.caution-card {
  border-top: 4px solid var(--color-caution);
}

.media-grid,
.media-grid-two {
  align-items: stretch;
}

.media-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.media-highlight img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius) - 6px);
}

.slots-grid .slot-card {
  position: relative;
  overflow: hidden;
}

.slots-grid .slot-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -40px auto;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(245, 196, 81, 0.18), transparent 70%);
}

.slot-card-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.accent-card {
  border-color: rgba(245, 196, 81, 0.28);
}

.faq-list {
  display: grid;
  gap: 1rem;
}

details summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

details summary::-webkit-details-marker {
  display: none;
}

details p {
  margin-top: 0.9rem;
}

.final-cta {
  padding-top: 0;
}

.final-cta-card {
  text-align: center;
}

.center-actions {
  justify-content: center;
}

.site-footer {
  padding: 3rem 0;
  border-top: 1px solid var(--color-border);
  background: rgba(4, 8, 20, 0.9);
  font-size: 0.72rem;
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-brand strong {
  font-size: 0.82rem;
}

.footer-brand small {
  font-size: 0.66rem;
}

.footer-links {
  align-content: start;
}

.footer-links a {
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.72rem;
  padding: 0.45rem 0.65rem;
}

.footer-meta p {
  font-size: 0.72rem;
  margin-bottom: 0.3rem;
}

.responsible-warning {
  padding: 0.9rem 1rem;
  margin-bottom: 2rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: rgba(255, 196, 81, 0.06);
  font-size: 0.78rem;
  line-height: 1.5;
  text-align: center;
}

.responsible-warning strong {
  color: var(--color-accent);
}

.responsible-warning a {
  color: var(--color-accent);
  text-decoration: underline;
  white-space: nowrap;
}

.page-hero {
  padding: 3rem 0 1rem;
}

.page-layout {
  display: grid;
  gap: 1.25rem;
}

.page-layout .card h2 + p,
.page-layout .card h3 + p,
.page-layout .card h3 + ul,
.page-layout .card h3 + ol {
  margin-top: 0.75rem;
}

@media (min-width: 768px) {
  .hero-grid,
  .split-layout,
  .grid-2,
  .grid-3,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .slot-showcase-head {
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
  }

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

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

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 0.9fr;
  }

  .header-actions {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    inset: auto;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
}

@media (min-width: 1024px) {
  .split-layout,
  .grid-2,
  .equal-columns,
  .footer-grid,
  .page-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

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

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    inset: auto;
  }

  .menu-toggle {
    display: none;
  }

  .header-actions {
    display: flex;
  }
}

@media (max-width: 767px) {
  .header-actions {
    display: none;
  }

  table {
    min-width: 580px;
  }

  .hero-visual {
    min-height: 300px;
  }

  .floating-chip,
  .hero-icon-card {
    transform: scale(0.9);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}
