/*
Theme Name: New Non Gamstop Casinos
Theme URI: https://newnongamstopcasinos.it.com
Author: newnongamstopcasinos.it.com
Description: Casino affiliate theme for New Non Gamstop Casinos
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: nokyc
*/

/* ─── GOOGLE FONTS ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700;800&display=swap');

/* ─── DESIGN TOKENS ────────────────────────────────────────── */
:root {
  --bg:          #F4EFE6;
  --bg-alt:      #FFFDF9;
  --surface:     #FFFFFF;
  --header-bg:   #0F1923;
  --footer-bg:   #0F1923;
  --primary:     #C8102E;
  --primary-dk:  #A00D25;
  --gold:        #C9A227;
  --gold-dk:     #A6821E;
  --text:        #111827;
  --text-muted:  #6B7280;
  --text-light:  #9CA3AF;
  --border:      #D1C9B8;
  --pros-bg:     #F0FAF2;
  --pros-head:   #166534;
  --cons-bg:     #FEF2F2;
  --cons-head:   #991B1B;
  --star:        #F59E0B;
  --badge-bg:    #C8102E;
  --badge-text:  #FFFFFF;
  --hero-overlay:#0F1923;
  --section-alt: #EDE7D9;

  --font-head:   'Space Grotesk', sans-serif;
  --font-body:   'Inter', sans-serif;

  --max-w:       1280px;
  --radius:      0px;
}

/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

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

/* ─── UTILITIES ────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
  width: 100%;
}

.section-spacing { padding-block: 72px; }
.section-spacing-sm { padding-block: 48px; }

.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: background 0.18s, transform 0.12s;
  text-align: center;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover { background: var(--primary-dk); transform: translateY(-1px); }

.btn-gold {
  background: var(--gold);
  color: #fff;
}
.btn-gold:hover { background: var(--gold-dk); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }

/* ─── HEADER ───────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--header-bg);
  border-bottom: 3px solid var(--primary);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
}

.site-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1.1;
}
.site-logo span { color: var(--gold); }

.main-nav { display: flex; align-items: center; gap: 4px; }

.main-nav a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: #CBD5E1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.main-nav a:hover,
.main-nav a.active {
  color: #fff;
  border-bottom-color: var(--gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  background: #fff;
  transition: transform 0.22s, opacity 0.22s;
}

.mobile-nav {
  display: none;
  background: var(--header-bg);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 24px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: #CBD5E1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.15s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--gold); }

/* ─── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 60vh;
  background: var(--hero-overlay);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--primary);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 48px,
      rgba(255,255,255,0.02) 48px,
      rgba(255,255,255,0.02) 49px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 48px,
      rgba(255,255,255,0.02) 48px,
      rgba(255,255,255,0.02) 49px
    );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin-inline: auto;
  padding: 48px 24px;
}

.hero-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  text-align: center;
}

.hero h1 span { color: var(--gold); }

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: #94A3B8;
  margin-bottom: 36px;
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}

.hero-cta-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Inner pages hero */
.inner-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--hero-overlay);
  border-bottom: 4px solid var(--primary);
  position: relative;
  overflow: hidden;
}
.inner-hero.hero-40 { min-height: 40vh; }
.inner-hero.hero-45 { min-height: 45vh; }

.inner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 48px,
      rgba(255,255,255,0.02) 48px,
      rgba(255,255,255,0.02) 49px
    );
  pointer-events: none;
}

.inner-hero-inner {
  position: relative;
  z-index: 2;
  padding: 56px 24px;
  max-width: var(--max-w);
  margin-inline: auto;
  width: 100%;
  text-align: center;
}

.inner-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 16px;
}

.inner-hero .hero-desc {
  color: #94A3B8;
  font-size: clamp(1rem, 2vw, 1.1rem);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 28px;
  text-align: center;
}

.badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

.hero-badge-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #E2E8F0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  padding: 8px 18px;
  text-transform: uppercase;
}
.hero-badge-item.gold { border-color: var(--gold); color: var(--gold); }

/* ─── SECTION HEADINGS ─────────────────────────────────────── */
.section-head {
  margin-bottom: 48px;
}
.section-head h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.section-head p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 640px;
}
.section-divider {
  width: 48px;
  height: 4px;
  background: var(--primary);
  margin-bottom: 16px;
}

