/*
Theme Name: Darts Not On Gamstop
Theme URI: https://dartsnotongamstop.me.uk
Author: dartsnotongamstop.me.uk
Description: Casino affiliate theme for darts sites not on GamStop — transparent, forensic reviews.
Version: 1.0.0
Text Domain: dartsnotongamstop
*/

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

/* ======================================================
   CSS VARIABLES
====================================================== */
:root {
  --bg:          #F5F2EC;
  --bg-white:    #FFFFFF;
  --primary:     #1B3B2A;
  --primary-mid: #265139;
  --accent:      #D94F1E;
  --gold:        #E8A020;
  --text:        #1A1A1A;
  --text-mid:    #444444;
  --text-light:  #737373;
  --border:      #D8D4CC;
  --border-light:#EAE7E0;
  --green:       #1A7F37;
  --green-bg:    #EEF8F1;
  --red:         #C0392B;
  --red-bg:      #FDF2F1;
  --header-h:    68px;
  --max-w:       1280px;
  --fh:          'Space Grotesk', sans-serif;
  --fb:          'Inter', sans-serif;
}

/* ======================================================
   RESET & BASE
====================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--fb);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--fh);
  font-weight: 700;
  line-height: 1.15;
  text-align: left;
}
p { text-align: left; }
button { cursor: pointer; border: none; background: none; font-family: var(--fb); }

/* ======================================================
   LAYOUT UTILITIES
====================================================== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  width: 100%;
}
.section-spacing { padding: 64px 0; }
.bg-white  { background: var(--bg-white); }
.bg-primary { background: var(--primary); }

/* ======================================================
   BUTTONS
====================================================== */
.btn {
  display: inline-block;
  font-family: var(--fh);
  font-weight: 600;
  font-size: 14px;
  padding: 11px 26px;
  border-radius: 0;
  border: none;
  cursor: pointer;
  transition: opacity .15s, background .15s;
  text-align: center;
  text-decoration: none;
  letter-spacing: .3px;
}
.btn:hover { opacity: .88; text-decoration: none; }
.btn-primary  { background: var(--accent); color: #fff; }
.btn-outline  { background: transparent; border: 2px solid #fff; color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.1); }
.btn-ghost    { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.25); }

/* ======================================================
   STICKY HEADER
====================================================== */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--primary);
  border-bottom: 4px solid var(--accent);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.site-name {
  font-family: var(--fh);
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: -.2px;
  line-height: 1;
  white-space: nowrap;
}
.site-name em { font-style: normal; color: var(--gold); }
.site-name:hover { text-decoration: none; opacity: .9; }

/* Desktop nav */
#primary-nav ul { list-style: none; display: flex; gap: 2px; }
#primary-nav a {
  color: rgba(255,255,255,.82);
  font-family: var(--fh);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  display: block;
  text-decoration: none;
  transition: color .15s;
}
#primary-nav a:hover { color: #fff; text-decoration: none; }
#primary-nav .current-menu-item > a { color: var(--gold); }

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

/* Mobile nav */
#mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--primary);
  border-top: 1px solid rgba(255,255,255,.1);
  z-index: 999;
  padding: 8px 0 16px;
}
#mobile-nav.open { display: block; }
#mobile-nav ul { list-style: none; padding: 0 28px; }
#mobile-nav li { border-bottom: 1px solid rgba(255,255,255,.08); }
#mobile-nav a {
  display: block;
  padding: 15px 0;
  color: rgba(255,255,255,.88);
  font-family: var(--fh);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}
#mobile-nav a:hover { color: #fff; text-decoration: none; }

/* ======================================================
   HERO (HOMEPAGE)
====================================================== */
.hero {
  background: var(--primary);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 90px 28px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent);
}
/* grid pattern overlay */
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,.025) 0, rgba(255,255,255,.025) 1px, transparent 1px, transparent 48px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.025) 0, rgba(255,255,255,.025) 1px, transparent 1px, transparent 48px);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 920px; width: 100%; }
.hero-eyebrow {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--fh);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 6px 16px;
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(34px, 5.5vw, 62px);
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.08;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero .hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,.72);
  text-align: center;
  margin: 0 auto 36px;
  max-width: 640px;
  line-height: 1.6;
}
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.15);
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat .val {
  display: block;
  font-family: var(--fh);
  font-size: 30px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat .lbl {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,.52);
  text-transform: uppercase;
  letter-spacing: 1.1px;
  margin-top: 6px;
}

