/* ═══════════════════════════════════════════════════════
   MyNightGames.uk — Casino Affiliate Site Styles
   GEO: UK | Theme: ReviewTrust Dark + Gold
   ═══════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-primary: #0b1120;
  --bg-card: rgba(255,255,255,.04);
  --bg-card-hover: rgba(255,255,255,.06);
  --bg-header: rgba(11,17,32,.97);
  --bg-footer: #0b1120;
  --bg-input: rgba(255,255,255,.06);
  --gold: #e9b84a;
  --gold-light: #f0c85e;
  --gold-dark: #b89020;
  --text-primary: #f1f5fb;
  --text-secondary: rgba(255,255,255,.6);
  --text-muted: rgba(255,255,255,.35);
  --border: rgba(255,255,255,.08);
  --border-light: rgba(255,255,255,.12);
  --accent-green: #16a34a;
  --accent-green-light: #15803d;
  --accent-red: #ef4444;
  --accent-blue: #3b82f6;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 8px 32px rgba(0,0,0,.35);
  --max-w: 1160px;
  --transition: 0.2s ease;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 20% 10%, rgba(233,184,74,.05), transparent),
              radial-gradient(ellipse 50% 50% at 80% 90%, rgba(0,196,122,.04), transparent);
  pointer-events: none;
  z-index: 0;
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }

/* ═════════ TOP RESPONSIBILITY BAR ═════════ */
.top-bar {
  background: var(--bg-primary);
  color: var(--text-secondary);
  font-size: .68rem;
  padding: 7px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}
.top-bar strong { color: #fff; }
.top-bar a { color: rgba(255,255,255,.5); }
.top-bar a:hover { color: var(--gold); }
.top-bar-right { color: var(--text-muted); }

/* ═════════ HEADER ═════════ */
.site-header {
  background: var(--bg-header);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 20px;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}
.logo {
  font-family: Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -.02em;
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
.logo span { color: var(--text-primary); font-weight: 400; }

/* Navigation */
.main-nav { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: flex-end; flex-wrap: wrap; }
.main-nav a, .nav-dropdown-trigger {
  color: rgba(255,255,255,.55);
  font-size: .77rem;
  font-weight: 600;
  padding: 6px 9px;
  border-radius: 6px;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}
.main-nav a:hover, .main-nav a.active, .nav-dropdown-trigger:hover {
  color: var(--gold);
  background: rgba(233,184,74,.08);
}

/* Offer Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,.55);
}
.nav-dropdown-trigger::after {
  content: '▾';
  font-size: 10px;
  transition: transform var(--transition);
}
.nav-dropdown.open .nav-dropdown-trigger::after { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #111827;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px;
  display: none;
  box-shadow: var(--shadow);
  z-index: 100;
}
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  color: rgba(255,255,255,.55);
  font-size: .77rem;
  border-radius: 6px;
}
.nav-dropdown-menu a:hover, .nav-dropdown-menu a.active-offer {
  background: rgba(233,184,74,.08);
  color: var(--gold);
}

/* Country Flags */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
}
.lang-switcher button {
  background: none;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 20px;
  cursor: pointer;
  padding: 2px 4px;
  line-height: 1;
  transition: all var(--transition);
}
.lang-switcher button:hover, .lang-switcher button.active-lang {
  border-color: var(--gold);
  background: rgba(233,184,74,.08);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.6);
  font-size: 1rem;
  cursor: pointer;
  padding: 7px 10px;
  border-radius: 7px;
}