/* ─── CASINO GRID ──────────────────────────────────────────── */
#casino-grid { background: var(--bg); }

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

.casino-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.18s, transform 0.15s;
}
.casino-card:hover {
  box-shadow: 0 8px 32px rgba(200,16,46,0.10);
  transform: translateY(-2px);
}

.card-rank-bar {
  background: var(--primary);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 14px; }

.card-logo-wrap {
  height: 64px;
  display: flex;
  align-items: center;
}
.card-logo-wrap img {
  max-height: 56px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}
.logo-placeholder {
  width: 160px;
  height: 56px;
  border: 2px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 12px;
}

.card-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
}

.card-stars { display: flex; align-items: center; gap: 6px; }
.stars { color: var(--star); font-size: 16px; letter-spacing: 1px; }
.rating-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}

.card-bonus {
  background: #FFF8E6;
  border-left: 3px solid var(--gold);
  padding: 10px 14px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}

.card-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.meta-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  font-weight: 600;
}
.meta-val {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  font-family: var(--font-head);
}

.card-badge {
  display: inline-block;
  background: #E8F5E9;
  color: #166534;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid #A7F3D0;
}

.card-footer { padding: 0 20px 20px; }

.card-cta {
  display: block;
  width: 100%;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px;
  text-align: center;
  transition: background 0.15s;
  border-radius: var(--radius);
}
.card-cta:hover { background: var(--primary-dk); }

.card-terms {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 8px;
  text-align: center;
}

/* ─── REVIEW BLOCKS ────────────────────────────────────────── */
#reviews { background: var(--bg-alt); }

.review-block {
  border: 1px solid var(--border);
  border-top: 4px solid var(--primary);
  background: var(--surface);
  margin-bottom: 48px;
}
.review-block:last-child { margin-bottom: 0; }

.review-topbar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  flex-wrap: wrap;
}

.review-logo-wrap {
  flex-shrink: 0;
  height: 52px;
  display: flex;
  align-items: center;
}
.review-logo-wrap img {
  max-height: 48px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.review-head-info { flex: 1; min-width: 180px; }
.review-head-info h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.review-cta {
  flex-shrink: 0;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 12px 24px;
  transition: background 0.15s;
}
.review-cta:hover { background: var(--primary-dk); }

.review-screenshots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
}
.review-screenshot-wrap {
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 16/9;
  background: #0F1923;
}
.review-screenshot-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.22s;
  display: block;
}
.review-screenshot-wrap:hover img { transform: scale(1.03); }
.screenshot-placeholder {
  width: 100%;
  height: 180px;
  border: 2px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 13px;
}
.ss-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.18s;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}
.review-screenshot-wrap:hover .ss-overlay { opacity: 1; }

.review-body { padding: 28px 24px; }

.review-content-text {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 28px;
}
.review-content-text p { margin-bottom: 1em; }
.review-content-text h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 1.5em 0 0.5em;
  color: var(--text);
}

.review-placeholder-text {
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.95rem;
  padding: 16px;
  border: 1px dashed var(--border);
  margin-bottom: 28px;
}

/* ─── PROS/CONS TABLE ──────────────────────────────────────── */
.pros-cons-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  margin-top: 8px;
}
.pros-col, .cons-col { }
.pros-col { border-right: 1px solid var(--border); }

