@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Cinzel+Decorative:wght@400;700&family=Inter:wght@300;400;500;600&display=swap');

/* ── Variables ───────────────────────────────────────────────── */
:root {
  --bg:           #07091a;
  --bg-2:         #0c1028;
  --surface:      #10162e;
  --surface-2:    #172040;
  --surface-3:    #1e2a50;
  --gold:         #c9a441;
  --gold-light:   #e5cc72;
  --gold-dim:     rgba(201,164,65,.15);
  --gold-border:  rgba(201,164,65,.3);
  --gold-glow:    rgba(201,164,65,.12);
  --bronze:       #a8784e;
  --text:         #ede4cf;
  --text-dim:     #8a90a8;
  --text-muted:   #474f6a;
  --accent:       #e8912a;
  --radius:       2px;
  --radius-lg:    4px;
  --transition:   .25s ease;
  --shadow-gold:  0 0 40px rgba(201,164,65,.08);
  --shadow-card:  0 4px 24px rgba(0,0,0,.5);
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Suit-pattern background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,164,65,.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

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

h1, h2, h3, h4, h5 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ──────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7,9,26,.92);
  border-bottom: 1px solid var(--gold-border);
  backdrop-filter: blur(12px);
}

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

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

.logo-mark {
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--gold);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel Decorative', serif;
  font-size: 16px;
  color: var(--gold);
  box-shadow: 0 0 12px rgba(201,164,65,.2), inset 0 0 12px rgba(201,164,65,.06);
  position: relative;
  overflow: hidden;
}

.logo-mark::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, transparent 40%, rgba(201,164,65,.15) 50%, transparent 60%);
}

.logo-text {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .06em;
  color: var(--text);
  line-height: 1.1;
}

.logo-text span {
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 1px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.site-nav a {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: color var(--transition);
}

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

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.coin-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-light);
  font-family: 'Cinzel', serif;
  letter-spacing: .04em;
}

.coin-chip::before {
  content: '◈';
  font-size: 14px;
  color: var(--gold);
}

.btn-header {
  padding: 8px 20px;
  background: linear-gradient(135deg, #b8920e, #c9a441, #b8920e);
  border: none;
  border-radius: var(--radius);
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #07091a;
  cursor: pointer;
  transition: box-shadow var(--transition), transform var(--transition);
}

.btn-header:hover {
  box-shadow: 0 0 20px rgba(201,164,65,.4);
  transform: translateY(-1px);
}

.btn-header.signed-in { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: var(--transition);
}

/* ── Age Gate ────────────────────────────────────────────────── */
.age-gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(7,9,26,.97);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.age-gate-box {
  max-width: 480px;
  width: 90%;
  background: var(--surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,.7), var(--shadow-gold);
  position: relative;
}

.age-gate-box::before {
  content: '♠ ♥ ♦ ♣';
  position: absolute;
  top: 16px;
  left: 0; right: 0;
  text-align: center;
  font-size: 13px;
  letter-spacing: .5em;
  color: var(--text-muted);
}

.age-gate-emblem {
  font-family: 'Cinzel Decorative', serif;
  font-size: 48px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  text-shadow: 0 0 30px rgba(201,164,65,.4);
}

.age-gate-box h2 {
  font-size: 22px;
  letter-spacing: .06em;
  margin-bottom: 10px;
}

.age-gate-box p {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 28px;
  line-height: 1.6;
}

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

.btn-age-yes {
  padding: 14px 36px;
  background: linear-gradient(135deg, #b8920e, #c9a441);
  border: none;
  border-radius: var(--radius);
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #07091a;
  cursor: pointer;
  transition: box-shadow var(--transition), transform var(--transition);
}

.btn-age-yes:hover {
  box-shadow: 0 0 24px rgba(201,164,65,.5);
  transform: translateY(-1px);
}

.btn-age-no {
  padding: 14px 36px;
  background: transparent;
  border: 1px solid var(--text-muted);
  border-radius: var(--radius);
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-dim);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
}

.btn-age-no:hover { border-color: var(--text-dim); color: var(--text); }

/* ── Cookie Banner ───────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--surface);
  border-top: 1px solid var(--gold-border);
  padding: 18px 24px;
  display: none;
}

.cookie-banner.visible { display: block; }

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-inner p {
  flex: 1 1 300px;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
}

.cookie-inner p a { color: var(--gold); }

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

.btn-cookie-accept, .btn-cookie-decline {
  padding: 8px 22px;
  border-radius: var(--radius);
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-cookie-accept {
  background: linear-gradient(135deg, #b8920e, #c9a441);
  color: #07091a;
}

.btn-cookie-accept:hover { box-shadow: 0 0 16px rgba(201,164,65,.4); }

.btn-cookie-decline {
  background: transparent;
  border: 1px solid var(--text-muted);
  color: var(--text-dim);
}


.form-group { margin-bottom: 14px; }

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 5px;
  font-family: 'Cinzel', serif;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg-2);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px var(--gold-dim);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.form-check input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--gold);
  flex-shrink: 0;
  width: 15px;
  height: 15px;
}

.form-check label {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.5;
}

.form-check label a { color: var(--gold); }

.form-error {
  font-size: 11px;
  color: var(--danger, #e05555);
  margin-top: 4px;
  display: none;
}

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

.btn-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #b8920e, #c9a441, #b8920e);
  border: none;
  border-radius: var(--radius);
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #07091a;
  cursor: pointer;
  margin-top: 16px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.btn-submit:hover {
  box-shadow: 0 0 24px rgba(201,164,65,.45);
  transform: translateY(-1px);
}

.btn-submit:disabled {
  opacity: .5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}


/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 1;
  border-bottom: 1px solid var(--gold-border);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(201,164,65,.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 20% 60%, rgba(168,120,78,.06) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  z-index: 0;
}

/* Decorative card suits floating */
.hero-suits {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-suit {
  position: absolute;
  font-size: 120px;
  color: rgba(201,164,65,.04);
  font-family: serif;
  user-select: none;
  line-height: 1;
}

.hero-suit:nth-child(1) { top: 10%; right: 8%; font-size: 180px; opacity: .03; }
.hero-suit:nth-child(2) { bottom: 5%; right: 22%; font-size: 90px; opacity: .05; }
.hero-suit:nth-child(3) { top: 30%; right: 42%; font-size: 60px; opacity: .04; }
.hero-suit:nth-child(4) { bottom: 20%; left: 5%; font-size: 140px; opacity: .03; }

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.hero-content {}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding: 5px 14px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  background: var(--gold-dim);
}

.hero-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: .02em;
}

