/* ============================================================
   Ozwin Casino Australia — Las Vegas Dark Felt Theme
   Design: Exclusive casino floor at midnight — black, neon
   green, warm gold. Think Bellagio meets the Strip.
   Fonts: Oswald (display) + Barlow (body)
   Layout: Wide — 1150px content, 1440px full-width
============================================================ */

/* ── 1. RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--f-body);
  font-weight: 400;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--c-green-neon); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--c-green-bright); }

/* ── 2. CSS VARIABLES — Vegas Dark Felt ── */
:root {
  /* Backgrounds — casino floor black */
  --c-bg:           #04080a;
  --c-bg-alt:       #060d09;
  --c-surface:      #0a1410;
  --c-surface-alt:  #0e1a14;
  --c-surface-hover:#12201a;

  /* Neon green — casino sign green, jackpot, go */
  --c-green-neon:    #00d26a;
  --c-green-bright:  #00ff80;
  --c-green-dim:     #008a44;
  --c-green-glow:    rgba(0,210,106,0.50);
  --c-green-glow-lg: rgba(0,210,106,0.22);
  --c-green-pale:    rgba(0,210,106,0.08);
  --c-green-border:  rgba(0,210,106,0.22);
  --c-green-border-s:rgba(0,210,106,0.50);

  /* Casino felt emerald — table surface, section bg */
  --c-felt:          #0f2e1a;
  --c-felt-light:    #143d22;

  /* Gold — chips, luxury, highlights, headings */
  --c-gold:          #e8c030;
  --c-gold-bright:   #f7d83a;
  --c-gold-dim:      #a07e18;
  --c-gold-glow:     rgba(232,192,48,0.40);
  --c-gold-pale:     rgba(232,192,48,0.07);
  --c-gold-border:   rgba(232,192,48,0.22);
  --c-gold-border-s: rgba(232,192,48,0.50);

  /* Hot red — jackpot flash, urgent labels */
  --c-red-hot:       #ff3d00;
  --c-red-hot-pale:  rgba(255,61,0,0.10);
  --c-red-hot-border:rgba(255,61,0,0.30);

  /* Text */
  --c-text:          #eef5f0;
  --c-text-sec:      #7a9e82;
  --c-text-muted:    #486050;

  /* Borders */
  --c-border:        rgba(255,255,255,0.06);
  --c-border-strong: rgba(255,255,255,0.11);

  /* Semantic */
  --c-pos-bg:     rgba(0,210,106,0.10);
  --c-pos-border: rgba(0,210,106,0.30);
  --c-neg-bg:     rgba(255,61,0,0.10);
  --c-neg-border: rgba(255,61,0,0.30);

  /* Typography */
  --f-display: 'Oswald', 'Impact', sans-serif;
  --f-body:    'Barlow', 'Segoe UI', sans-serif;

  /* Spacing */
  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-5: 3rem;
  --sp-6: 4.5rem;
  --sp-7: 7rem;

  /* Layout — wide */
  --max-w:      1150px;
  --max-w-wide: 1440px;

  /* Misc */
  --radius:    8px;
  --radius-lg: 14px;
  --radius-xl: 22px;
  --radius-pill: 100px;
  --t:  200ms ease;
  --ts: 380ms ease;
}

/* ── 3. KEYFRAMES ── */
@keyframes btnShimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes btnGlow {
  0%, 100% {
    box-shadow: 0 0 16px var(--c-green-glow), 0 0 35px var(--c-green-glow-lg), 0 4px 20px rgba(0,0,0,0.5);
  }
  50% {
    box-shadow: 0 0 30px var(--c-green-glow), 0 0 60px rgba(0,210,106,0.35), 0 0 90px rgba(0,210,106,0.12), 0 4px 20px rgba(0,0,0,0.5);
  }
}
@keyframes goldShimmer {
  0%   { background-position: 0% center; }
  50%  { background-position: 100% center; }
  100% { background-position: 0% center; }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0px) rotate(45deg); }
  50%       { transform: translateY(-10px) rotate(45deg); }
}
@keyframes twinkle {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 1; }
}
@keyframes bannerScroll {
  0%   { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 6px var(--c-green-glow); }
  50%       { box-shadow: 0 0 18px var(--c-green-glow), 0 0 35px var(--c-green-glow-lg); }
}