/* ======================================================
   SECTION LABEL
====================================================== */
.section-label {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--fh);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  padding: 5px 14px;
  margin-bottom: 16px;
}
.section-heading { font-size: clamp(22px, 3vw, 36px); margin-bottom: 10px; }
.section-sub { color: var(--text-light); font-size: 15px; margin-bottom: 32px; max-width: 680px; }

/* ======================================================
   CASINO GRID
====================================================== */
#casino-grid { padding: 64px 0; background: var(--bg); }
.casino-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 2px solid var(--border);
}
.casino-card {
  background: var(--bg-white);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
/* rank badge */
.casino-card-rank {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--bg);
  font-family: var(--fh);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-light);
  padding: 3px 8px;
  letter-spacing: .5px;
}
.casino-card-rank.gold { background: var(--gold); color: #fff; }

.casino-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.casino-logo-box {
  width: 80px; height: 52px;
  border: 1px solid var(--border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.casino-logo-box img {
  width: 100%; height: 100%;
  object-fit: contain;
}
.casino-logo-placeholder {
  width: 80px; height: 52px;
  border: 2px dashed var(--border);
  flex-shrink: 0;
}
.casino-card-name-wrap { flex: 1; min-width: 0; }
.casino-card-name {
  font-family: var(--fh);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.stars-row { display: flex; align-items: center; gap: 2px; margin-top: 4px; }
.stars-row .s { color: var(--gold); font-size: 13px; }
.stars-row .s.e { color: var(--border-light); }
.stars-row .rn { font-size: 12px; font-weight: 600; color: var(--text-light); margin-left: 4px; font-family: var(--fh); }

.casino-bonus-text {
  font-family: var(--fh);
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
  border-left: 3px solid var(--accent);
  padding-left: 10px;
}
.casino-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 12px;
}
.meta-pair { display: flex; flex-direction: column; }
.meta-lbl { font-size: 10px; text-transform: uppercase; letter-spacing: .6px; color: var(--text-light); }
.meta-val { font-size: 13px; font-weight: 600; font-family: var(--fh); }

.casino-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-bg);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  letter-spacing: .3px;
}
.casino-badge-pill::before {
  content: '✓';
  font-size: 11px;
}

.casino-card-cta { margin-top: auto; display: flex; flex-direction: column; gap: 8px; }
.btn-deposit {
  display: block;
  background: var(--accent);
  color: #fff;
  font-family: var(--fh);
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  padding: 13px 16px;
  text-decoration: none;
  letter-spacing: .3px;
  transition: opacity .15s;
}
.btn-deposit:hover { opacity: .88; text-decoration: none; }
.casino-terms { font-size: 10px; color: var(--text-light); line-height: 1.45; }

/* ======================================================
   PLUGIN HOOK CONTENT SECTIONS
====================================================== */
.content-section {
  background: var(--bg-white);
  border-top: 4px solid var(--accent);
  border-bottom: 4px solid var(--accent);
}
.content-section .container { padding-top: 48px; padding-bottom: 48px; }

/* ======================================================
   REVIEWS SECTION
====================================================== */
#casino-reviews { padding: 64px 0; background: var(--bg); }
.reviews-header {
  padding-bottom: 28px;
  margin-bottom: 48px;
  border-bottom: 3px solid var(--primary);
}
.reviews-header h2 { font-size: clamp(24px, 3.5vw, 40px); margin-bottom: 10px; }
.reviews-header p { color: var(--text-light); font-size: 16px; max-width: 620px; }

/* Review block */
.review-block {
  background: var(--bg-white);
  border: 2px solid var(--border);
  margin-bottom: 36px;
}
.review-topbar {
  background: var(--primary);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.review-logo-box {
  width: 90px; height: 54px;
  background: #fff;
  border: 2px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
}
.review-logo-box img { width: 100%; height: 100%; object-fit: contain; }
.review-logo-placeholder { width: 90px; height: 54px; border: 2px dashed rgba(255,255,255,.3); flex-shrink: 0; }
.review-name-stars { flex: 1; min-width: 0; }
.review-name-stars h3 { color: #fff; font-size: 20px; font-weight: 700; text-align: left; }
.review-stars-row { display: flex; align-items: center; gap: 2px; margin-top: 5px; }
.review-stars-row .s { color: var(--gold); font-size: 14px; }
.review-stars-row .s.e { color: rgba(255,255,255,.25); }
.review-stars-row .rn { color: rgba(255,255,255,.65); font-size: 13px; margin-left: 6px; font-family: var(--fh); }

.btn-visit {
  background: var(--accent);
  color: #fff;
  font-family: var(--fh);
  font-weight: 700;
  font-size: 13px;
  padding: 10px 20px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-block;
  letter-spacing: .3px;
  transition: opacity .15s;
}
.btn-visit:hover { opacity: .88; text-decoration: none; }

/* Screenshots */
.review-screenshots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
}
.screen-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.screen-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s;
}
.screen-wrap:hover img { transform: scale(1.04); }
.screen-placeholder {
  aspect-ratio: 16/9;
  border: 2px dashed var(--border);
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light);
  font-size: 13px;
}

