/* ===== SPIN2223 - UK CASINO AFFILIATE ===== */

:root {
  --red:        #B5000A;
  --red-dark:   #7A0007;
  --red-light:  #D4000D;
  --gold:       #C9A84C;
  --gold-light: #F0C94D;
  --dark:       #0A0A0F;
  --dark-2:     #12121A;
  --dark-3:     #1C1C28;
  --dark-4:     #252535;
  --text:       #E8E8F0;
  --text-muted: #9090A8;
  --border:     rgba(201,168,76,0.18);
  --shadow:     0 8px 32px rgba(0,0,0,0.55);
  --radius:     12px;
  --radius-sm:  8px;
  --transition: 0.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, -apple-system, sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.45rem); }

.section-title {
  text-align: center;
  margin-bottom: 0.5rem;
}
.section-title span { color: var(--gold); }
.section-lead {
  text-align: center;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 2.8rem;
  font-size: 1.05rem;
}

/* ─── UTILITIES ─── */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section-pad { padding: 80px 0; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.72rem 1.7rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--red-light), var(--red-dark));
  color: #fff;
  box-shadow: 0 4px 20px rgba(181,0,10,0.45);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #e80011, var(--red));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(181,0,10,0.6);
}
.btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--dark);
  font-weight: 700;
}
.btn-gold:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.5);
}

/* ─── AGE VERIFICATION ─── */
#age-gate {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.97);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.age-gate-box {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  max-width: 480px;
  width: 94%;
  text-align: center;
  box-shadow: var(--shadow);
}
.age-gate-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}
.age-gate-box h2 { margin-bottom: 0.75rem; font-size: 1.7rem; }
.age-gate-box p { color: var(--text-muted); margin-bottom: 2rem; font-size: 0.95rem; }
.age-gate-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.age-gate-btns .btn { min-width: 160px; }
#age-leave {
  display: block;
  margin-top: 1.2rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  cursor: pointer;
  text-decoration: underline;
}
#age-leave:hover { color: var(--text); }

/* ─── COOKIE BANNER ─── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark-3);
  border-top: 1px solid var(--border);
  z-index: 8888;
  padding: 1.1rem 1.5rem;
  display: none;
  animation: slideUp 0.4s ease;
}
@keyframes slideUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
.cookie-inner {
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-text { flex: 1; font-size: 0.88rem; color: var(--text-muted); min-width: 240px; }
.cookie-text a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; flex-wrap: wrap; }

/* ─── HEADER ─── */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
#site-header.scrolled { background: rgba(10,10,15,0.98); }

.header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 128px;
  gap: 0.45rem;
  position: relative;
  padding: 0.55rem 0;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  z-index: 3;
  padding: 0.2rem 0.75rem;
  border-radius: 12px;
  background: rgba(10,10,15,0.46);
  border: 1px solid rgba(201,168,76,0.18);
}
.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
}
.logo-text {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.logo-text .s { color: var(--gold); }
.logo-text .rest { color: #fff; }
.logo-text .up { color: var(--red-light); font-size: 0.85em; }

/* Nav */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  z-index: 2;
}
.nav-menu a {
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: #fff;
  background: rgba(255,255,255,0.06);
}
.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* Mobile burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.header-disclaimer {
  max-width: 920px;
  text-align: center;
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--text-muted);
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.14);
}
.header-disclaimer strong {
  color: #d7d7e8;
  font-weight: 600;
}
.header-disclaimer span {
  margin-left: 0.28rem;
}

@media (max-width: 768px) {
  .header-inner {
    min-height: 74px;
    flex-direction: row;
    justify-content: center;
    padding: 0;
  }
  .header-disclaimer {
    display: none;
  }
  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.1rem 0.45rem;
  }
  .burger {
    display: flex;
    position: absolute;
    right: 0.2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
  }
  .nav-menu {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--dark-2);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem;
    gap: 0.2rem;
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }
  .nav-menu.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-menu a { padding: 0.75rem 1rem; }
}

