/* ============================================================
   PALETTE & RESET
   ============================================================ */
:root {
  --bg: #0c0b0a;
  --bg-alt: #131110;
  --surface: #1a1714;
  --surface-2: #221d18;
  --surface-3: #2a241e;
  --border: #322b24;
  --border-strong: #463c31;
  --text: #ece6d8;
  --text-soft: #b3aa99;
  --text-mute: #7a7164;
  --gold: #d4a955;
  --gold-soft: #b58e3e;
  --gold-glow: rgba(212, 169, 85, 0.18);
  --crimson: #b8324a;
  --crimson-2: #98263a;
  --warn-bg: #4a2410;
  --warn-border: #d18a3a;
  --warn-text: #ffd9a8;
  --success: #6fbf73;
  --danger: #e25a5a;
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 4px 14px rgba(0, 0, 0, 0.35);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --container: 1180px;
  --font-head: "Oswald", "Bebas Neue", "Impact", sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(1200px 600px at 12% -10%, rgba(212, 169, 85, 0.06), transparent 60%),
    radial-gradient(900px 500px at 110% 20%, rgba(184, 50, 74, 0.05), transparent 60%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.18s ease;
}

a:hover {
  color: var(--text);
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text);
  text-transform: uppercase;
  margin: 0 0 0.6em;
  line-height: 1.15;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.6rem); letter-spacing: 1.5px; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); letter-spacing: 1.2px; }
h3 { font-size: 1.2rem; letter-spacing: 1px; }
p  { margin: 0 0 1em; color: var(--text-soft); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 70px 0;
  border-top: 1px solid var(--border);
}

.section-tight {
  padding: 40px 0;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}

.section-title::before {
  content: "";
  width: 6px;
  height: 28px;
  background: var(--gold);
  border-radius: 2px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-family: var(--font-head);
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.18s ease;
  font-weight: 500;
  background: transparent;
  color: var(--text);
}

.btn-primary {
  background: var(--crimson);
  color: #fff;
  box-shadow: 0 6px 20px rgba(184, 50, 74, 0.35);
}

.btn-primary:hover {
  background: var(--crimson-2);
  transform: translateY(-1px);
  color: #fff;
}

.btn-gold {
  background: var(--gold);
  color: #1a1410;
}

.btn-gold:hover {
  background: #e0b566;
  color: #1a1410;
  transform: translateY(-1px);
}

.btn-ghost {
  border-color: var(--border-strong);
  color: var(--text-soft);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-block {
  width: 100%;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(12, 11, 10, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--text-soft);
  font-size: 0.88rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-family: var(--font-head);
  font-weight: 400;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}

.nav a:hover,
.nav a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  padding: 8px 10px;
  cursor: pointer;
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 4px 0;
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-block; }
  .nav {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    box-shadow: var(--shadow-card);
    display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: 10px 4px; border-bottom: 1px solid var(--border); }
  .nav a:last-child { border-bottom: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 400px at 15% 30%, rgba(184, 50, 74, 0.18), transparent 60%),
    radial-gradient(600px 350px at 85% 70%, rgba(212, 169, 85, 0.10), transparent 60%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-soft);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
}

.hero h1 {
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.hero-lead {
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 28px;
  color: var(--text-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-stats {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-card);
}

.hero-stats h4 {
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 22px;
  font-family: var(--font-head);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.stat {
  text-align: center;
  padding: 14px 6px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.stat .num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.9rem;
  color: var(--text);
  line-height: 1;
}

.stat .lab {
  font-size: 0.7rem;
  color: var(--text-mute);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 6px;
  display: block;
}

.hero-stats p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-mute);
  line-height: 1.5;
}

/* ============================================================
   WARNING BANNER  (CORE COMPLIANCE NOTICE)
   ============================================================ */
.warning-banner {
  background: linear-gradient(95deg, #6a2f15 0%, #4a2410 100%);
  border-top: 2px solid var(--warn-border);
  border-bottom: 2px solid var(--warn-border);
  padding: 28px 0;
  position: relative;
  overflow: hidden;
}

.warning-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg,
      rgba(255, 217, 168, 0.04) 0 10px,
      transparent 10px 20px);
  pointer-events: none;
}

.warning-banner .container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 22px;
}

.warning-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--warn-text);
  color: #4a2410;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  box-shadow: 0 0 0 4px rgba(255, 217, 168, 0.18);
}

.warning-content h3 {
  margin: 0 0 4px;
  color: var(--warn-text);
  font-size: 1.15rem;
  letter-spacing: 1.5px;
}

.warning-content p {
  margin: 0;
  color: #ffe9c9;
  font-size: 0.95rem;
  line-height: 1.55;
}

@media (max-width: 640px) {
  .warning-banner .container { flex-direction: column; text-align: center; gap: 14px; }
}

/* ============================================================
   FEATURE LIST (Why Players Return)
   ============================================================ */
.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.2s ease;
}

.feature-list li:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.feature-list .tick {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: var(--gold);
  color: #1a1410;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 2px;
}

.feature-list span:last-child {
  color: var(--text-soft);
  font-size: 0.95rem;
}