.pros-head, .cons-head {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 16px;
}
.pros-head { background: var(--pros-head); color: #fff; }
.cons-head { background: var(--cons-head); color: #fff; }

.pros-list, .cons-list {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pros-item, .cons-item {
  font-size: 14px;
  color: var(--text);
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
}
.pros-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #166534;
  font-weight: 700;
}
.cons-item::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #991B1B;
  font-weight: 700;
}
.pros-empty, .cons-empty {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  padding: 12px 16px;
}

/* ─── FAQ ──────────────────────────────────────────────────── */
#faq { background: var(--section-alt); }

.faq-list { display: flex; flex-direction: column; gap: 32px; }
.faq-item {}
.faq-q {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 12px;
  padding-left: 16px;
  border-left: 4px solid var(--primary);
}
.faq-a {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.75;
  padding-left: 20px;
}

/* ─── AUTHOR BOX ───────────────────────────────────────────── */
#author-box { background: var(--bg); }

.author-card {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  border: 1px solid var(--border);
  border-left: 5px solid var(--gold);
  background: var(--surface);
  padding: 28px;
}
.author-img-wrap {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  overflow: hidden;
  border: 3px solid var(--gold);
}
.author-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.author-info {}
.author-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.author-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.author-bio {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ─── CONTENT SECTIONS (plugin injection) ──────────────────── */
.content-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.content-section .container { max-width: var(--max-w); margin-inline: auto; padding-inline: 24px; }
.content-section h2, .content-section h3 {
  font-family: var(--font-head);
  font-weight: 700;
  margin-bottom: 16px;
}
.content-section p { color: var(--text-muted); line-height: 1.75; margin-bottom: 1em; }

/* ─── INNER PAGE CONTENT ───────────────────────────────────── */
.page-content-wrap { background: var(--bg-alt); }
.page-content-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 72px 24px;
}
.page-content-inner h2 {
  font-size: 1.6rem;
  margin: 2em 0 0.75em;
}
.page-content-inner h3 {
  font-size: 1.25rem;
  margin: 1.5em 0 0.5em;
}
.page-content-inner p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.2em;
}
.page-content-inner ul, .page-content-inner ol {
  list-style: disc;
  padding-left: 24px;
  color: var(--text-muted);
  margin-bottom: 1.2em;
}
.page-content-inner ol { list-style: decimal; }

/* ─── ABOUT PAGE ───────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  overflow: hidden;
}
.team-photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.team-photo-placeholder {
  width: 100%;
  height: 200px;
  background: var(--section-alt);
  border: 2px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 13px;
}
.team-info { padding: 16px; }
.team-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}
.team-role {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  font-weight: 600;
}

/* ─── HOW WE RATE ──────────────────────────────────────────── */
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.criteria-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 24px;
}
.criteria-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}
.criteria-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
}
.criteria-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ─── CONTACT PAGE ─────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px;
}
.contact-form-wrap h2 {
  font-size: 1.4rem;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}

.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.form-control {
  display: block;
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  outline: none;
  transition: border-color 0.15s;
  appearance: none;
  -webkit-appearance: none;
}
.form-control:focus { border-color: var(--primary); }
textarea.form-control { min-height: 140px; resize: vertical; }
select.form-control { cursor: pointer; }

.form-submit { margin-top: 8px; }

.contact-info-box {
  background: var(--header-bg);
  color: #fff;
  padding: 32px;
  border-top: 3px solid var(--gold);
}
.contact-info-box h3 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.contact-info-item { margin-bottom: 20px; }
.contact-info-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 4px;
}
.contact-info-val {
  font-size: 14px;
  color: #CBD5E1;
  line-height: 1.5;
}

/* ─── TOAST ────────────────────────────────────────────────── */
.nokyc-toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  background: #166534;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  padding: 16px 28px;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transform: translateY(20px);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.nokyc-toast.show { opacity: 1; transform: translateY(0); }

/* ─── LIGHTBOX ─────────────────────────────────────────────── */
.nokyc-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.nokyc-lightbox.active { opacity: 1; pointer-events: all; }
.nokyc-lightbox img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 20px 80px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  font-family: var(--font-head);
  line-height: 1;
}

/* ─── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--footer-bg);
  border-top: 3px solid var(--primary);
  padding: 40px 24px;
}
.footer-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.footer-logo span { color: var(--gold); }
.footer-copy {
  font-size: 13px;
  color: #4B5563;
}
.footer-disclaimer {
  font-size: 12px;
  color: #374151;
  max-width: 800px;
  line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 16px;
  margin-top: 4px;
}

/* ─── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .casino-grid-wrap { grid-template-columns: repeat(2, 1fr); }
  .criteria-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .hero h1 { font-size: 2rem; }
  .review-topbar { gap: 12px; }
  .review-screenshots { grid-template-columns: 1fr; }
  .pros-cons-table { grid-template-columns: 1fr; }
  .pros-col { border-right: none; border-bottom: 1px solid var(--border); }
  .author-card { flex-direction: column; gap: 16px; }
}

@media (max-width: 640px) {
  .casino-grid-wrap { grid-template-columns: repeat(2, 1fr); }
  .criteria-grid { grid-template-columns: 1fr; }
  .card-meta { grid-template-columns: 1fr; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .section-spacing { padding-block: 48px; }
}

@media (max-width: 400px) {
  .casino-grid-wrap { grid-template-columns: 1fr; }
}