/* ── 4. TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--c-text);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  margin-bottom: var(--sp-3);
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid var(--c-gold-border);
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
h2::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--c-green-neon), var(--c-gold));
  border-radius: 2px;
}
h3 { font-size: clamp(1rem, 2vw, 1.2rem); margin-bottom: var(--sp-2); }

p { margin-bottom: var(--sp-2); color: var(--c-text); font-size: 1.02rem; }
p:last-child { margin-bottom: 0; }
strong { color: var(--c-gold-bright); font-weight: 600; }

ul, ol { padding-left: 1.4em; margin-bottom: var(--sp-2); }
li { margin-bottom: 0.45em; }

/* ── 5. LAYOUT ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-4);
}
.container--wide {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0 var(--sp-4);
}
.section        { padding: var(--sp-6) 0; }
.section--alt   { background: var(--c-bg-alt); }
.section--felt  { background: var(--c-felt); }

/* ── 6. TOP BANNER ── */
.top-banner {
  background: linear-gradient(90deg, #0a1e0f, #0f2e18, #0a1e0f);
  border-bottom: 1px solid var(--c-green-border);
  padding: 0.55rem var(--sp-4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  position: relative;
  overflow: hidden;
  min-height: 42px;
}
.top-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    transparent, rgba(0,210,106,0.06) 30%,
    rgba(0,210,106,0.06) 70%, transparent);
}
.top-banner-text {
  font-family: var(--f-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--c-text-sec);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
}
.top-banner-text strong { color: var(--c-green-neon); font-weight: 700; }
.top-banner-text em { color: var(--c-gold); font-style: normal; }
.banner-cta-btn {
  display: inline-block;
  font-family: var(--f-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #04080a;
  background: var(--c-green-neon);
  border-radius: var(--radius-pill);
  padding: 0.32em 1.1em;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  transition: all var(--t);
  box-shadow: 0 0 10px var(--c-green-glow);
}
.banner-cta-btn:hover {
  background: var(--c-green-bright);
  color: #04080a;
  box-shadow: 0 0 20px var(--c-green-glow);
}
.banner-close {
  background: none;
  border: none;
  color: var(--c-text-muted);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.1em 0.4em;
  flex-shrink: 0;
  position: absolute;
  right: var(--sp-2);
  top: 50%;
  transform: translateY(-50%);
  transition: color var(--t);
}
.banner-close:hover { color: var(--c-text); }

/* ── 7. HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(4,8,10,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--c-green-border);
  transition: background var(--ts), box-shadow var(--ts);
}
.site-header.scrolled {
  background: rgba(4,8,10,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.6), 0 1px 0 var(--c-green-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  gap: var(--sp-2);
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text);
  flex-shrink: 0;
  text-decoration: none;
}
.logo:hover { color: var(--c-gold-bright); }
.logo-icon { color: var(--c-green-neon); filter: drop-shadow(0 0 6px var(--c-green-glow)); }
.logo-dot { color: var(--c-gold); }

.header-nav { display: none; gap: var(--sp-4); }
.header-nav a {
  font-family: var(--f-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-sec);
  transition: color var(--t);
}
.header-nav a:hover { color: var(--c-gold); }

.header-social { display: none; align-items: center; gap: 0.75rem; }
.header-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--c-border-strong);
  color: var(--c-text-muted);
  transition: all var(--t);
}
.header-social a:hover {
  border-color: var(--c-green-border);
  color: var(--c-green-neon);
  background: var(--c-green-pale);
}
.header-social svg { width: 14px; height: 14px; fill: currentColor; }

@media (min-width: 900px)  { .header-nav { display: flex; } }
@media (min-width: 1100px) { .header-social { display: flex; } }

/* ── 8. BUTTONS ── */
/* Primary — Neon Green casino action */
.btn-gold {
  display: inline-block;
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  text-decoration: none;
  color: #04080a !important;
  text-shadow: none;
  padding: 0.8em 2em;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    90deg,
    var(--c-green-dim),
    var(--c-green-neon),
    var(--c-green-bright),
    var(--c-green-neon),
    var(--c-green-dim)
  );
  background-size: 300% auto;
  animation: btnShimmer 2.5s linear infinite, btnGlow 2.2s ease-in-out infinite;
  transition: transform var(--t), filter var(--t);
}
/* Gloss shine sweep */
.btn-gold::before {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.40), transparent);
  animation: btnShimmer 1.6s linear infinite;
  pointer-events: none;
  transform: skewX(-15deg);
}
.btn-gold:hover {
  color: #04080a !important;
  transform: translateY(-3px) scale(1.03);
  filter: brightness(1.12);
}
.btn-gold:active { transform: translateY(-1px) scale(1.01); }