/* ═════════ HERO / SEO BLOCK ═════════ */
.hero-seo {
  background: linear-gradient(135deg, #0b1120 0%, #111827 50%, #0f1e40 100%);
  padding: 48px 20px 40px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.hero-seo > * {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}
.hero-seo h1 {
  font-family: Georgia, serif;
  font-size: clamp(1.7rem, 4vw, 2.9rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.1;
  letter-spacing: -.02em;
}
.hero-seo h1 span { color: var(--gold); }
.seo-text {
  font-size: .95rem;
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.72;
  margin-bottom: 22px;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
}
.seo-text h2 {
  font-family: Georgia, serif;
  color: var(--text-primary);
  font-size: 1.1rem;
  margin: 16px 0 8px;
}
.seo-text p { margin-bottom: 12px; }
.seo-text ul { margin: 8px 0 12px; list-style: none; }
.seo-text li {
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .73rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
}
.seo-text li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.07);
  border: 1px solid var(--border-light);
  padding: 6px 12px;
  border-radius: 7px;
  font-size: .73rem;
}

/* ═════════ CASINO ROW (label grid format) ═════════ */
.c-row {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 52px 110px 1fr auto auto;
  align-items: center;
  transition: all .2s;
  position: relative;
}
.c-row:hover {
  border-color: rgba(233,184,74,.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
}
.c-row.top {
  border-color: rgba(233,184,74,.4);
  border-width: 2px;
  background: rgba(233,184,74,.04);
}
.c-row.top::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #e9b84a, #b89020);
}
.cr-rank {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  align-self: stretch;
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 1.2rem;
}
.r1 { color: #e9b84a; }
.r2 { color: #94a3b8; }
.r3 { color: #b87333; }
.cr-logo {
  width: 110px;
  padding: 13px 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,.08);
  align-self: stretch;
}
.lbox {
  width: 86px;
  height: 52px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.1);
}
.lbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 7px;
}
.cr-bonus {
  padding: 13px 18px;
  flex: 1;
  border-right: 1px solid rgba(255,255,255,.08);
  align-self: stretch;
  display: flex;
  align-items: center;
}
.btext {
  font-weight: 700;
  font-size: 1rem;
  color: #00c47a;
  font-family: Georgia, serif;
}
.bsub {
  font-size: .72rem;
  color: rgba(255,255,255,.35);
  margin-top: 3px;
}
.cr-acts {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 14px;
}
.cr-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  align-self: stretch;
  border-left: 1px solid rgba(255,255,255,.08);
  min-width: 62px;
}
.snum {
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: #e9b84a;
  line-height: 1;
}
.sstars {
  color: #e9b84a;
  font-size: .65rem;
  margin-top: 2px;
  letter-spacing: 1px;
}
.slbl {
  font-size: .58rem;
  color: rgba(255,255,255,.3);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 2px;
}
@media (max-width: 860px) {
  .c-row { grid-template-columns: 38px 86px 1fr; }
  .cr-acts { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.08); padding: 10px 12px; }
  .cr-score { display: none; }
}
@media (max-width: 540px) {
  .cr-logo { width: 86px; }
  .lbox { width: 70px; height: 42px; }
}

/* ═════════ OFFERS LISTING ═════════ */
.offers-section { padding: 36px 0 40px; }
.offers-section-title {
  font-family: Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.offers-section-title .badge {
  background: rgba(0,196,122,.1);
  border: 1px solid rgba(0,196,122,.25);
  color: #00c47a;
  font-size: .67rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  letter-spacing: .06em;
}

.offer-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  margin-bottom: 10px;
  transition: all var(--transition);
  position: relative;
}
.offer-card:hover {
  border-color: rgba(233,184,74,.3);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.offer-card:first-of-type {
  border-color: rgba(233,184,74,.4);
  border-width: 2px;
  background: rgba(233,184,74,.04);
}
.offer-card:first-of-type::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #e9b84a, #b89020);
}

.offer-logo-wrap {
  width: 110px;
  padding: 13px 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border);
  align-self: stretch;
}
.offer-logo {
  width: 86px;
  height: 52px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .75rem;
  color: #fff;
  text-align: center;
  line-height: 1.25;
  background: linear-gradient(135deg, #1a2640, #2a3458);
  border: 1px solid rgba(255,255,255,.1);
}

.offer-bonus {
  padding: 13px 18px;
  flex: 1;
  border-right: 1px solid var(--border);
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
}
.offer-bonus-text {
  font-family: Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: #00c47a;
  line-height: 1.3;
}
.offer-bonus-sub {
  font-size: .72rem;
  color: var(--text-muted);
  margin-top: 3px;
}
.offer-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: Georgia, serif;
  font-size: .85rem;
  color: var(--gold);
  margin-top: 2px;
}

