:root {
  --gold: #e8b84b;
  --gold-dim: #a07820;
  --bg: #0d0d12;
  --bg2: #14141c;
  --bg3: #1c1c28;
  --surface: #1f1f2e;
  --border: rgba(232, 184, 75, 0.18);
  --text: #e8e6f0;
  --muted: #8a8aab;
  --green: #3ecf6e;
  --red: #e85a5a;
  --radius: 12px;
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "DM Sans", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232, 184, 75, 0.12);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 30px;
  text-transform: uppercase;
}

.chip {
  display: inline-block;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 20px;
}

header {
  border-bottom: 1px solid var(--border);
  background: rgba(13, 13, 18, 0.9);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.04em;
  color: var(--text);
}

.logo-text span {
  color: var(--gold);
}

nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

nav a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}

nav a:hover,
.inline-links a:hover {
  color: var(--gold);
}

.nav-cta,
.btn-play,
.btn-demo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s,
    border-color 0.15s;
}

.nav-cta {
  background: var(--gold);
  color: #0d0d12 !important;
  font-weight: 600;
  padding: 8px 16px;
  font-size: 13px !important;
}

.nav-cta:hover {
  background: #f0c85a !important;
}

.breadcrumb {
  padding: 14px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb span {
  margin: 0 6px;
}

.hero,
.page-hero {
  padding: 28px 0 40px;
}

.hero-grid,
.page-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}

.hero-meta,
.page-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero h1,
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 14px;
}

.hero h1 em,
.page-hero h1 em {
  color: var(--gold);
  font-style: normal;
}

.hero-desc,
.page-desc {
  color: var(--muted);
  font-size: 15px;
  max-width: 680px;
  margin-bottom: 24px;
}

.stats-bar {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
}

.stat-cell {
  flex: 1;
  min-width: 130px;
  padding: 14px 18px;
  border-right: 1px solid var(--border);
  background: var(--surface);
}

.stat-cell:last-child {
  border-right: none;
}

.stat-cell .label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.stat-cell .value {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold);
}

.stat-cell .sub {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

.cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-play {
  background: linear-gradient(135deg, var(--gold), #d4a030);
  color: #0d0d12;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  box-shadow: 0 4px 24px rgba(232, 184, 75, 0.35);
}

.btn-play:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232, 184, 75, 0.5);
}

.btn-demo {
  background: transparent;
  color: var(--gold);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 24px;
  border: 1px solid var(--border);
}

.btn-demo:hover {
  background: rgba(232, 184, 75, 0.08);
  border-color: var(--gold);
}

.game-card,
.content-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.game-card-title,
.card-title {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.game-card-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.game-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.game-row:last-child {
  border-bottom: none;
}

.game-row .k {
  color: var(--muted);
}

.game-row .v {
  color: var(--text);
  font-weight: 500;
  text-align: right;
}

.game-row .v.green {
  color: var(--green);
}

.game-row .v.gold {
  color: var(--gold);
}

.slot-section {
  padding: 0 0 48px;
}

.slot-frame-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.slot-frame-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.slot-frame-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
    ellipse at center,
    rgba(13, 13, 18, 0.72) 0%,
    rgba(13, 13, 18, 0.95) 100%
  );
  z-index: 5;
  transition: opacity 0.3s;
}

.slot-frame-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.slot-frame-overlay h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 42px);
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  text-align: center;
}

.slot-frame-overlay p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
  text-align: center;
  max-width: 420px;
}

section {
  padding: 48px 0;
}

section + section {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 10px;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 36px);
  letter-spacing: 0.03em;
  color: #fff;
  margin-bottom: 16px;
}

h3,
h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

p {
  color: var(--muted);
  margin-bottom: 14px;
}

p:last-child {
  margin-bottom: 0;
}

strong {
  color: var(--text);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-3px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(232, 184, 75, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}

.feature-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead tr {
  background: var(--bg3);
}

thead th {
  text-align: left;
  padding: 12px 16px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}

tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.15s;
}

tbody tr:last-child {
  border-bottom: none;
}

tbody tr:hover {
  background: rgba(232, 184, 75, 0.04);
}

tbody td {
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text);
  vertical-align: top;
}

tbody td.gold {
  color: var(--gold);
  font-weight: 600;
}

tbody td.green {
  color: var(--green);
}

.rtp-bar-wrap {
  margin-top: 24px;
}

.rtp-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.rtp-row .label {
  font-size: 13px;
  color: var(--muted);
  min-width: 160px;
}

.rtp-track {
  flex: 1;
  height: 8px;
  background: var(--bg3);
  border-radius: 4px;
  overflow: hidden;
}

.rtp-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold));
}

.rtp-row .val {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  min-width: 54px;
  text-align: right;
}

.content-list,
.link-list,
.meta-list {
  list-style: none;
}

.content-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.content-list li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
}

.content-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.inline-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

.notice {
  background: rgba(232, 184, 75, 0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
}

.page-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  user-select: none;
  transition: background 0.15s;
}

.faq-q:hover {
  background: rgba(255, 255, 255, 0.03);
}

.faq-q .icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-q .icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
}

.faq-item.open .faq-a {
  max-height: 320px;
}

.faq-a-inner {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--muted);
}

.cta-banner {
  background: linear-gradient(135deg, var(--bg3) 0%, #1a1a2a 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 260px;
  background: radial-gradient(
    ellipse,
    rgba(232, 184, 75, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-banner h2 {
  margin-bottom: 10px;
}

.cta-banner p {
  max-width: 560px;
  margin: 0 auto 28px;
  font-size: 15px;
}

.disclaimer {
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding: 20px 0;
  margin-top: 8px;
  line-height: 1.6;
}

footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 36px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 28px;
}

.footer-col h4 {
  font-size: 13px;
  color: var(--text);
  margin-bottom: 12px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-col ul li a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 900px) {
  .hero-grid,
  .page-grid,
  .two-col,
  .three-col,
  .page-card-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    flex-wrap: wrap;
  }

  .stat-cell {
    flex: 1 1 45%;
  }
}

@media (max-width: 600px) {
  .cta-banner {
    padding: 32px 20px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    display: none;
  }

  .stat-cell {
    min-width: 100%;
  }
}