/* Secondary — Gold outline */
.btn-outline {
  display: inline-block;
  font-family: var(--f-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--c-gold);
  padding: 0.78em 2em;
  border-radius: var(--radius-pill);
  border: 2px solid var(--c-gold-border-s);
  background: rgba(232,192,48,0.05);
  cursor: pointer;
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}
.btn-outline:hover {
  color: #04080a;
  background: var(--c-gold);
  border-color: var(--c-gold);
  box-shadow: 0 0 22px var(--c-gold-glow), 0 0 45px rgba(232,192,48,0.15);
  transform: translateY(-2px);
}

/* Sizes */
.btn-lg  { padding: 0.95em 2.4em; font-size: 1.05rem; }
.btn-sm  { padding: 0.5em 1.2em;  font-size: 0.78rem; }

/* CTA Group */
.cta-group { display: flex; flex-wrap: wrap; gap: var(--sp-2); align-items: center; margin-top: var(--sp-3); }
.cta-group--center { justify-content: center; margin: var(--sp-4) 0; }

/* CTA Banner block */
.cta-banner {
  background: linear-gradient(135deg, var(--c-felt), var(--c-felt-light), var(--c-felt));
  border: 1px solid var(--c-green-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-5) var(--sp-4);
  text-align: center;
  margin: var(--sp-5) 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(0,210,106,0.07), transparent 70%);
  pointer-events: none;
}
.cta-banner h3 {
  font-family: var(--f-display);
  font-size: 1.25rem;
  color: var(--c-gold-bright);
  margin-bottom: var(--sp-1);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cta-banner p { color: var(--c-text-sec); font-size: 0.92rem; margin-bottom: var(--sp-3); }

/* ── 9. HERO ── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(0,210,106,0.13) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(232,192,48,0.10) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 100%, rgba(0,210,106,0.08) 0%, transparent 45%),
    radial-gradient(ellipse at 10% 20%, rgba(232,192,48,0.05) 0%, transparent 40%),
    linear-gradient(180deg, rgba(4,8,10,0.72) 0%, rgba(6,13,9,0.65) 60%, rgba(4,8,10,0.80) 100%),
    url('../banner.png') center center / cover no-repeat;
  z-index: 0;
}
/* Subtle casino floor grid pattern */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg,
      rgba(0,210,106,0.03) 0px, rgba(0,210,106,0.03) 1px,
      transparent 1px, transparent 80px),
    repeating-linear-gradient(90deg,
      rgba(0,210,106,0.03) 0px, rgba(0,210,106,0.03) 1px,
      transparent 1px, transparent 80px);
}
/* Glow orb at bottom */
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -120px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 280px;
  background: radial-gradient(ellipse, rgba(0,210,106,0.15), transparent 70%);
  filter: blur(50px);
}
/* Decorative diamond shapes */
.hero-deco { position: absolute; pointer-events: none; z-index: 1; }
.hero-deco-1 {
  top: 10%; right: 7%;
  width: 70px; height: 70px;
  border: 2px solid rgba(232,192,48,0.30);
  transform: rotate(45deg);
  animation: floatY 5s ease-in-out infinite;
}
.hero-deco-2 {
  bottom: 18%; left: 5%;
  width: 45px; height: 45px;
  border: 2px solid rgba(0,210,106,0.35);
  transform: rotate(45deg);
  animation: floatY 4.5s ease-in-out infinite reverse;
}
.hero-deco-3 {
  top: 35%; right: 14%;
  width: 18px; height: 18px;
  background: rgba(232,192,48,0.65);
  transform: rotate(45deg);
  animation: twinkle 2.5s ease-in-out infinite;
}
.hero-deco-4 {
  top: 22%; left: 10%;
  width: 12px; height: 12px;
  background: rgba(0,210,106,0.75);
  border-radius: 50%;
  animation: twinkle 3s ease-in-out infinite 1s;
}
.hero .container { position: relative; z-index: 2; padding-top: var(--sp-7); padding-bottom: var(--sp-7); }
.hero-content { max-width: 820px; margin: 0 auto; text-align: center; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-family: var(--f-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-green-neon);
  background: var(--c-green-pale);
  border: 1px solid var(--c-green-border-s);
  border-radius: var(--radius-pill);
  padding: 0.35em 1.2em;
  margin-bottom: var(--sp-3);
  animation: badgePulse 2.8s ease-in-out infinite;
}