.hero-title .line-gold { color: var(--gold); display: block; }

.hero-sub {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 420px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  background: linear-gradient(135deg, #b8920e, #c9a441, #b8920e);
  border: none;
  border-radius: var(--radius);
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #07091a;
  cursor: pointer;
  transition: box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
}

.btn-primary:hover {
  box-shadow: 0 0 32px rgba(201,164,65,.5);
  transform: translateY(-2px);
  color: #07091a;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
}

.btn-secondary:hover {
  background: var(--gold-dim);
  box-shadow: 0 0 20px rgba(201,164,65,.15);
  transform: translateY(-1px);
  color: var(--gold-light);
}

/* Hero card showcase */
.hero-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
  position: relative;
}

.hero-showcase::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201,164,65,.08) 0%, transparent 70%);
  z-index: -1;
}

.showcase-card {
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--surface);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.showcase-card:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16/7;
}

.showcase-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,.5), 0 0 20px rgba(201,164,65,.15);
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.showcase-card:hover img { transform: scale(1.04); }

.showcase-card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 8px 12px;
  background: linear-gradient(transparent, rgba(7,9,26,.9));
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--text);
}

.showcase-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: rgba(201,164,65,.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #07091a;
  opacity: 0;
  transition: opacity var(--transition);
}

.showcase-card:hover .showcase-play-btn { opacity: 1; }

/* ── Section Headings ────────────────────────────────────────── */
.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  padding: 4px 14px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
}

.section-head h2 {
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: .04em;
  margin-bottom: 10px;
}

.section-head p {
  font-size: 15px;
  color: var(--text-dim);
  max-width: 500px;
  margin: 0 auto;
}

.divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 14px auto 0;
}

/* ── Games Lobby ─────────────────────────────────────────────── */
.lobby-section {
  padding: 90px 0;
  position: relative;
  z-index: 1;
}

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

.game-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
  position: relative;
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.5), 0 0 24px rgba(201,164,65,.12);
  border-color: rgba(201,164,65,.5);
}

/* Shimmer sweep on hover */
.game-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(201,164,65,.08) 50%, transparent 60%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}

.game-card:hover::after { opacity: 1; }

.game-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--surface-2);
}

.game-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.game-card:hover .game-cover img { transform: scale(1.06); }

.game-provider-badge {
  position: absolute;
  top: 8px; right: 8px;
  background: rgba(7,9,26,.8);
  border: 1px solid var(--gold-border);
  padding: 2px 8px;
  border-radius: var(--radius);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--gold);
  font-family: 'Cinzel', serif;
  text-transform: uppercase;
}

.game-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,9,26,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.game-card:hover .game-play-overlay { opacity: 1; }