/* Review body */
.review-body { padding: 26px 22px; }
.review-body p { margin-bottom: 16px; font-size: 15px; }
.review-body h4 { font-size: 17px; margin-bottom: 12px; margin-top: 20px; }
.review-placeholder {
  color: var(--text-light);
  font-style: italic;
  font-size: 14px;
  border-left: 3px solid var(--border);
  padding: 10px 16px;
  background: var(--bg);
}

/* Pros/Cons */
.pros-cons-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border-top: 2px solid var(--border);
}
.pros-col { background: var(--green-bg); padding: 18px 22px; }
.cons-col { background: var(--red-bg);   padding: 18px 22px; }
.pc-heading {
  font-family: var(--fh);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.pros-col .pc-heading { color: var(--green); }
.cons-col .pc-heading { color: var(--red);   }
.pc-list { list-style: none; }
.pc-list li {
  font-size: 14px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
  display: flex; gap: 9px; line-height: 1.45;
}
.pc-list li:last-child { border-bottom: none; }
.pc-list li::before { flex-shrink: 0; margin-top: 1px; font-weight: 700; }
.pros-col .pc-list li::before { content: '✓'; color: var(--green); }
.cons-col .pc-list li::before { content: '✗'; color: var(--red);   }

/* ======================================================
   FAQ SECTION
====================================================== */
#faq { background: var(--primary); padding: 64px 0; }
#faq h2 { color: #fff; font-size: clamp(24px, 3vw, 38px); margin-bottom: 40px; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,.14);
  padding: 26px 0;
}
.faq-item:first-of-type { border-top: 1px solid rgba(255,255,255,.14); }
.faq-q {
  font-family: var(--fh);
  font-size: 17px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
}
.faq-a {
  color: rgba(255,255,255,.78);
  font-size: 15px;
  line-height: 1.75;
  max-width: 880px;
}

/* ======================================================
   AUTHOR BOX
====================================================== */
.author-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--bg-white);
  border: 2px solid var(--border);
  border-left: 5px solid var(--accent);
  padding: 28px;
  margin: 40px 0;
}
.author-img {
  width: 76px; height: 76px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--accent);
}
.author-img-placeholder {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
}
.author-info h4 { font-size: 17px; margin-bottom: 4px; }
.author-title { font-size: 13px; color: var(--accent); font-weight: 600; margin-bottom: 10px; display: block; font-family: var(--fh); }
.author-bio { font-size: 14px; color: var(--text-mid); line-height: 1.65; }

/* ======================================================
   FOOTER
====================================================== */
#site-footer { background: #0B1910; padding: 44px 0 24px; }
.footer-top {
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding-bottom: 28px;
  margin-bottom: 24px;
}
.footer-brand {
  font-family: var(--fh);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 14px;
}
.footer-brand em { font-style: normal; color: var(--gold); }
.footer-disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,.42);
  line-height: 1.75;
  max-width: 820px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,.38); }
.footer-18plus {
  font-size: 11px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.5);
  padding: 4px 10px;
}

/* ======================================================
   LIGHTBOX
====================================================== */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.93);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-img { max-width: 92vw; max-height: 90vh; object-fit: contain; }
.lightbox-close {
  position: fixed; top: 18px; right: 22px;
  color: #fff;
  font-size: 34px;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  font-family: var(--fh);
  font-weight: 300;
  z-index: 10000;
  opacity: .8;
  transition: opacity .15s;
}
.lightbox-close:hover { opacity: 1; }

