/* === SLOT AUTHORITY – Main Stylesheet === */

:root {
  --navy:       #0B1729;
  --navy-mid:   #112240;
  --navy-card:  #152a4e;
  --gold:       #C49A2F;
  --gold-light: #E8BC50;
  --gold-pale:  #f5e6b8;
  --blue-acc:   #3B7DD8;
  --text:       #E8EDF5;
  --text-muted: #8DA5C4;
  --border:     rgba(196,154,47,.25);
  --radius:     12px;
  --shadow:     0 4px 24px rgba(0,0,0,.45);
  --trans:      .3s ease;
}

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

html { scroll-behavior:smooth; font-size:16px; }

body {
  font-family:'Segoe UI',system-ui,Arial,sans-serif;
  background-color: var(--navy);
  color: var(--text);
  line-height:1.65;
  min-height:100vh;
}

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

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

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top:0; left:0; right:0;
  z-index:1000;
  background: rgba(11,23,41,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding:0 2rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:68px;
  transition: box-shadow var(--trans);
}
.site-header.scrolled { box-shadow:0 2px 20px rgba(0,0,0,.6); }

.logo {
  display:flex;
  align-items:center;
  gap:.65rem;
  text-decoration:none;
}
.logo-icon {
  width:40px; height:40px;
  background: linear-gradient(135deg,#C49A2F,#8B6910);
  border-radius:8px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:Georgia,serif;
  font-size:15px;
  font-weight:700;
  color:#fff;
  flex-shrink:0;
  box-shadow:0 2px 10px rgba(196,154,47,.4);
}
.logo-text {
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.logo-text span:first-child {
  font-size:1.05rem;
  font-weight:700;
  color: var(--gold);
  letter-spacing:.02em;
}
.logo-text span:last-child {
  font-size:.62rem;
  color: var(--text-muted);
  letter-spacing:.08em;
  text-transform:uppercase;
}

/* Nav */
.nav-menu {
  display:flex;
  align-items:center;
  gap:.2rem;
  list-style:none;
}
.nav-menu a {
  display:block;
  padding:.45rem .9rem;
  border-radius:6px;
  font-size:.88rem;
  font-weight:500;
  color: var(--text);
  letter-spacing:.02em;
  transition: background var(--trans), color var(--trans);
}
.nav-menu a:hover,
.nav-menu a.active {
  background: rgba(196,154,47,.12);
  color: var(--gold-light);
}

.nav-cta {
  margin-left:.5rem;
  background: linear-gradient(135deg,#C49A2F,#8B6910) !important;
  color:#fff !important;
  border-radius:6px !important;
  font-weight:600 !important;
  padding:.45rem 1.1rem !important;
}
.nav-cta:hover {
  background: linear-gradient(135deg,#E8BC50,#C49A2F) !important;
  color:#fff !important;
}

/* Hamburger */
.nav-toggle {
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
  padding:6px;
  border:none;
  background:transparent;
}
.nav-toggle span {
  display:block;
  width:24px;
  height:2px;
  background: var(--gold);
  border-radius:2px;
  transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity:0; }
.nav-toggle.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* ===== MAIN CONTENT ===== */
main { padding-top:68px; }

/* ===== HERO v2 – split layout ===== */
.hero {
  position:relative;
  min-height:580px;
  display:flex;
  align-items:stretch;
  overflow:hidden;
  background-image: url('../images/hero-bg-v2.jpg');
  background-size:cover;
  background-position:center right;
}
.hero-overlay {
  position:absolute;
  inset:0;
  background: linear-gradient(105deg,
    rgba(11,23,41,1) 0%,
    rgba(11,23,41,.96) 40%,
    rgba(11,23,41,.6) 65%,
    rgba(11,23,41,.2) 100%);
}
.hero-inner {
  position:relative;
  z-index:1;
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:5rem 2rem;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:4rem;
  align-items:center;
}
.hero-left {}
.hero-eyebrow {
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  background: rgba(196,154,47,.12);
  border:1px solid rgba(196,154,47,.3);
  color: var(--gold-light);
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  padding:.3rem .85rem;
  border-radius:3px;
  margin-bottom:1.5rem;
}
.hero-eyebrow::before { content:''; display:inline-block; width:6px; height:6px; border-radius:50%; background:var(--gold); }
.hero h1 {
  font-size:clamp(2rem,3.5vw,3.2rem);
  font-weight:800;
  line-height:1.12;
  color:#fff;
  margin-bottom:1.2rem;
  letter-spacing:-.01em;
}
.hero h1 em {
  font-style:normal;
  background: linear-gradient(135deg,#E8BC50 20%,#C49A2F 80%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}
.hero-sub {
  font-size:.97rem;
  color: rgba(141,165,196,.9);
  margin-bottom:2rem;
  max-width:480px;
  line-height:1.7;
}
.hero-actions {
  display:flex;
  gap:1rem;
  flex-wrap:wrap;
  margin-bottom:2.5rem;
}
.btn-primary {
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  background: linear-gradient(135deg,#C49A2F,#8B6910);
  color:#fff;
  font-size:.9rem;
  font-weight:700;
  padding:.75rem 1.6rem;
  border-radius:6px;
  letter-spacing:.02em;
  transition: opacity .2s, transform .2s;
  text-decoration:none;
}
.btn-primary:hover { opacity:.88; transform:translateY(-1px); color:#fff; }
.btn-ghost {
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  background:transparent;
  color:var(--text);
  font-size:.9rem;
  font-weight:600;
  padding:.75rem 1.4rem;
  border-radius:6px;
  border:1px solid rgba(232,237,245,.2);
  transition: border-color .2s, color .2s;
  text-decoration:none;
}
.btn-ghost:hover { border-color:var(--gold); color:var(--gold-light); }
.hero-trust {
  display:flex;
  gap:1.5rem;
  flex-wrap:wrap;
}
.trust-item {
  display:flex;
  align-items:center;
  gap:.4rem;
  font-size:.78rem;
  color:var(--text-muted);
}
.trust-item::before {
  content:'✓';
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:16px;
  height:16px;
  background:rgba(74,222,128,.15);
  border-radius:50%;
  font-size:.6rem;
  color:#4ade80;
  flex-shrink:0;
}

/* Right panel – picks preview */
.hero-right {
  display:flex;
  justify-content:center;
}
.hero-panel {
  background:rgba(21,42,78,.75);
  border:1px solid rgba(196,154,47,.22);
  border-radius:16px;
  padding:1.6rem;
  width:100%;
  max-width:380px;
  backdrop-filter:blur(8px);
  box-shadow:0 24px 60px rgba(0,0,0,.5);
}
.hero-panel-title {
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:1.2rem;
  display:flex;
  align-items:center;
  gap:.5rem;
}
.hero-panel-title::after {
  content:'';
  flex:1;
  height:1px;
  background:rgba(196,154,47,.2);
}
.hero-pick {
  display:flex;
  align-items:center;
  gap:.9rem;
  padding:.8rem 0;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.hero-pick:last-of-type { border-bottom:none; }
.hero-pick-num {
  width:24px;
  height:24px;
  border-radius:50%;
  background:rgba(196,154,47,.15);
  border:1px solid rgba(196,154,47,.3);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:.7rem;
  font-weight:700;
  color:var(--gold);
  flex-shrink:0;
}
.hero-pick-icon {
  width:36px;
  height:36px;
  border-radius:8px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:.9rem;
  font-weight:800;
  color:#fff;
  flex-shrink:0;
}
.hero-pick-name {
  flex:1;
  font-size:.88rem;
  font-weight:600;
  color:#fff;
}
.hero-pick-score {
  font-size:.88rem;
  font-weight:700;
  color:var(--gold);
  display:flex;
  align-items:center;
  gap:.25rem;
}
.hero-pick-score::before { content:'★'; color:#E8BC50; }
.hero-panel-footer {
  margin-top:1.2rem;
  text-align:center;
  font-size:.76rem;
  color:var(--text-muted);
  border-top:1px solid rgba(255,255,255,.06);
  padding-top:1rem;
}
.hero-panel-footer a {
  color:var(--gold);
  font-weight:600;
}

/* ===== METHODOLOGY – numbered steps ===== */
.steps-list {
  display:flex;
  flex-direction:column;
  gap:0;
  max-width:860px;
  margin:0 auto;
  counter-reset:steps;
}
.step-item {
  display:grid;
  grid-template-columns:64px 1fr;
  gap:1.6rem;
  position:relative;
  padding-bottom:2.4rem;
}
.step-item:last-child { padding-bottom:0; }
.step-num-col {
  display:flex;
  flex-direction:column;
  align-items:center;
}
.step-num {
  width:46px;
  height:46px;
  border-radius:50%;
  background:linear-gradient(135deg,#C49A2F,#8B6910);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.05rem;
  font-weight:800;
  color:#fff;
  flex-shrink:0;
  position:relative;
  z-index:1;
  box-shadow:0 0 0 4px rgba(196,154,47,.15);
}
.step-line {
  width:2px;
  flex:1;
  background:linear-gradient(180deg,rgba(196,154,47,.4),rgba(196,154,47,.05));
  margin-top:8px;
}
.step-item:last-child .step-line { display:none; }
.step-body {
  padding-top:.2rem;
}
.step-body h3 {
  font-size:1.05rem;
  font-weight:700;
  color:#fff;
  margin-bottom:.5rem;
}
.step-body p {
  font-size:.88rem;
  color:var(--text-muted);
  line-height:1.7;
}

/* ===== GAMES – accent-bar cards ===== */
.games-bar-grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:1rem;
}
.game-bar-card {
  background:var(--navy-card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:1.4rem 1.4rem 1.4rem 1.8rem;
  display:flex;
  gap:1.2rem;
  align-items:flex-start;
  position:relative;
  overflow:hidden;
  transition:border-color var(--trans), transform var(--trans);
}
.game-bar-card::before {
  content:'';
  position:absolute;
  left:0; top:0; bottom:0;
  width:4px;
}
.game-bar-card:hover { border-color:rgba(196,154,47,.4); transform:translateY(-2px); }
.game-bar-card.c1::before { background:linear-gradient(180deg,#f97316,#ea580c); }
.game-bar-card.c2::before { background:linear-gradient(180deg,#8b5cf6,#6d28d9); }
.game-bar-card.c3::before { background:linear-gradient(180deg,#06b6d4,#0284c7); }
.game-bar-card.c4::before { background:linear-gradient(180deg,#ec4899,#be185d); }
.game-bar-card.c5::before { background:linear-gradient(180deg,#22c55e,#15803d); }
.game-bar-card.c6::before { background:linear-gradient(180deg,#eab308,#a16207); }
.game-bar-card.c7::before { background:linear-gradient(180deg,#ef4444,#b91c1c); }
.game-bar-card.c8::before { background:linear-gradient(180deg,#14b8a6,#0f766e); }
.game-bar-icon {
  font-size:1.6rem;
  flex-shrink:0;
  line-height:1;
  margin-top:.1rem;
}
.game-bar-body h3 { font-size:.97rem; font-weight:700; color:#fff; margin-bottom:.35rem; }
.game-bar-body p { font-size:.82rem; color:var(--text-muted); line-height:1.55; }

/* ===== REGULATORS v2 – full-width cards ===== */
.reg-grid-v2 {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:1.4rem;
  max-width:1100px;
  margin:0 auto;
}
.reg-card-v2 {
  background:var(--navy-card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:2rem;
  display:flex;
  flex-direction:column;
  gap:1.2rem;
  transition:border-color var(--trans), transform var(--trans);
  text-decoration:none;
  color:inherit;
}
.reg-card-v2:hover { border-color:rgba(196,154,47,.45); transform:translateY(-2px); color:inherit; }
.reg-card-top {
  display:flex;
  align-items:center;
  gap:1.2rem;
}
.reg-logo-wrap {
  background:#fff;
  border-radius:8px;
  padding:.5rem .8rem;
  height:52px;
  display:flex;
  align-items:center;
  flex-shrink:0;
}
.reg-logo-wrap img {
  height:38px;
  width:auto;
  max-width:120px;
  object-fit:contain;
}
.reg-card-v2 h4 { font-size:1rem; font-weight:700; color:#fff; }
.reg-card-v2 p { font-size:.84rem; color:var(--text-muted); line-height:1.65; }
.reg-link {
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  font-size:.8rem;
  font-weight:600;
  color:var(--gold);
  margin-top:.2rem;
}
.reg-link::after { content:'→'; }

/* ===== FAQ v2 – two column ===== */
.faq-two-col {
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:start;
  gap:.7rem;
  max-width:1100px;
  margin:0 auto;
}
.faq-two-col .faq-item { break-inside:avoid; }

/* ===== DISCLAIMER STRIP ===== */
.disclosure-strip {
  background:rgba(196,154,47,.06);
  border-top:1px solid rgba(196,154,47,.15);
  border-bottom:1px solid rgba(196,154,47,.15);
  padding:1rem 2rem;
}
.disclosure-strip p {
  max-width:1200px;
  margin:0 auto;
  font-size:.78rem;
  color:var(--text-muted);
  text-align:center;
  line-height:1.6;
}
.disclosure-strip strong { color:var(--gold-light); }

/* ===== SECTIONS ===== */
.section {
  padding:5rem 2rem;
  max-width:1200px;
  margin:0 auto;
}
.section-full {
  padding:5rem 2rem;
}
.section-header {
  text-align:center;
  margin-bottom:3rem;
}
.section-tag {
  display:inline-block;
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  color: var(--gold);
  margin-bottom:.7rem;
}
.section-header h2 {
  font-size:clamp(1.6rem,3vw,2.4rem);
  font-weight:800;
  color:#fff;
  margin-bottom:.8rem;
}
.section-header p {
  color: var(--text-muted);
  max-width:580px;
  margin:0 auto;
  font-size:.97rem;
}
.divider {
  width:48px;
  height:3px;
  background: linear-gradient(90deg,var(--gold),var(--gold-light));
  margin:.8rem auto 0;
  border-radius:2px;
}

/* ===== CASINO CARDS ===== */
.casinos-wrap {
  background: rgba(17,34,64,.5);
  padding:5rem 2rem;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.casinos-grid {
  display:flex;
  flex-direction:column;
  gap:1rem;
  max-width:1100px;
  margin:0 auto;
}

.casino-card {
  display:flex;
  align-items:center;
  gap:1.4rem;
  background: var(--navy-card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:1.2rem 1.6rem;
  cursor:pointer;
  transition: transform var(--trans), border-color var(--trans), box-shadow var(--trans);
  text-decoration:none;
  color:inherit;
  position:relative;
  overflow:hidden;
}
.casino-card::before {
  content:'';
  position:absolute;
  left:0; top:0; bottom:0;
  width:4px;
  background: linear-gradient(180deg,var(--gold),var(--gold-light));
  opacity:0;
  transition:opacity var(--trans);
}
.casino-card:hover {
  transform:translateY(-2px);
  border-color:rgba(196,154,47,.5);
  box-shadow:0 8px 30px rgba(0,0,0,.4),0 0 0 1px rgba(196,154,47,.15);
  color:inherit;
}
.casino-card:hover::before { opacity:1; }

.casino-rank {
  flex-shrink:0;
  width:32px;
  height:32px;
  background: rgba(196,154,47,.12);
  border:1px solid rgba(196,154,47,.25);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:.78rem;
  font-weight:700;
  color: var(--gold);
}

.casino-icon {
  flex-shrink:0;
  width:56px;
  height:56px;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.4rem;
  font-weight:800;
  color:#fff;
  box-shadow:0 4px 12px rgba(0,0,0,.3);
}

.casino-body { flex:1; min-width:0; }
.casino-name {
  font-size:1.05rem;
  font-weight:700;
  color:#fff;
  margin-bottom:.2rem;
}
.casino-category {
  font-size:.72rem;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
  color: var(--gold);
  margin-bottom:.4rem;
}
.casino-desc {
  font-size:.84rem;
  color: var(--text-muted);
  line-height:1.5;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.casino-right {
  flex-shrink:0;
  text-align:right;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:.5rem;
}
.casino-rating {
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:.15rem;
}
.casino-score {
  font-size:1.4rem;
  font-weight:800;
  color: var(--gold);
  line-height:1;
}
.casino-stars { font-size:.85rem; color: #E8BC50; letter-spacing:1px; }
.casino-badge {
  font-size:.68rem;
  font-weight:600;
  letter-spacing:.06em;
  text-transform:uppercase;
  padding:.25rem .6rem;
  border-radius:4px;
  border:1px solid;
  white-space:nowrap;
}
.badge-featured { color:#4ade80; border-color:rgba(74,222,128,.3); background:rgba(74,222,128,.08); }
.badge-hot      { color:#f97316; border-color:rgba(249,115,22,.3); background:rgba(249,115,22,.08); }
.badge-top      { color:#C49A2F; border-color:rgba(196,154,47,.3); background:rgba(196,154,47,.08); }
.badge-new      { color:#60a5fa; border-color:rgba(96,165,250,.3); background:rgba(96,165,250,.08); }
.badge-award    { color:#c084fc; border-color:rgba(192,132,252,.3); background:rgba(192,132,252,.08); }

.casino-cta {
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  background: linear-gradient(135deg,#C49A2F,#8B6910);
  color:#fff;
  font-size:.8rem;
  font-weight:600;
  padding:.4rem .9rem;
  border-radius:6px;
  letter-spacing:.02em;
  transition: opacity var(--trans);
}
.casino-cta:hover { opacity:.88; color:#fff; }

/* ===== FEATURE BLOCKS ===== */
.features-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:1.5rem;
}
.feature-card {
  background: var(--navy-card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:2rem 1.6rem;
  transition: border-color var(--trans), transform var(--trans);
}
.feature-card:hover { border-color:rgba(196,154,47,.4); transform:translateY(-3px); }
.feature-icon {
  font-size:2rem;
  margin-bottom:1rem;
}
.feature-card h3 {
  font-size:1.05rem;
  font-weight:700;
  color:#fff;
  margin-bottom:.5rem;
}
.feature-card p { font-size:.88rem; color:var(--text-muted); }

/* ===== GAMES SECTION ===== */
.games-section { background:var(--navy); }
.games-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:1.2rem;
}
.game-card {
  background: linear-gradient(135deg,var(--navy-card),var(--navy-mid));
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:1.8rem 1.4rem;
  text-align:center;
  transition: border-color var(--trans), transform var(--trans);
}
.game-card:hover { border-color:rgba(196,154,47,.45); transform:translateY(-3px); }
.game-emoji { font-size:2.6rem; margin-bottom:1rem; }
.game-card h3 { font-size:1rem; font-weight:700; color:#fff; margin-bottom:.4rem; }
.game-card p { font-size:.82rem; color:var(--text-muted); }

/* ===== REGULATORS ===== */
.regulators-section {
  background: rgba(17,34,64,.35);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.regulators-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:1.4rem;
  max-width:1100px;
  margin:0 auto;
}
.regulator-card {
  background: var(--navy-card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:1.6rem;
  display:flex;
  gap:1rem;
  align-items:flex-start;
  transition: border-color var(--trans);
  text-decoration:none;
  color:inherit;
}
.regulator-card:hover { border-color:rgba(196,154,47,.4); color:inherit; }
.regulator-img {
  width:60px;
  height:60px;
  object-fit:contain;
  flex-shrink:0;
  border-radius:8px;
}
.regulator-info h4 { font-size:.95rem; font-weight:700; color:#fff; margin-bottom:.3rem; }
.regulator-info p { font-size:.8rem; color:var(--text-muted); line-height:1.5; }

/* ===== FAQ ===== */
.faq-section { background:var(--navy); }
.faq-list {
  max-width:860px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:.7rem;
}
.faq-item {
  background:var(--navy-card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
}
.faq-q {
  width:100%;
  background:none;
  border:none;
  color:#fff;
  font-size:.95rem;
  font-weight:600;
  text-align:left;
  padding:1.2rem 1.4rem;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:1rem;
  transition:color var(--trans);
}
.faq-q:hover { color:var(--gold-light); }
.faq-q .faq-arrow {
  font-size:1rem;
  color:var(--gold);
  transition:transform .3s;
  flex-shrink:0;
}
.faq-item.open .faq-arrow { transform:rotate(180deg); }
.faq-a {
  max-height:0;
  overflow:hidden;
  transition:max-height .4s ease;
  padding:0 1.4rem;
  font-size:.88rem;
  color:var(--text-muted);
  line-height:1.7;
}
.faq-item.open .faq-a {
  max-height:400px;
  padding-bottom:1.2rem;
}

/* ===== DISCLAIMER / WARNING ===== */
.disclaimer-block {
  background: rgba(196,154,47,.07);
  border:1px solid rgba(196,154,47,.2);
  border-left:4px solid var(--gold);
  border-radius:var(--radius);
  padding:1.4rem 1.6rem;
  font-size:.83rem;
  color:var(--text-muted);
  line-height:1.7;
  max-width:1100px;
  margin:0 auto;
}
.disclaimer-block strong { color:var(--gold); }

.gambling-warning {
  background: rgba(249,115,22,.08);
  border:1px solid rgba(249,115,22,.25);
  border-left:4px solid #f97316;
  border-radius:var(--radius);
  padding:1.4rem 1.6rem;
  font-size:.83rem;
  color:rgba(232,237,245,.8);
  line-height:1.7;
  max-width:1100px;
  margin:0 auto;
}
.gambling-warning strong { color:#fb923c; }

.warning-banner {
  background:#f97316;
  color:#fff;
  text-align:center;
  padding:.55rem 1rem;
  font-size:.78rem;
  font-weight:600;
  letter-spacing:.03em;
}
.warning-banner a { color:#fff; text-decoration:underline; }

/* ===== FOOTER ===== */
.site-footer {
  background:rgba(6,12,22,.95);
  border-top:1px solid var(--border);
  padding:4rem 2rem 2rem;
}
.footer-inner {
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:3rem;
}
.footer-brand .logo { margin-bottom:1rem; }
.footer-brand p {
  font-size:.83rem;
  color:var(--text-muted);
  line-height:1.7;
  margin-bottom:1.2rem;
}
.footer-col h4 {
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:1rem;
}
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:.5rem; }
.footer-col ul li a {
  font-size:.85rem;
  color:var(--text-muted);
  transition:color var(--trans);
}
.footer-col ul li a:hover { color:var(--gold-light); }

.footer-bottom {
  max-width:1200px;
  margin:3rem auto 0;
  padding-top:1.5rem;
  border-top:1px solid var(--border);
  display:flex;
  flex-wrap:wrap;
  gap:1rem;
  align-items:center;
  justify-content:space-between;
}
.footer-bottom p {
  font-size:.78rem;
  color:var(--text-muted);
}
.footer-18 {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:32px;
  height:32px;
  background: rgba(249,115,22,.15);
  border:2px solid #f97316;
  border-radius:50%;
  font-size:.75rem;
  font-weight:800;
  color:#f97316;
}
.footer-logos {
  display:flex;
  gap:1rem;
  align-items:center;
  flex-wrap:wrap;
}
.footer-logos img {
  height:32px;
  width:auto;
  object-fit:contain;
  opacity:.7;
  transition:opacity var(--trans);
  filter:grayscale(30%);
}
.footer-logos img:hover { opacity:1; }

/* ===== INNER PAGES ===== */
.page-hero {
  background: linear-gradient(135deg,var(--navy-mid),var(--navy));
  border-bottom:1px solid var(--border);
  padding:5rem 2rem 3rem;
  text-align:center;
}
.page-hero h1 {
  font-size:clamp(1.8rem,3.5vw,3rem);
  font-weight:800;
  color:#fff;
  margin-bottom:.7rem;
}
.page-hero p {
  color:var(--text-muted);
  font-size:.97rem;
}
.breadcrumb {
  display:flex;
  justify-content:center;
  gap:.4rem;
  font-size:.78rem;
  color:var(--text-muted);
  margin-bottom:1rem;
}
.breadcrumb a { color:var(--gold); }

.page-content {
  max-width:880px;
  margin:0 auto;
  padding:4rem 2rem;
}
.page-content h2 {
  font-size:1.4rem;
  font-weight:700;
  color:#fff;
  margin:2rem 0 .8rem;
}
.page-content h3 {
  font-size:1.1rem;
  font-weight:600;
  color:var(--gold-light);
  margin:1.4rem 0 .6rem;
}
.page-content p {
  font-size:.93rem;
  color:var(--text-muted);
  margin-bottom:1rem;
  line-height:1.75;
}
.page-content ul,
.page-content ol {
  padding-left:1.5rem;
  margin-bottom:1rem;
}
.page-content li {
  font-size:.93rem;
  color:var(--text-muted);
  margin-bottom:.4rem;
  line-height:1.7;
}
.last-updated {
  display:inline-block;
  font-size:.78rem;
  color:var(--text-muted);
  background:rgba(196,154,47,.08);
  border:1px solid var(--border);
  padding:.3rem .8rem;
  border-radius:4px;
  margin-bottom:2rem;
}

/* About page */
.about-team {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:1.4rem;
  margin:2rem 0;
}
.team-card {
  background:var(--navy-card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:1.8rem 1.4rem;
  text-align:center;
}
.team-avatar {
  width:64px;
  height:64px;
  border-radius:50%;
  background: linear-gradient(135deg,#C49A2F,#3B7DD8);
  margin:0 auto 1rem;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.4rem;
  font-weight:700;
  color:#fff;
}
.team-card h4 { font-size:.95rem; font-weight:700; color:#fff; margin-bottom:.2rem; }
.team-card span { font-size:.78rem; color:var(--gold); }

/* ===== AGE GATE ===== */
.age-gate-overlay {
  position:fixed;
  inset:0;
  z-index:9999;
  background:rgba(6,12,22,.98);
  backdrop-filter:blur(8px);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:1rem;
}
.age-gate-box {
  background:var(--navy-mid);
  border:1px solid var(--border);
  border-radius:20px;
  max-width:460px;
  width:100%;
  padding:3rem 2.4rem;
  text-align:center;
  box-shadow:0 20px 60px rgba(0,0,0,.6);
}
.age-gate-icon {
  font-size:3rem;
  margin-bottom:1.2rem;
}
.age-gate-box h2 {
  font-size:1.6rem;
  font-weight:800;
  color:#fff;
  margin-bottom:.6rem;
}
.age-gate-box p {
  font-size:.88rem;
  color:var(--text-muted);
  margin-bottom:2rem;
  line-height:1.65;
}
.age-gate-btns {
  display:flex;
  gap:1rem;
}
.btn-age-yes {
  flex:1;
  padding:.85rem 1.2rem;
  background: linear-gradient(135deg,#C49A2F,#8B6910);
  color:#fff;
  border:none;
  border-radius:8px;
  font-size:.95rem;
  font-weight:700;
  cursor:pointer;
  transition:opacity .2s;
}
.btn-age-yes:hover { opacity:.88; }
.btn-age-no {
  flex:1;
  padding:.85rem 1.2rem;
  background:rgba(249,115,22,.1);
  color:#f97316;
  border:1px solid rgba(249,115,22,.3);
  border-radius:8px;
  font-size:.95rem;
  font-weight:700;
  cursor:pointer;
  transition:background .2s;
}
.btn-age-no:hover { background:rgba(249,115,22,.18); }
.age-gate-note {
  margin-top:1.2rem;
  font-size:.75rem;
  color:var(--text-muted);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position:fixed;
  bottom:0; left:0; right:0;
  z-index:8000;
  background:rgba(17,34,64,.98);
  border-top:1px solid var(--border);
  backdrop-filter:blur(8px);
  padding:1.2rem 2rem;
  display:flex;
  align-items:center;
  gap:1.5rem;
  flex-wrap:wrap;
  justify-content:space-between;
  transform:translateY(100%);
  transition:transform .4s ease;
}
.cookie-banner.visible { transform:translateY(0); }
.cookie-text {
  flex:1;
  min-width:280px;
  font-size:.83rem;
  color:var(--text-muted);
  line-height:1.6;
}
.cookie-text a { color:var(--gold); }
.cookie-btns {
  display:flex;
  gap:.7rem;
  flex-shrink:0;
}
.btn-cookie-accept {
  padding:.55rem 1.3rem;
  background: linear-gradient(135deg,#C49A2F,#8B6910);
  color:#fff;
  border:none;
  border-radius:6px;
  font-size:.83rem;
  font-weight:700;
  cursor:pointer;
  transition:opacity .2s;
}
.btn-cookie-accept:hover { opacity:.85; }
.btn-cookie-decline {
  padding:.55rem 1rem;
  background:transparent;
  color:var(--text-muted);
  border:1px solid rgba(141,165,196,.25);
  border-radius:6px;
  font-size:.83rem;
  cursor:pointer;
  transition:border-color .2s, color .2s;
}
.btn-cookie-decline:hover { border-color:var(--text-muted); color:#fff; }

/* ===== UTILITIES ===== */
.container { max-width:1200px; margin:0 auto; padding:0 2rem; }
.text-gold { color:var(--gold); }
.hidden { display:none !important; }

/* ===== RESPONSIVE ===== */
@media(max-width:1024px) {
  .footer-inner { grid-template-columns:1fr 1fr; }
}
@media(max-width:1024px) {
  .hero-inner { grid-template-columns:1fr; gap:2rem; }
  .hero-right { display:none; }
  .games-bar-grid { grid-template-columns:1fr; }
  .reg-grid-v2 { grid-template-columns:1fr; }
  .faq-two-col { grid-template-columns:1fr; }
}
@media(max-width:768px) {
  .site-header { padding:0 1.2rem; }
  .nav-toggle { display:flex; }
  .nav-menu {
    display:none;
    position:absolute;
    top:68px; left:0; right:0;
    flex-direction:column;
    background:rgba(11,23,41,.99);
    border-bottom:1px solid var(--border);
    padding:1rem;
    gap:.2rem;
    z-index:999;
  }
  .nav-menu.open { display:flex; }
  .nav-menu a { padding:.7rem 1rem; font-size:.95rem; }
  .hero-inner { padding:3.5rem 1.5rem; }
  .casino-card { flex-wrap:wrap; gap:1rem; }
  .casino-right { flex-direction:row; align-items:center; width:100%; justify-content:space-between; }
  .footer-inner { grid-template-columns:1fr 1fr; gap:2rem; }
  .footer-brand { grid-column:1/-1; }
  .age-gate-btns { flex-direction:column; }
  .cookie-banner { flex-direction:column; align-items:stretch; }
  .cookie-btns { justify-content:center; }
  .games-bar-grid { grid-template-columns:1fr; }
  .reg-grid-v2 { grid-template-columns:1fr; }
  .faq-two-col { grid-template-columns:1fr; }
  .steps-list { grid-template-columns:1fr; }
}
@media(max-width:480px) {
  .section { padding:3rem 1.2rem; }
  .footer-inner { grid-template-columns:1fr; }
  .hero h1 { font-size:1.8rem; }
  .hero-actions { flex-direction:column; }
}