.play-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #b8920e, #c9a441);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #07091a;
}

.game-info {
  padding: 16px;
}

.game-title {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 4px;
}

.game-meta {
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.btn-play {
  display: block;
  width: 100%;
  padding: 9px;
  text-align: center;
  background: var(--surface-2);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  transition: background var(--transition), box-shadow var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.btn-play:hover {
  background: var(--gold-dim);
  box-shadow: 0 0 16px rgba(201,164,65,.2);
  color: var(--gold-light);
}

/* ── Features Strip ──────────────────────────────────────────── */
.features-section {
  padding: 70px 0;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  background: var(--bg-2);
  position: relative;
  z-index: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.feature-item { text-align: center; }

.feature-icon {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background: var(--surface);
  box-shadow: 0 0 20px rgba(201,164,65,.06);
}

.feature-item h3 {
  font-size: 14px;
  letter-spacing: .06em;
  margin-bottom: 8px;
  font-weight: 700;
}

.feature-item p { font-size: 13px; color: var(--text-dim); line-height: 1.6; }

/* ── Responsible Gaming Strip ────────────────────────────────── */
.rg-strip {
  padding: 40px 0;
  background: var(--surface);
  border-top: 1px solid var(--gold-border);
  z-index: 1;
  position: relative;
}

.rg-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.rg-label {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
}

.rg-partners {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.rg-partner-link {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 500;
  padding: 5px 10px;
  background: rgba(255,255,255,0.93);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  transition: background var(--transition), border-color var(--transition);
  text-decoration: none;
}

.rg-partner-link:hover {
  background: #fff;
  border-color: rgba(255,255,255,0.3);
}

.rg-partner-link img {
  height: 22px;
  width: auto;
  filter: none;
  transition: opacity var(--transition);
}

.rg-partner-link:hover img { opacity: 1; }

.rg-helpline {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  white-space: nowrap;
}

.rg-helpline a {
  color: var(--gold);
  font-family: 'Cinzel', serif;
  letter-spacing: .04em;
}

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  background: #050816;
  border-top: 1px solid var(--gold-border);
  position: relative;
  z-index: 1;
}

.footer-main {
  padding: 60px 0 36px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}

.footer-brand .site-logo { margin-bottom: 16px; }

.footer-brand p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 16px;
}

.footer-age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
}

.footer-col h4 {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

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

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

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

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

.footer-partners { margin-bottom: 14px; }

.footer-partners h4 {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

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

.footer-partner-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-dim);
}

.footer-partner-item a { color: var(--text-dim); }
.footer-partner-item a:hover { color: var(--gold-light); }

.footer-helpline-number {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .04em;
}

.footer-bottom {
  border-top: 1px solid rgba(201,164,65,.1);
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-disclaimer {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 600px;
}

.footer-disclaimer strong { color: var(--text-dim); }

.footer-legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.footer-legal-links a {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: .06em;
  font-family: 'Cinzel', serif;
}

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

/* ── Game Page ───────────────────────────────────────────────── */
.game-page-header {
  padding: 24px 0;
  border-bottom: 1px solid var(--gold-border);
  background: var(--bg-2);
}

.game-page-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color var(--transition);
}

.back-link:hover { color: var(--gold); }

.game-page-info h1 {
  font-size: 20px;
  letter-spacing: .04em;
}

.game-page-info .game-provider {
  font-size: 12px;
  color: var(--text-dim);
  font-family: 'Cinzel', serif;
  letter-spacing: .08em;
}

.game-frame-section {
  background: #03050e;
  border-bottom: 1px solid var(--gold-border);
}

.game-frame-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 75vh;
  overflow: hidden;
}

.game-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.game-description {
  padding: 40px 0;
  z-index: 1;
  position: relative;
}

.game-desc-box {
  max-width: 700px;
  background: var(--surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 28px 32px;
}

.game-desc-box h2 {
  font-size: 16px;
  margin-bottom: 10px;
  letter-spacing: .04em;
}

.game-desc-box p { font-size: 14px; color: var(--text-dim); line-height: 1.7; }

/* ── Compliance Pages ────────────────────────────────────────── */
.page-hero {
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--gold-border);
  background: var(--bg-2);
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: .05em;
  margin-bottom: 10px;
}

.page-hero p { font-size: 14px; color: var(--text-dim); }

.page-hero .page-tag {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.prose-section {
  padding: 64px 0;
  position: relative;
  z-index: 1;
}

.prose {
  max-width: 800px;
}

.prose h2 {
  font-size: 18px;
  letter-spacing: .04em;
  margin: 40px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gold-border);
  color: var(--gold-light);
}

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