.hero-title {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
  background: linear-gradient(
    135deg,
    var(--c-gold-dim)    0%,
    var(--c-gold)        25%,
    var(--c-gold-bright) 50%,
    var(--c-gold)        75%,
    var(--c-gold-dim)    100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 3.5s ease-in-out infinite;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--c-text-sec);
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto var(--sp-4);
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  justify-content: center;
  margin-bottom: var(--sp-3);
}

.hero-disclaimer { font-size: 0.76rem; color: var(--c-text-muted); margin-top: var(--sp-2); }

/* ── 10. INTRO SECTION ── */
.intro-section {
  padding: var(--sp-5) 0 var(--sp-4);
  background: var(--c-bg-alt);
  border-bottom: 1px solid var(--c-border);
  position: relative;
}
.intro-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-green-neon), var(--c-gold), var(--c-green-neon));
}
.intro-text p { font-size: 1.04rem; color: var(--c-text-sec); line-height: 1.85; }
.intro-text p:first-child { font-size: 1.08rem; color: var(--c-text); }

/* ── 11. CONTENT SECTIONS ── */
.content-section {
  padding: var(--sp-6) 0;
  border-bottom: 1px solid var(--c-border);
}
.content-section--alt { background: var(--c-bg-alt); }

.card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-4);
  transition: border-color var(--t), box-shadow var(--t);
}
.card:hover {
  border-color: var(--c-green-border);
  box-shadow: 0 0 18px rgba(0,210,106,0.07);
}

.info-card {
  background: linear-gradient(135deg, var(--c-felt), rgba(4,8,10,0.4));
  border: 1px solid var(--c-green-border);
  border-left: 4px solid var(--c-green-neon);
  border-radius: var(--radius);
  padding: var(--sp-3) var(--sp-4);
  margin: var(--sp-3) 0;
}
.info-card p { color: var(--c-text); font-size: 1.04rem; }

/* Legit card — gold themed */
.legit-card {
  background: linear-gradient(135deg, rgba(232,192,48,0.06), rgba(4,8,10,0.4));
  border: 1px solid var(--c-gold-border);
  border-left: 4px solid var(--c-gold);
  border-radius: var(--radius);
  padding: var(--sp-3) var(--sp-4);
  margin: var(--sp-3) 0;
}
.legit-card p { color: var(--c-text); font-size: 1.04rem; }

.feature-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65em;
}
.feature-list li {
  padding-left: 1.5em;
  position: relative;
  color: var(--c-text-sec);
}
.feature-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--c-green-neon);
  font-size: 0.9em;
  top: 0.05em;
}