/* ─── HERO — SPLIT EDITORIAL LAYOUT ─── */
#hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 168px 0 70px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../_m/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(5,5,10,0.95) 0%,
    rgba(60,0,5,0.75) 48%,
    rgba(5,5,10,0.88) 100%
  );
}

/* Split container */
.hero-split {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

/* Left panel */
.hero-left {}
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 1.6rem;
}
.hero-kicker-line {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.hero-headline {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  line-height: 1.04;
  margin-bottom: 1.4rem;
}
.hl-thin {
  display: block;
  font-weight: 300;
  color: rgba(232,232,240,0.65);
  font-size: 0.6em;
  letter-spacing: 0.04em;
}
.hl-bold {
  display: block;
  font-weight: 900;
  color: #fff;
}
.hl-outline {
  display: block;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px var(--gold);
}

.hero-desc {
  font-size: 1.02rem;
  color: rgba(232,232,240,0.72);
  line-height: 1.72;
  max-width: 500px;
  margin-bottom: 2rem;
}
.hero-desc strong { color: #fff; font-weight: 600; }

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

/* Trust pills */
.hero-trust-row {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.hero-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 0.3rem 0.85rem;
  font-size: 0.78rem;
  color: rgba(232,232,240,0.8);
  font-weight: 500;
}

/* Right panel — floating pick cards */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.hero-picks-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.9rem;
  padding-left: 0.5rem;
}

.hero-pick-card {
  background: rgba(25, 25, 35, 0.82);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  backdrop-filter: blur(12px);
  transition: var(--transition);
  margin-bottom: 0.75rem;
}
.hero-pick-card:hover {
  border-color: rgba(201,168,76,0.45);
  background: rgba(35, 30, 45, 0.92);
  transform: translateX(4px);
}

/* Slight offset for stacked feel */
.hpc-1 { margin-left: 0; }
.hpc-2 { margin-left: 1.2rem; }
.hpc-3 { margin-left: 2.4rem; }

.hpc-rank { font-size: 1.3rem; flex-shrink: 0; }
.hpc-logo {
  width: 42px;
  height: 42px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  padding: 4px;
}
.hpc-logo img { width: 100%; height: 100%; object-fit: contain; }
.hpc-info {
  flex: 1;
  min-width: 0;
}
.hpc-name {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hpc-cat {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hpc-score {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold);
  flex-shrink: 0;
}

.hero-more-link {
  text-align: right;
  padding-right: 0.5rem;
  margin-top: 0.3rem;
}
.hero-more-link a {
  font-size: 0.8rem;
  color: var(--gold);
  text-decoration: underline;
  transition: var(--transition);
}
.hero-more-link a:hover { color: var(--gold-light); }

/* Responsive hero split */
@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hpc-1, .hpc-2, .hpc-3 { margin-left: 0; }
  .hero-pick-card { padding: 0.85rem 1rem; }
}
@media (max-width: 540px) {
  .hero-headline { font-size: 2.4rem; }
  .hl-outline { -webkit-text-stroke: 1.5px var(--gold); }
  #hero { padding: 145px 0 55px; }
}

@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.4); }
}

/* ─── CASINO CARDS ─── */
#casinos {
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}
#casinos::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(8,8,14,0.86), rgba(8,8,14,0.9)), url("../_m/bg-casino-section.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.9;
  z-index: 0;
}
#casinos > .container { position: relative; z-index: 1; }
.casino-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.casino-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 60px 100px 1fr auto auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.casino-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--red), var(--gold));
  opacity: 0;
  transition: var(--transition);
}
.casino-card:hover {
  border-color: rgba(201,168,76,0.38);
  background: var(--dark-4);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.casino-card:hover::before { opacity: 1; }

.casino-rank {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-muted);
  text-align: center;
  line-height: 1;
}
.casino-rank.top1 { color: var(--gold); }
.casino-rank.top2 { color: #C0C0C0; }
.casino-rank.top3 { color: #CD7F32; }

.casino-logo-wrap {
  width: 90px;
  height: 52px;
  background: #fff;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  padding: 6px;
}
.casino-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.casino-info { min-width: 0; }
.casino-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
}
.casino-category {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border-radius: 4px;
  padding: 0.2rem 0.55rem;
  margin-bottom: 0.45rem;
}
.casino-bonus {
  font-size: 0.88rem;
  color: var(--text-muted);
}
.casino-bonus strong { color: var(--text); }

.casino-rating {
  text-align: center;
  flex-shrink: 0;
}
.stars {
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: var(--gold);
  display: block;
}
.rating-score {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  display: block;
  line-height: 1.1;
}
.rating-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  display: block;
}