.offer-btns {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 13px 14px;
}

/* Buttons */
.btn-offer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 17px;
  background: linear-gradient(135deg, var(--accent-green-light), var(--accent-green));
  color: #fff;
  font-weight: 700;
  font-size: .79rem;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}
.btn-offer:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,196,122,.4);
  color: #fff;
}

.btn-review, .btn-rev {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.6);
  font-weight: 600;
  font-size: .79rem;
  border: 1px solid var(--border-light);
  border-radius: 7px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  font-family: inherit;
}
.btn-review:hover, .btn-rev:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ═════════ REVIEW VIEW ═════════ */
.review-section { display: none; padding: 30px 0 50px; }
.review-section.active { display: block; }

.review-top {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.review-logo {
  width: 86px;
  height: 52px;
  background: linear-gradient(135deg, #1a2640, #2a3458);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .75rem;
  color: #fff;
  text-align: center;
  border: 1px solid rgba(255,255,255,.1);
  flex-shrink: 0;
}
.review-info { flex: 1; }
.review-info h1 {
  font-family: Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.review-bonus-tag {
  display: inline-block;
  background: rgba(0,196,122,.1);
  color: #00c47a;
  padding: 6px 16px;
  border-radius: 20px;
  font-family: Georgia, serif;
  font-size: .88rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.review-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  color: var(--text-secondary);
  font-size: .88rem;
  line-height: 1.85;
}
.review-content h2 {
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold);
  margin: 30px 0 10px;
  padding-left: 11px;
  border-left: 3px solid var(--gold);
}
.review-content h2:first-child { margin-top: 0; }
.review-content h3 {
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: .97rem;
  color: var(--text-primary);
  margin: 18px 0 7px;
}
.review-content p { margin-bottom: 12px; }
.review-content ul, .review-content ol { margin: 8px 0 14px; list-style: none; }
.review-content li {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 6px;
  line-height: 1.6;
}
.review-content li::before {
  content: '→';
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 700;
}
.review-back {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-weight: 600;
  cursor: pointer;
  background: none;
  border: none;
  font-size: .88rem;
  font-family: inherit;
  transition: color var(--transition);
}
.review-back:hover { color: var(--gold-light); }

/* ═════════ REGULATORY ═════════ */
.regulatory-section {
  max-width: var(--max-w);
  margin: 40px auto 0;
  padding: 0 20px;
}
.regulatory-icons {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}
.regulatory-icons a {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 7px;
  padding: 7px 13px;
  font-size: .74rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--transition);
}
.regulatory-icons a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.regulatory-text {
  font-size: .72rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 12px auto 0;
  line-height: 1.6;
  text-align: center;
}

/* ═════════ TRUST BAR ═════════ */
.trust-bar {
  background: rgba(5,10,22,.95);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 20px;
  margin-top: 48px;
}
.trust-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-bar-inner .tbi {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: .72;
  transition: opacity var(--transition);
  text-decoration: none;
  flex-shrink: 0;
}
.trust-bar-inner .tbi:hover { opacity: 1; }
.tbi-18 {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #c0392b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .82rem;
  color: #fff;
  flex-shrink: 0;
}
.tbi-ga {
  font-size: .95rem;
  font-weight: 700;
  color: rgba(255,255,255,.72);
  letter-spacing: -.01em;
}
.tbi-div {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}
@media(max-width:680px){.trust-bar-inner{gap:16px}.tbi-div{display:none}}

/* ═════════ FOOTER ═════════ */
.site-footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--border);
  margin-top: 56px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 36px 20px 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 32px;
  align-items: start;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-brand .logo { margin-bottom: 8px; }