/* ── 12. SECTION LABEL ── */
.section-label {
  font-family: var(--f-display);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-green-neon);
  display: block;
  margin-bottom: var(--sp-1);
}

/* ── 13. TABLES ── */
.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-gold-border);
  margin: var(--sp-3) 0;
  box-shadow: 0 0 24px rgba(0,0,0,0.4);
}
table { width: 100%; border-collapse: collapse; min-width: 500px; font-size: 0.95rem; }
thead tr {
  background: linear-gradient(90deg, var(--c-felt), var(--c-felt-light), var(--c-felt));
  border-bottom: 2px solid var(--c-gold-border-s);
}
thead th {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold-bright);
  padding: var(--sp-2) var(--sp-3);
  text-align: left;
}
tbody tr {
  border-bottom: 1px solid var(--c-border);
  transition: background var(--t);
}
tbody tr:last-child { border-bottom: none; }
tbody tr:nth-child(even) { background: rgba(0,210,106,0.03); }
tbody tr:hover { background: rgba(232,192,48,0.05); }
td { padding: var(--sp-2) var(--sp-3); color: var(--c-text-sec); vertical-align: top; }
td:first-child {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  color: var(--c-green-neon);
  white-space: nowrap;
}

/* ── 14. PROS AND CONS ── */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
  margin-top: var(--sp-3);
}
@media (min-width: 640px) { .pros-cons-grid { grid-template-columns: 1fr 1fr; } }
.pros-card {
  background: var(--c-pos-bg);
  border: 1px solid var(--c-pos-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-4);
}
.cons-card {
  background: var(--c-neg-bg);
  border: 1px solid var(--c-neg-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-4);
}
.pros-card h3 { color: #4ade80; font-size: 1rem; margin-bottom: var(--sp-2); }
.cons-card h3 { color: #fb923c; font-size: 1rem; margin-bottom: var(--sp-2); }
.pros-card ul, .cons-card ul { list-style: none; padding: 0; }
.pros-card li, .cons-card li {
  padding-left: 1.6em;
  position: relative;
  margin-bottom: 0.6em;
  font-size: 0.93rem;
  color: var(--c-text-sec);
}
.pros-card li::before { content: '✓'; position: absolute; left: 0; color: #4ade80; font-weight: 700; }
.cons-card li::before { content: '✗'; position: absolute; left: 0; color: #fb923c; font-weight: 700; }

/* ── 15. NUMBERED STEPS ── */
.steps-list {
  list-style: none;
  padding: 0;
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.steps-list li {
  display: flex;
  gap: var(--sp-2);
  align-items: flex-start;
  counter-increment: steps;
  padding: var(--sp-2) var(--sp-3);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  transition: border-color var(--t), background var(--t);
}
.steps-list li:hover {
  border-color: var(--c-green-border);
  background: var(--c-surface-alt);
}
.steps-list li::before {
  content: counter(steps);
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--c-green-neon);
  color: #04080a;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 0 10px var(--c-green-glow);
  margin-top: 0.1em;
}

/* ── 16. FAQ ACCORDION ── */
.faq-section { padding: var(--sp-6) 0; }
.faq-list { display: flex; flex-direction: column; gap: 0.5rem; margin-top: var(--sp-3); }
.faq-item {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t);
}
.faq-item:hover, .faq-item.open {
  border-color: var(--c-gold-border);
  box-shadow: 0 0 16px rgba(232,192,48,0.06);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-2) var(--sp-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  text-align: left;
  color: var(--c-text);
  font-family: var(--f-display);
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color var(--t);
}
.faq-question:hover, .faq-item.open .faq-question { color: var(--c-gold-bright); }
.faq-number {
  font-family: var(--f-display);
  font-size: 0.72rem;
  font-weight: 700;
  color: #04080a;
  background: var(--c-green-neon);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--c-green-glow);
}
.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--c-gold-border-s);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--c-gold);
  font-size: 0.82rem;
  font-weight: 700;
  transition: transform var(--t), background var(--t);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--c-gold);
  color: #04080a;
  border-color: var(--c-gold);
  box-shadow: 0 0 8px var(--c-gold-glow);
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner {
  padding: 0 var(--sp-3) var(--sp-3) calc(var(--sp-3) + 26px + var(--sp-2));
  color: var(--c-text-sec);
  font-size: 0.95rem;
  line-height: 1.8;
  font-family: var(--f-body);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

/* ── 17. SAFETY SIGNALS GRID ── */
.safety-signals {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-2);
  margin: var(--sp-3) 0;
}
@media (min-width: 640px) { .safety-signals { grid-template-columns: 1fr 1fr; } }
.safety-item {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: var(--sp-2) var(--sp-3);
  display: flex;
  gap: var(--sp-2);
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--c-text-sec);
  transition: border-color var(--t);
}
.safety-item:hover { border-color: var(--c-green-border); }
.safety-item-icon {
  color: var(--c-green-neon);
  flex-shrink: 0;
  margin-top: 0.1em;
}
.safety-item-icon svg { width: 16px; height: 16px; fill: currentColor; display: block; }