/* ======================================================
   INNER PAGE HERO
====================================================== */
.inner-hero {
  background: var(--primary);
  min-height: 40vh;
  display: flex;
  align-items: center;
  padding: 60px 28px;
  border-bottom: 4px solid var(--accent);
}
.inner-hero-45 { min-height: 45vh; }
.inner-hero-inner { max-width: var(--max-w); margin: 0 auto; width: 100%; }
.inner-hero h1 { font-size: clamp(28px, 4.5vw, 54px); color: #fff; margin-bottom: 14px; }
.inner-hero p  { font-size: 18px; color: rgba(255,255,255,.68); max-width: 580px; }
.badge-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.ih-badge {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
}
.ih-badge.hi { background: var(--accent); border-color: var(--accent); }

/* ======================================================
   SECONDARY PAGE CONTENT
====================================================== */
.page-body { padding: 60px 0 80px; background: var(--bg); }
.page-body-inner { max-width: 960px; }
.entry-content { font-size: 16px; line-height: 1.75; }
.entry-content h2 { font-size: 26px; margin: 36px 0 16px; }
.entry-content h3 { font-size: 20px; margin: 28px 0 12px; }
.entry-content p  { margin-bottom: 16px; }
.entry-content ul, .entry-content ol { margin: 0 0 16px 22px; }
.entry-content li { margin-bottom: 7px; }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
  margin: 36px 0;
}
.team-card {
  background: var(--bg-white);
  border: 2px solid var(--border);
  padding: 24px 20px;
  text-align: center;
}
.team-img {
  width: 96px; height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
  margin: 0 auto 14px;
  display: block;
}
.team-card h4 { font-size: 15px; text-align: center; margin-bottom: 4px; }
.team-card .role { font-size: 13px; color: var(--accent); font-weight: 600; text-align: center; display: block; font-family: var(--fh); margin-bottom: 8px; }
.team-card p { font-size: 13px; color: var(--text-light); text-align: center; margin: 0; }

/* Criteria */
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin: 28px 0;
}
.criteria-card {
  background: var(--bg-white);
  border: 2px solid var(--border);
  border-top: 4px solid var(--accent);
  padding: 20px;
}
.criteria-card h4 { font-size: 15px; margin-bottom: 8px; }
.criteria-card p { font-size: 14px; color: var(--text-light); margin: 0; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: start;
}
.contact-form-card {
  background: var(--bg-white);
  border: 2px solid var(--border);
  padding: 30px;
}
.contact-form-card h3 {
  font-size: 20px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border-light);
}
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-family: var(--fh);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 7px;
  color: var(--text-mid);
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid var(--border);
  border-radius: 0;
  font-family: var(--fb);
  font-size: 15px;
  background: var(--bg);
  color: var(--text);
  outline: none;
  transition: border-color .15s;
  appearance: none;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { border-color: var(--accent); }
.form-row textarea { min-height: 130px; resize: vertical; }
.form-row select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23737373' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

.contact-info-card {
  background: var(--primary);
  padding: 28px;
}
.contact-info-card h3 { color: var(--gold); font-size: 18px; margin-bottom: 22px; }
.ci-item { display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start; }
.ci-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.ci-item dt { font-size: 11px; color: rgba(255,255,255,.48); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 2px; }
.ci-item dd { font-size: 14px; color: rgba(255,255,255,.82); font-weight: 500; }

/* Toast */
.toast {
  position: fixed; bottom: 24px; right: 24px;
  background: var(--green);
  color: #fff;
  font-family: var(--fh);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 22px;
  z-index: 9999;
  display: none;
  border-left: 4px solid #0D5E22;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.toast.show { display: block; }

/* ======================================================
   RESPONSIVE
====================================================== */
@media (max-width: 1024px) {
  .casino-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  #primary-nav { display: none; }
  .hamburger  { display: flex; }
  .casino-grid { grid-template-columns: repeat(2, 1fr); }
  .review-screenshots { grid-template-columns: 1fr; }
  .pros-cons-table { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .review-topbar { gap: 12px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .casino-grid { gap: 1px; }
  .casino-card { padding: 14px; }
  .hero { padding: 60px 16px; }
}