.prose h3 {
  font-size: 14px;
  letter-spacing: .04em;
  margin: 24px 0 10px;
  color: var(--text);
}

.prose p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 16px;
}

.prose ul, .prose ol {
  margin: 12px 0 16px 20px;
}

.prose li {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 6px;
}

.prose a { color: var(--gold); }
.prose strong { color: var(--text); font-weight: 600; }

.prose .last-updated {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 32px;
  font-style: italic;
}

.prose .highlight-box {
  background: var(--surface);
  border: 1px solid var(--gold-border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin: 20px 0;
}

.prose .highlight-box p { margin-bottom: 0; color: var(--text-dim); }

/* ── Contact Page ────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form-box {
  background: var(--surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 36px;
}

.contact-form-box h2 {
  font-size: 18px;
  letter-spacing: .04em;
  margin-bottom: 24px;
}

.contact-info h2 {
  font-size: 18px;
  letter-spacing: .04em;
  margin-bottom: 20px;
}

.contact-detail {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--gold);
  background: var(--surface);
}

.contact-detail p { font-size: 13px; color: var(--text-dim); line-height: 1.6; }
.contact-detail strong { display: block; color: var(--text); font-size: 13px; margin-bottom: 3px; font-family: 'Cinzel', serif; letter-spacing: .04em; }

.rg-callout {
  margin-top: 32px;
  background: var(--surface);
  border: 1px solid var(--gold-border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px;
}

.rg-callout h4 {
  font-size: 13px;
  margin-bottom: 8px;
  color: var(--gold-light);
  letter-spacing: .04em;
}

.rg-callout p { font-size: 13px; color: var(--text-dim); margin-bottom: 8px; }
.rg-callout a { color: var(--gold); }

/* ── Responsible Gaming Page ─────────────────────────────────── */
.rg-hero-strip {
  background: var(--surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 32px;
  border-left: 3px solid var(--gold);
}

.rg-hero-strip h3 {
  font-size: 15px;
  margin-bottom: 8px;
  letter-spacing: .04em;
}

.rg-hero-strip p { font-size: 14px; color: var(--text-dim); margin: 0; }

.rg-partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.rg-partner-card {
  background: var(--surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  text-decoration: none;
  transition: border-color var(--transition), transform var(--transition);
}

.rg-partner-card:hover {
  border-color: rgba(201,164,65,.5);
  transform: translateY(-2px);
}

.rg-partner-card .partner-name {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.rg-partner-card p { font-size: 12px; color: var(--text-dim); margin: 0; }

.self-check-list {
  background: var(--surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 20px 0;
}

.self-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 12px;
  list-style: none;
}

.self-check-list li::before {
  content: '◆';
  color: var(--gold);
  font-size: 8px;
  margin-top: 6px;
  flex-shrink: 0;
}

/* ── Animations (game cards deal-in on load) ─────────────────── */
@keyframes dealIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.game-card { opacity: 0; animation: dealIn .45s ease forwards; }
.game-card:nth-child(1) { animation-delay: .05s; }
.game-card:nth-child(2) { animation-delay: .12s; }
.game-card:nth-child(3) { animation-delay: .19s; }
.game-card:nth-child(4) { animation-delay: .26s; }
.game-card:nth-child(5) { animation-delay: .33s; }
.game-card:nth-child(6) { animation-delay: .40s; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 0; }
  .hero-showcase { display: none; }
  .lobby-grid { grid-template-columns: repeat(2, 1fr); }
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .hero-title { font-size: 28px; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; }
  .rg-partners-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom-inner { flex-direction: column; }
  .game-frame-wrap { aspect-ratio: 4/3; max-height: 100vh; }
  .rg-inner { justify-content: flex-start; }
}

@media (max-width: 480px) {
  .lobby-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .age-gate-box { padding: 36px 24px; }
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(7,9,26,.97);
  border-bottom: 1px solid var(--gold-border);
  padding: 16px 24px;
  z-index: 99;
  backdrop-filter: blur(12px);
}

.mobile-nav.open { display: block; }

.mobile-nav ul { list-style: none; }
.mobile-nav ul li { border-bottom: 1px solid rgba(201,164,65,.08); }
.mobile-nav ul li a {
  display: block;
  padding: 14px 0;
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.mobile-nav ul li a:hover { color: var(--gold); }

/* Under-construction message for blocked direct game access */
.access-gate-msg {
  text-align: center;
  padding: 80px 24px;
}

.access-gate-msg h2 { font-size: 24px; margin-bottom: 12px; }
.access-gate-msg p { color: var(--text-dim); margin-bottom: 24px; }