/* ── 18. LEGIT SIGNALS GRID ── */
.legit-signals {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-2);
  margin: var(--sp-3) 0;
}
@media (min-width: 640px) { .legit-signals { grid-template-columns: 1fr 1fr 1fr; } }
.legit-signal {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: var(--sp-2) var(--sp-3);
  text-align: center;
  transition: border-color var(--t), background var(--t);
}
.legit-signal:hover {
  border-color: var(--c-gold-border);
  background: var(--c-surface-alt);
}
.legit-signal-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--c-green-neon);
  box-shadow: 0 0 8px var(--c-green-glow);
  margin: 0 auto var(--sp-1);
}
.legit-signal-label {
  font-family: var(--f-display);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text-sec);
}

/* ── 19. RESPONSIBLE GAMBLING BOX ── */
.rg-box {
  background: linear-gradient(135deg, rgba(0,210,106,0.07), rgba(4,8,10,0.3));
  border: 1px solid var(--c-pos-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-4);
  margin: var(--sp-3) 0;
}
.rg-box h3 { color: #4ade80; margin-bottom: var(--sp-2); }

/* ── 20. WHO CARDS ── */
.who-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
}
@media (min-width: 640px) { .who-grid { grid-template-columns: 1fr 1fr; } }
.who-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-4);
}
.who-card.positive { border-color: var(--c-pos-border); }
.who-card.negative { border-color: var(--c-neg-border); }
.who-card h3 { font-size: 1rem; margin-bottom: var(--sp-2); }
.who-card.positive h3 { color: #4ade80; }
.who-card.negative h3 { color: #fb923c; }
.who-card ul { list-style: none; padding: 0; }
.who-card li { padding-left: 1.5em; position: relative; margin-bottom: 0.55em; font-size: 0.92rem; color: var(--c-text-sec); }
.who-card.positive li::before { content: '✓'; position: absolute; left: 0; color: #4ade80; font-weight: 700; }
.who-card.negative li::before { content: '✗'; position: absolute; left: 0; color: #fb923c; font-weight: 700; }

/* ── 21. PAYMENT COLUMNS ── */
.payment-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
  margin: var(--sp-3) 0;
}
@media (min-width: 640px) { .payment-cols { grid-template-columns: 1fr 1fr; } }
.payment-col {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-3);
  transition: border-color var(--t);
}
.payment-col:hover { border-color: var(--c-gold-border); }
.payment-col h4 {
  font-family: var(--f-display);
  font-size: 0.82rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--sp-2);
}

/* ── 22. VERDICT BOX ── */
.verdict-section {
  background: linear-gradient(135deg, var(--c-surface), var(--c-felt));
  border: 1px solid var(--c-gold-border-s);
  border-radius: var(--radius-xl);
  padding: var(--sp-5) var(--sp-4);
  margin: var(--sp-5) 0;
  position: relative;
  overflow: hidden;
}
.verdict-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-green-neon), var(--c-gold), var(--c-green-neon));
}
.verdict-section-wrap {
  background: var(--c-bg-alt);
  padding: var(--sp-5) 0;
  border-bottom: 1px solid var(--c-border);
}