.casino-cta { flex-shrink: 0; }

@media (max-width: 900px) {
  .casino-card {
    grid-template-columns: 44px 80px 1fr;
    grid-template-rows: auto auto;
  }
  .casino-rating { grid-column: 2; grid-row: 2; }
  .casino-cta { grid-column: 3; grid-row: 2; justify-self: end; }
}
@media (max-width: 540px) {
  .casino-card {
    grid-template-columns: 36px 70px 1fr;
    gap: 0.75rem;
    padding: 1rem;
  }
  .casino-logo-wrap { width: 70px; height: 42px; }
  .btn { padding: 0.55rem 1rem; font-size: 0.85rem; }
}

/* ─── TRUST BLOCK ─── */
#trust {
  background: var(--dark);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.trust-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.trust-card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-4px);
}
.trust-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}
.trust-card h3 { margin-bottom: 0.5rem; font-size: 1.05rem; }
.trust-card p { font-size: 0.88rem; color: var(--text-muted); }

/* ─── RESPONSIBLE GAMBLING / REGULATORS ─── */
#responsible {
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}
#responsible::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(5,8,18,0.88), rgba(5,8,18,0.88)), url("../_m/bg-safe-section.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
}
#responsible > .container { position: relative; z-index: 1; }
.resp-alert {
  background: linear-gradient(135deg, rgba(181,0,10,0.15), rgba(181,0,10,0.06));
  border: 1px solid rgba(181,0,10,0.35);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 3rem;
}
.resp-alert-icon { font-size: 1.7rem; flex-shrink: 0; margin-top: 0.1rem; }
.resp-alert h4 { font-size: 1rem; margin-bottom: 0.3rem; color: #ff6b6b; }
.resp-alert p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
.resp-alert a { color: var(--gold); text-decoration: underline; }

.regulators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}
.regulator-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
  transition: var(--transition);
}
.regulator-card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-3px);
}
.regulator-logo {
  width: 130px;
  height: 60px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8px;
}
.regulator-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.regulator-card h4 { font-size: 0.95rem; font-weight: 700; }
.regulator-card p { font-size: 0.8rem; color: var(--text-muted); }
.regulator-card a {
  font-size: 0.8rem;
  color: var(--gold);
  text-decoration: underline;
}
.regulator-card a:hover { color: var(--gold-light); }

/* ─── HOW WE RATE ─── */
#how-we-rate { background: var(--dark); }
.rate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.rate-item {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  gap: 1rem;
}
.rate-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--red);
  opacity: 0.35;
  line-height: 1;
  flex-shrink: 0;
  min-width: 40px;
}
.rate-item h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.rate-item p { font-size: 0.85rem; color: var(--text-muted); }