/* ============================================================
   GAME CARDS GRID
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.game-card {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.game-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--crimson));
  opacity: 0.6;
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-card);
}

.game-card .tag {
  display: inline-flex;
  align-self: flex-start;
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 1.8px;
  background: var(--crimson);
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
}

.game-card h3 {
  margin: 6px 0 0;
  color: var(--text);
  font-size: 1.25rem;
}

.game-card p {
  margin: 0;
  color: var(--text-mute);
  font-size: 0.9rem;
  flex-grow: 1;
}

.game-card .card-btn {
  margin-top: 10px;
  align-self: flex-start;
}

/* ============================================================
   HOW IT WORKS / SPLIT PANELS
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
}

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
}

.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.panel.gold {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(212, 169, 85, 0.06), transparent);
}

.panel h4 {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: 1.8px;
}

.panel p {
  margin: 0;
  font-size: 0.95rem;
}

.panel p + p { margin-top: 12px; }

/* ============================================================
   FAQ GRID
   ============================================================ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.faq-grid .panel h4 {
  color: var(--text);
  font-size: 0.95rem;
}

.faq-grid .panel p {
  font-size: 0.88rem;
  color: var(--text-mute);
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 28px;
}

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 6px;
  font-family: var(--font-head);
}

.field input,
.field textarea {
  width: 100%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.18s ease;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--gold);
  outline: none;
}

.field textarea {
  resize: vertical;
  min-height: 110px;
}

.form-msg {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: rgba(111, 191, 115, 0.12);
  border: 1px solid rgba(111, 191, 115, 0.4);
  color: var(--success);
  font-size: 0.9rem;
}

.form-msg.visible { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg), #08070700);
  padding: 50px 0 30px;
  margin-top: 30px;
}

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

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

.footer-brand-block img.logo-mark {
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
}

.footer-brand-block p {
  font-size: 0.88rem;
  color: var(--text-mute);
  line-height: 1.6;
}

.footer-col h5 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--gold);
  margin: 0 0 14px;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  color: var(--text-soft);
  font-size: 0.9rem;
}

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

/* Gambling help section */
.help-block {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  margin-bottom: 26px;
}

.help-block h5 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  letter-spacing: 1.8px;
  color: var(--text);
  text-align: center;
  margin: 0 0 6px;
  text-transform: uppercase;
}

.help-block .help-sub {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-mute);
  margin: 0 0 22px;
}

.help-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
}

.help-logos a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  min-width: 140px;
  min-height: 64px;
}

.help-logos a:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.help-logos img {
  max-height: 40px;
  width: auto;
  filter: brightness(1.1) contrast(0.95);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-mute);
}

.age-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--crimson);
  color: var(--crimson);
  border-radius: 100px;
  font-family: var(--font-head);
  letter-spacing: 1.5px;
  font-size: 0.75rem;
}

/* ============================================================
   PAGE HEADER (subpages)
   ============================================================ */
.page-header {
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 300px at 20% 50%, rgba(212, 169, 85, 0.08), transparent 60%);
  pointer-events: none;
}

.page-header .container {
  position: relative;
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 8px 0 12px;
}

.breadcrumb {
  font-size: 0.78rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--text-mute);
  font-family: var(--font-head);
}

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

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-body {
  max-width: 820px;
  margin: 0 auto;
}

.legal-body h2 {
  font-size: 1.5rem;
  margin: 36px 0 12px;
  color: var(--gold);
}

.legal-body h2:first-child { margin-top: 0; }

.legal-body p,
.legal-body li {
  color: var(--text-soft);
  font-size: 0.97rem;
  line-height: 1.75;
}

.legal-body ul {
  padding-left: 22px;
  margin: 0 0 16px;
}

.legal-body li {
  margin-bottom: 6px;
}

.legal-body .lead {
  font-size: 1.05rem;
  color: var(--text);
  border-left: 3px solid var(--gold);
  padding-left: 16px;
  margin-bottom: 24px;
}

/* ============================================================
   COOKIE & AGE GATE
   ============================================================ */
.cookie-bar {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  z-index: 200;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: none;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
  align-items: center;
  gap: 18px;
  max-width: 720px;
  margin: 0 auto;
}

.cookie-bar.visible { display: flex; }

.cookie-bar p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-soft);
  flex-grow: 1;
}

.cookie-bar .actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-bar .btn { padding: 9px 16px; font-size: 0.78rem; }

@media (max-width: 640px) {
  .cookie-bar { flex-direction: column; align-items: stretch; }
  .cookie-bar .actions { justify-content: stretch; }
  .cookie-bar .actions .btn { flex: 1; }
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(8, 7, 6, 0.94);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.age-gate.visible { display: flex; }

.age-gate-box {
  max-width: 460px;
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7);
}

.age-gate-box .gate-mark {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  display: block;
}

.age-gate-box h3 {
  color: var(--gold);
  font-size: 1.4rem;
  margin: 0 0 10px;
}

.age-gate-box p {
  font-size: 0.92rem;
  color: var(--text-soft);
  margin: 0 0 24px;
}

.age-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.age-actions .btn { flex: 1; }

/* ============================================================
   UTIL
   ============================================================ */
.center { text-align: center; }
.muted { color: var(--text-mute); }
.mt-30 { margin-top: 30px; }
.mb-0 { margin-bottom: 0; }
.hidden { display: none !important; }