/* ── 23. FOOTER ── */
.site-footer {
  background: #030607;
  border-top: 1px solid var(--c-green-border);
  padding: var(--sp-6) 0 var(--sp-4);
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--c-green-dim), var(--c-green-neon), var(--c-gold), var(--c-green-neon), var(--c-green-dim));
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
  margin-bottom: var(--sp-5);
}
@media (min-width: 768px) { .footer-top { grid-template-columns: 2fr 1fr 1fr; } }

.footer-brand .logo { margin-bottom: var(--sp-2); }
.footer-brand p { font-size: 0.87rem; color: var(--c-text-muted); line-height: 1.7; }

/* Social media icons in footer */
.footer-social {
  display: flex;
  gap: 0.65rem;
  margin-top: var(--sp-2);
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--c-border-strong);
  color: var(--c-text-muted);
  transition: all var(--t);
}
.footer-social a:hover {
  border-color: var(--c-green-border);
  color: var(--c-green-neon);
  background: var(--c-green-pale);
  box-shadow: 0 0 10px var(--c-green-glow);
}
.footer-social svg { width: 15px; height: 15px; fill: currentColor; display: block; }

.footer-links h4 {
  font-family: var(--f-display);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--sp-2);
}
.footer-links ul { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.5em; }
.footer-links a { font-size: 0.87rem; color: var(--c-text-muted); transition: color var(--t); }
.footer-links a:hover { color: var(--c-green-neon); }

.footer-cta-wrap {
  text-align: center;
  padding: var(--sp-4) 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  margin-bottom: var(--sp-4);
}
.footer-cta-wrap p { font-size: 0.87rem; color: var(--c-text-muted); margin-bottom: var(--sp-2); }

.footer-disclaimer {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  line-height: 1.7;
  text-align: center;
  padding-top: var(--sp-3);
  border-top: 1px solid var(--c-border);
}
.footer-disclaimer em { font-style: italic; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  padding-top: var(--sp-3);
  font-size: 0.79rem;
  color: var(--c-text-muted);
}
.footer-bottom a { color: var(--c-text-muted); }
.footer-bottom a:hover { color: var(--c-gold); }

/* ── 24. UTILITY ── */
.text-green  { color: var(--c-green-neon); }
.text-gold   { color: var(--c-gold); }
.text-muted  { color: var(--c-text-muted); font-size: 0.87rem; }
.text-center { text-align: center; }
.mt-2 { margin-top: var(--sp-2); }
.mt-3 { margin-top: var(--sp-3); }

/* FAQ answer text must NOT inherit uppercase from h-elements */
.faq-answer p, .faq-answer ul, .faq-answer li {
  text-transform: none;
  letter-spacing: normal;
  font-family: var(--f-body);
  font-weight: 400;
}

/* ── 25. FADE-UP SCROLL ANIMATION ── */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── 26. RESPONSIVE ── */
@media (max-width: 639px) {
  .container, .container--wide { padding: 0 var(--sp-2); }
  .hero { min-height: 78vh; }
  .hero-title { font-size: 2.4rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-lg { width: 100%; max-width: 320px; text-align: center; }
  .cta-group { flex-direction: column; align-items: flex-start; }
  .section { padding: var(--sp-4) 0; }
  td { padding: 0.5rem 0.75rem; font-size: 0.84rem; }
  .faq-answer-inner { padding-left: var(--sp-3); }
  .hero-deco-1, .hero-deco-2 { display: none; }
  .top-banner { flex-wrap: wrap; gap: 0.5rem; }
  .top-banner-text { white-space: normal; font-size: 0.8rem; }
}

/* ── 27. REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