/* ─── FAQ ─── */
#faq {
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}
#faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(7,7,14,0.9), rgba(7,7,14,0.9)), url("../_m/bg-faq-section.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
}
#faq > .container { position: relative; z-index: 1; }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
}
.faq-question:hover { background: rgba(255,255,255,0.04); }
.faq-question.open { color: var(--gold); }
.faq-chevron {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-question.open .faq-chevron {
  background: var(--red);
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease, padding 0.3s ease;
}
.faq-answer.open { max-height: 400px; }
.faq-answer-inner {
  padding: 0 1.4rem 1.2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
}
.faq-answer-inner a { color: var(--gold); text-decoration: underline; }

/* ─── DISCLAIMER ─── */
.disclaimer-bar {
  background: rgba(181,0,10,0.08);
  border-top: 1px solid rgba(181,0,10,0.2);
  border-bottom: 1px solid rgba(181,0,10,0.2);
  padding: 1rem 0;
}
.disclaimer-bar .container {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.disclaimer-bar strong { color: #ff8888; }

/* ─── FOOTER ─── */
#footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.2rem;
  position: relative;
  overflow: hidden;
}
#footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(6,6,11,0.95), rgba(6,6,11,0.96)), url("../_m/bg-footer-section.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
}
#footer > .container { position: relative; z-index: 1; }

/* New footer layout */
.footer-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.6rem;
  margin-bottom: 1.8rem;
}
.footer-brand-panel {
  background: rgba(24,24,34,0.74);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.4rem;
}
.footer-brand-panel .logo {
  display: inline-flex;
  background: transparent;
  border: none;
  padding: 0;
}
.footer-brand-text {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0.8rem 0 1rem;
}
.footer-badges {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
  font-size: 0.74rem;
  color: var(--text-muted);
}
.footer-nav-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.footer-link-panel {
  background: rgba(24,24,34,0.74);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.1rem 1rem;
}
.footer-link-panel h4 {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.7rem;
}
.footer-link-panel ul li { margin-bottom: 0.38rem; }
.footer-link-panel ul li a {
  font-size: 0.86rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-link-panel ul li a:hover { color: #fff; }
.footer-regs {
  background: rgba(24,24,34,0.74);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  margin-bottom: 1.1rem;
}
.footer-regs-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.footer-regs-logos {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.footer-reg-logo {
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 4px 10px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.footer-reg-logo img { height: 100%; width: auto; object-fit: contain; filter: brightness(0.85) grayscale(0.3); }
.footer-reg-logo:hover img { filter: none; }

.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.16);
  padding-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }
.footer-bottom a { color: var(--gold); text-decoration: underline; }
.footer-age {
  background: var(--red-dark);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 5px;
  letter-spacing: 0.05em;
}
@media (max-width: 1000px) {
  .footer-layout { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .footer-nav-panels { grid-template-columns: 1fr; }
}

/* ─── PAGE HEADER (inner pages) ─── */
.page-hero {
  padding: 130px 0 60px;
  background: linear-gradient(rgba(8,8,14,0.86), rgba(8,8,14,0.9)), url("../_m/bg-casino-section.jpg");
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { margin-bottom: 0.6rem; }
.page-hero h1 span { color: var(--gold); }
.page-hero p { color: var(--text-muted); font-size: 1.05rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--text-muted); }

/* ─── CONTENT PAGES ─── */
.content-body {
  padding: 60px 0;
  background: linear-gradient(rgba(10,10,16,0.96), rgba(10,10,16,0.96)), url("../_m/bg-faq-section.jpg");
  background-size: cover;
  background-position: center;
}
.content-body h2 {
  font-size: 1.4rem;
  color: var(--gold);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.content-body h2:first-child { margin-top: 0; }
.content-body h3 { font-size: 1.1rem; margin: 1.5rem 0 0.6rem; }
.content-body p { color: var(--text-muted); margin-bottom: 1rem; font-size: 0.95rem; line-height: 1.75; }
.content-body ul {
  list-style: disc;
  padding-left: 1.5rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.content-body ul li { margin-bottom: 0.4rem; font-size: 0.93rem; }
.content-body a { color: var(--gold); text-decoration: underline; }
.content-body strong { color: var(--text); }

.content-wrap {
  max-width: 860px;
  margin: 0 auto;
}

/* ─── ABOUT PAGE SPECIFIC ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}
@media (max-width: 720px) {
  .about-grid { grid-template-columns: 1fr; }
}
.about-visual {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}
.about-visual .big-icon { font-size: 4rem; }
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
@media (max-width: 480px) {
  .about-values { grid-template-columns: 1fr; }
}
.about-value-item {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.about-value-item .vi { font-size: 1.3rem; flex-shrink: 0; }
.about-value-item h4 { font-size: 0.92rem; margin-bottom: 0.25rem; }
.about-value-item p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

/* ─── ANIMATIONS ─── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE MISC ─── */
@media (max-width: 640px) {
  .hero-stats { gap: 1.5rem; }
  .section-pad { padding: 55px 0; }
}