.footer-brand p {
  color: var(--text-muted);
  font-size: .74rem;
  line-height: 1.7;
}
.footer-links h4 {
  color: rgba(255,255,255,.5);
  font-size: .73rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.footer-links a {
  display: block;
  color: rgba(255,255,255,.4);
  font-size: .77rem;
  font-weight: 600;
  padding: 3px 0;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  font-size: .68rem;
  color: rgba(255,255,255,.22);
}
.footer-bottom a { color: rgba(255,255,255,.22); }
.footer-bottom a:hover { color: var(--gold); }

/* ═════════ STATIC PAGES ═════════ */
.page-content {
  padding: 48px 0 60px;
}
.page-content h1 {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-primary);
}
.page-body {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  color: var(--text-secondary);
  font-size: .88rem;
  line-height: 1.85;
}
.page-body h2 {
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold);
  margin: 30px 0 10px;
  padding-left: 11px;
  border-left: 3px solid var(--gold);
}
.page-body h2:first-child { margin-top: 0; }
.page-body h3 {
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: .97rem;
  color: var(--text-primary);
  margin: 18px 0 7px;
}
.page-body p { margin-bottom: 12px; }
.page-body ul, .page-body ol { margin: 8px 0 14px; list-style: none; }
.page-body li {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 5px;
  line-height: 1.6;
}
.page-body li::before {
  content: '→';
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 700;
}
.page-body a { color: var(--gold); }

/* ═════════ CONTACT FORM ═════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: 7px;
  color: var(--text-primary);
  font-size: .88rem;
  font-family: inherit;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--accent-green-light), var(--accent-green));
  color: #fff;
  font-weight: 700;
  font-size: .88rem;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  font-family: inherit;
  transition: all var(--transition);
  text-transform: uppercase;
  width: fit-content;
}
.btn-submit:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,196,122,.4); }

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.contact-info-card h3 {
  font-family: Georgia, serif;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--text-secondary);
  font-size: .82rem;
}
.contact-detail .icon {
  font-size: 18px;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

/* ═════════ THANK YOU ═════════ */
.thankyou-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  padding: 40px 20px;
}
.thankyou-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
  max-width: 500px;
}
.thankyou-icon { font-size: 64px; margin-bottom: 20px; }
.thankyou-box h1 { font-family: Georgia, serif; font-size: 1.25rem; margin-bottom: 12px; }
.thankyou-box p { color: var(--text-secondary); margin-bottom: 24px; font-size: .88rem; }

/* ═════════ ERROR PAGES ═════════ */
.error-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  padding: 40px 20px;
}
.error-box { max-width: 500px; }
.error-code {
  font-family: Georgia, serif;
  font-size: 5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}
.error-box h1 { font-family: Georgia, serif; font-size: 1.25rem; margin-bottom: 12px; }
.error-box p { color: var(--text-secondary); margin-bottom: 28px; font-size: .88rem; }
.btn-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--accent-green-light), var(--accent-green));
  color: #fff;
  font-weight: 700;
  font-size: .88rem;
  border-radius: 7px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all var(--transition);
}
.btn-home:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,196,122,.4); color: #fff; }

/* 403 standalone */
.error-standalone {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-primary);
  padding: 40px 20px;
}

