:root {
  --bg: #030303;
  --panel: #101010;
  --panel-soft: #17120f;
  --red: #d71916;
  --red-dark: #7a0c0b;
  --gold: #ffcf6c;
  --text: #f7efe9;
  --muted: #c6b7ad;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(circle at 50% 0%, rgba(215, 25, 22, 0.18), transparent 36rem), var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 12px clamp(16px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(3, 3, 3, 0.88);
  backdrop-filter: blur(16px);
}
.brand img { width: 164px; }
.main-nav { display: flex; justify-content: center; gap: 26px; }
.main-nav a,
.header-actions a,
.cta-button,
.outline-button {
  text-decoration: none;
  font-weight: 800;
}
.main-nav a { color: var(--muted); }
.main-nav a:hover { color: var(--gold); }
.header-actions { display: flex; gap: 10px; }
.ghost-button,
.solid-button,
.outline-button,
.cta-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 18px;
}
.ghost-button,
.outline-button { border: 1px solid var(--line); color: var(--text); }
.solid-button,
.cta-button { border: 1px solid var(--red); background: var(--red); color: #fff; box-shadow: 0 0 28px rgba(215, 25, 22, 0.35); }
.cta-button { min-height: 58px; padding: 0 30px; text-transform: uppercase; animation: glow 1.6s ease-in-out infinite; }
.outline-button { min-height: 58px; padding: 0 28px; }

.hero {
  position: relative;
  min-height: 660px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 120px clamp(16px, 5vw, 72px) 70px;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.94), rgba(0,0,0,0.48), rgba(0,0,0,0.88)), linear-gradient(0deg, #030303 0%, transparent 42%);
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.78; }
.hero-content { position: relative; width: min(760px, 100%); }
.eyebrow { margin: 0 0 12px; color: var(--gold); font-size: 13px; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
h1 { margin: 0; font-size: clamp(54px, 9vw, 118px); line-height: 0.9; letter-spacing: 0; }
.hero-text { width: min(620px, 100%); margin: 22px 0 30px; color: var(--muted); font-size: 20px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

@keyframes glow {
  0%, 100% { transform: scale(1); box-shadow: 0 0 24px rgba(215, 25, 22, 0.35); }
  50% { transform: scale(1.035); box-shadow: 0 0 44px rgba(255, 207, 108, 0.32); }
}

.stats-strip {
  width: min(1180px, calc(100% - 32px));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: -34px auto 74px;
  position: relative;
  z-index: 3;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--line);
  box-shadow: var(--shadow);
}
.stats-strip div { background: rgba(13, 13, 13, 0.96); padding: 24px; }
.stats-strip strong { display: block; color: var(--gold); font-size: 34px; line-height: 1; }
.stats-strip span { color: var(--muted); font-weight: 700; }

.games-band,
.payments-band,
.content-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 82px;
}
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 24px; }
h2 { margin: 0 0 18px; color: var(--text); font-size: clamp(30px, 4vw, 48px); line-height: 1.08; letter-spacing: 0; }
h3 { margin: 28px 0 10px; color: var(--gold); font-size: 23px; line-height: 1.2; letter-spacing: 0; }
p, li, td, th { color: var(--muted); }

.games-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.game-card { position: relative; aspect-ratio: 1; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--panel); box-shadow: var(--shadow); }
.game-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 220ms ease; }
.game-card:hover img { transform: scale(1.06); }
.game-card span { position: absolute; left: 12px; right: 12px; bottom: 12px; border-radius: 999px; background: rgba(0,0,0,0.72); color: #fff; font-size: 13px; font-weight: 900; padding: 8px 10px; text-align: center; }

.content-shell > section {
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(23, 18, 15, 0.96), rgba(10, 10, 10, 0.98));
  padding: clamp(22px, 4vw, 38px);
  box-shadow: var(--shadow);
}
.content-shell > section:first-child { border-color: rgba(255, 207, 108, 0.35); }
.content-shell table { width: 100%; min-width: 640px; border-collapse: collapse; margin: 20px 0 4px; overflow: hidden; }
.content-shell table th,
.content-shell table td { border: 1px solid rgba(255,255,255,0.12); padding: 13px 14px; text-align: left; vertical-align: top; }
.content-shell table th { background: rgba(215, 25, 22, 0.24); color: #fff; }
.content-shell table tbody tr:nth-child(even) { background: rgba(255,255,255,0.035); }
.content-shell ul,
.content-shell ol { padding-left: 22px; }
.content-shell article,
.content-shell section div { border-top: 1px solid var(--line); margin-top: 18px; padding-top: 18px; }
.content-shell section:has(h2 + article) { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.content-shell section:has(h2 + article) h2 { grid-column: 1 / -1; }
.content-shell section:has(h2 + article) article { border: 1px solid var(--line); border-radius: 16px; background: rgba(0,0,0,0.22); padding: 18px; margin: 0; }
.content-shell section:has(h2 + div) div { border: 1px solid var(--line); border-radius: 16px; background: rgba(0,0,0,0.2); padding: 18px; }

.payment-grid,
.provider-row,
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 14px; }
.payment-grid img { width: 148px; height: 74px; object-fit: contain; border-radius: 16px; background: #fff; padding: 14px; }
.site-footer { border-top: 1px solid var(--line); background: #000; padding: 42px 16px 32px; }
.trust-row a { display: grid; place-items: center; width: 150px; height: 62px; border-radius: 14px; background: #fff; padding: 10px; }
.trust-row img { max-height: 100%; object-fit: contain; }
.provider-row { width: min(980px, 100%); margin: 28px auto; }
.provider-row img { width: 126px; height: 52px; object-fit: contain; border-radius: 12px; background: #fff; padding: 10px; }
.site-footer p { margin: 0; text-align: center; color: #8e8178; }

@media (max-width: 860px) {
  .site-header { grid-template-columns: auto auto; gap: 10px; min-height: 62px; }
  .brand img { width: 108px; }
  .main-nav { display: none; }
  .header-actions { justify-content: end; }
  .ghost-button,
  .solid-button { min-height: 34px; padding: 0 12px; font-size: 13px; }
  .hero { min-height: 560px; padding-top: 96px; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); margin-bottom: 50px; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .content-shell section:has(h2 + article) { grid-template-columns: 1fr; }
  .content-shell table { min-width: 560px; }
}

@media (max-width: 520px) {
  .hero { min-height: 500px; padding-bottom: 46px; }
  h1 { font-size: 54px; }
  .hero-text { font-size: 17px; }
  .stats-strip { grid-template-columns: 1fr; }
  .content-shell > section { border-radius: 16px; }
  .payment-grid img,
  .trust-row a { width: 132px; }
}