/* ═════════ AGE GATE ═════════ */
.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 16px;
}
.age-gate-box {
  background: #111827;
  border: 1px solid rgba(233,184,74,.3);
  border-radius: 20px;
  max-width: 440px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.7);
  text-align: left;
}
.age-gate-header {
  background: linear-gradient(135deg, #1a2640, rgba(26,38,64,.9));
  padding: 26px 26px 20px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.age-gate-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(233,184,74,.12);
  border: 2px solid rgba(233,184,74,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--gold);
}
.age-gate-box h2 {
  font-family: Georgia, serif;
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 5px;
}
.age-gate-box .age-sub { font-size: .82rem; color: #94a3b8; }
.age-gate-body {
  padding: 20px 26px 24px;
}
.age-gate-body ul {
  list-style: none;
  margin-bottom: 16px;
}
.age-gate-body li {
  font-size: .82rem;
  color: #94a3b8;
  padding: 4px 0;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.age-gate-body li span { color: var(--gold); font-weight: 700; }
.age-check-label {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: .81rem;
  color: #94a3b8;
  margin-bottom: 18px;
  cursor: pointer;
}
.age-check-label input {
  margin-top: 2px;
  accent-color: var(--gold);
  transform: scale(1.2);
}
.age-check-label a { color: var(--gold); }
.age-btns { display: flex; gap: 10px; }
.age-btns button {
  flex: 1;
  border: none;
  border-radius: 9px;
  padding: 12px;
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: all var(--transition);
}
.btn-age-yes {
  background: linear-gradient(135deg, var(--accent-green-light), var(--accent-green));
  color: #fff;
}
.btn-age-yes:hover { box-shadow: 0 4px 16px rgba(0,196,122,.4); }
.btn-age-yes:disabled { opacity: .5; cursor: not-allowed; }
.btn-age-no {
  background: rgba(255,255,255,.06);
  color: #94a3b8;
  border: 1px solid rgba(255,255,255,.1);
}

/* ═════════ BREADCRUMB ═════════ */
.breadcrumb {
  padding: 16px 0 0;
  font-size: .72rem;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--text-muted); margin: 0 6px; }
.breadcrumb .current { color: var(--text-secondary); }

/* ═════════ COOKIE BANNER ═════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 2px solid var(--gold);
  padding: 13px 20px;
  z-index: 500;
  display: none;
  box-shadow: 0 -4px 20px rgba(0,0,0,.12);
}
.cookie-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 13px;
  flex-wrap: wrap;
}
.cookie-inner p { color: #475569; font-size: .78rem; flex: 1; min-width: 200px; line-height: 1.6; }
.cookie-inner a { color: var(--bg-primary); text-decoration: underline; }
.btn-cookie {
  padding: 8px 18px;
  background: var(--bg-primary);
  color: #fff;
  font-weight: 700;
  font-size: .77rem;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
}

/* ═════════ RESPONSIVE ═════════ */
@media (max-width: 860px) {
  .offer-card {
    grid-template-columns: 86px 1fr;
  }
  .offer-btns {
    grid-column: 1 / -1;
    border-top: 1px solid var(--border);
    padding: 10px 12px;
  }
  .review-top { flex-direction: column; text-align: center; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex !important; }
  .main-nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11,17,32,.99);
    z-index: 999;
    padding: 20px;
    gap: 8px;
    overflow-y: auto;
  }
  .main-nav.mobile-open a {
    font-size: .95rem;
    font-weight: 600;
    color: rgba(255,255,255,.6);
    padding: 13px 16px;
    border-radius: 8px;
    border: 1px solid var(--border);
  }
  .main-nav.mobile-open a:hover {
    color: var(--gold);
    border-color: rgba(233,184,74,.3);
  }
  .main-nav.mobile-open .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 16px;
  }
  .hero-seo h1 { font-size: 1.5rem; }
  .review-info h1 { font-size: 1.1rem; }
  .error-code { font-size: 4rem; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 540px) {
  .offer-logo-wrap { width: 86px; }
  .offer-logo { width: 70px; height: 42px; font-size: .68rem; }
}

@media (max-width: 480px) {
  .offer-btns { flex-direction: column; width: 100%; }
  .btn-offer, .btn-review { width: 100%; }
  .age-gate-box { max-width: 100%; }
  .age-gate-header { padding: 20px 18px 16px; }
  .age-gate-body { padding: 16px 18px 20px; }
}

/* FAQ Section */
.faq-section{max-width:1160px;margin:40px auto 0;padding:0 20px}
.faq-section h2{font-family:Georgia,serif;font-weight:700;font-size:1.2rem;color:#f1f5fb;margin-bottom:14px}
.faq-item{background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.08);border-radius:10px;margin-bottom:8px;overflow:hidden}
.faq-q{width:100%;background:none;border:none;color:#f1f5fb;font-size:.88rem;font-weight:600;padding:15px 18px;text-align:left;cursor:pointer;display:flex;justify-content:space-between;align-items:center;gap:12px;transition:background .2s}
.faq-q:hover{background:rgba(233,184,74,.05)}
.faq-icon{color:#e9b84a;font-size:1.1rem;flex-shrink:0;transition:transform .3s}
.faq-item.open .faq-icon{transform:rotate(45deg)}
.faq-a{display:none;padding:0 18px 15px;font-size:.83rem;color:rgba(255,255,255,.55);line-height:1.75}
.faq-item.open .faq-a{display:block}