/*
Theme Name: Darts Betting Not On GamStop
Theme URI: https://dartsbettingsitesnotongamstop.me.uk
Author: dartsbettingsitesnotongamstop.me.uk
Description: Casino affiliate theme for darts betting sites not on GamStop
Version: 1.0.0
License: GPL-2.0+
Text Domain: nokyc-darts
*/

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

/* ===== CSS VARIABLES ===== */
:root {
  --primary:       #0B2545;
  --primary-light: #1A3E6E;
  --accent:        #F4A012;
  --accent-dark:   #D4880A;
  --bg:            #F0F4F8;
  --surface:       #FFFFFF;
  --surface-alt:   #E6EDF5;
  --text:          #111827;
  --text-muted:    #64748B;
  --border:        #CBD5E1;
  --green:         #16A34A;
  --red:           #DC2626;
  --star:          #F59E0B;
  --max-width:     1280px;
  --font-main:     'Inter', sans-serif;
  --font-head:     'Space Grotesk', sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); }
img { max-width: 100%; display: block; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); font-weight: 700; line-height: 1.25; }
p { margin-bottom: 1rem; }
ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }
ul li, ol li { margin-bottom: 0.35rem; }

/* ===== UTILITIES ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; width: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 13px 28px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  border-radius: 0;
  transition: background 0.18s, color 0.18s;
  text-align: center;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); color: #fff; }
.btn-outline { background: transparent; color: var(--accent); border: 2px solid var(--accent); }
.btn-outline:hover { background: var(--accent); color: #fff; }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { background: var(--accent); color: #fff; }
.btn-deposit { background: var(--accent); color: #fff; font-size: 14px; padding: 11px 22px; width: 100%; display: block; }
.btn-deposit:hover { background: var(--accent-dark); color: #fff; }
.btn-visit {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 10px 22px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  border-radius: 0;
  white-space: nowrap;
}
.btn-visit:hover { background: var(--accent-dark); color: #fff; }

/* ===== STICKY HEADER ===== */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--primary);
  border-bottom: 3px solid var(--accent);
  transition: box-shadow 0.2s;
}
#site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.site-logo-link {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.3px;
  flex-shrink: 0;
}
.site-logo-link span { color: var(--accent); }
.site-logo-link:hover { color: var(--accent); }

/* Desktop nav */
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  transition: color 0.18s, background 0.18s;
  font-family: var(--font-head);
}
.main-nav a:hover,
.main-nav a.active { color: var(--accent); background: rgba(244,160,18,0.08); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  transition: all 0.25s;
}
.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: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--primary);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 12px 0;
  z-index: 999;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  color: rgba(255,255,255,0.88);
  padding: 12px 24px;
  font-weight: 600;
  font-family: var(--font-head);
  font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--accent); background: rgba(244,160,18,0.08); }

/* ===== HERO ===== */
.hero {
  background: var(--primary);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 60px 24px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 59px,
    rgba(255,255,255,0.03) 59px,
    rgba(255,255,255,0.03) 60px
  ),
  repeating-linear-gradient(
    90deg,
    transparent,
    transparent 59px,
    rgba(255,255,255,0.03) 59px,
    rgba(255,255,255,0.03) 60px
  );
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 860px; margin: 0 auto; width: 100%; }
.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: var(--font-head);
}
.hero h1 {
  font-size: clamp(30px, 5vw, 56px);
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.15;
  text-align: center;
}
.hero h1 span { color: var(--accent); }
.hero p {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.78);
  margin-bottom: 32px;
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat .stat-num {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  display: block;
}
.hero-stat .stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* Inner page hero */
.inner-hero {
  background: var(--primary);
  padding: 60px 24px;
  min-height: 40vh;
  display: flex;
  align-items: center;
}
.inner-hero.tall { min-height: 45vh; }
.inner-hero-inner { max-width: var(--max-width); margin: 0 auto; width: 100%; }
.inner-hero h1 {
  font-size: clamp(26px, 4vw, 44px);
  color: #fff;
  margin-bottom: 14px;
}
.inner-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 640px;
  margin-bottom: 24px;
}
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.badge-item {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-head);
}

/* ===== SECTION LAYOUT ===== */
.section { padding: 64px 0; }
.section-sm { padding: 40px 0; }
.section-dark { background: var(--primary); }
.section-alt { background: var(--surface-alt); }
.section-white { background: var(--surface); }

.section-title {
  font-size: clamp(22px, 3vw, 34px);
  color: var(--primary);
  margin-bottom: 10px;
}
.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 36px;
}
.section-head { margin-bottom: 40px; }

/* ===== CASINO GRID ===== */
#casino-grid { background: var(--bg); padding: 64px 0; }
.casino-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.casino-card {
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.casino-card:hover { border-color: var(--accent); box-shadow: 0 4px 20px rgba(11,37,69,0.12); }
.card-rank {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--primary);
  color: var(--accent);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 12px;
  z-index: 2;
}
.card-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-family: var(--font-head);
}
.card-logo-wrap {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  margin-top: 28px;
}
.card-logo-wrap img {
  max-height: 60px;
  max-width: 100%;
  object-fit: contain;
}
.card-logo-placeholder {
  width: 120px;
  height: 50px;
  border: 2px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--text-muted);
}
.card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.card-name {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
}
.stars { display: flex; gap: 2px; align-items: center; }
.stars .star { color: var(--star); font-size: 15px; }
.stars .star-empty { color: var(--border); font-size: 15px; }
.stars .rating-num { font-size: 13px; font-weight: 700; color: var(--text-muted); margin-left: 4px; }
.card-bonus {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  background: var(--surface-alt);
  padding: 8px 12px;
  border-left: 3px solid var(--accent);
}
.card-meta { display: flex; flex-direction: column; gap: 5px; }
.card-meta-item {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 4px;
}
.card-meta-item .meta-label { color: var(--text-muted); font-weight: 500; }
.card-meta-item .meta-value { font-weight: 600; color: var(--text); }
.card-footer { padding: 0 16px 16px; margin-top: auto; }
.card-terms { font-size: 10px; color: var(--text-muted); margin-top: 8px; text-align: center; }

/* ===== REVIEW SECTION ===== */
#casino-reviews { padding: 64px 0; background: var(--bg); }
.reviews-heading { margin-bottom: 40px; }
.review-block {
  background: var(--surface);
  border: 1px solid var(--border);
  margin-bottom: 40px;
  overflow: hidden;
}
.review-topbar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: var(--primary);
  flex-wrap: wrap;
}
.review-logo-wrap {
  width: 90px;
  height: 50px;
  flex-shrink: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}
.review-logo-wrap img { max-height: 38px; max-width: 80px; object-fit: contain; }
.review-logo-placeholder {
  width: 90px;
  height: 50px;
  border: 2px dashed rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
}
.review-info { flex: 1; min-width: 0; }
.review-name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.review-stars { display: flex; align-items: center; gap: 2px; }
.review-stars .star { color: var(--star); font-size: 14px; }
.review-stars .star-empty { color: rgba(255,255,255,0.3); font-size: 14px; }
.review-stars .rating-num { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.8); margin-left: 4px; }
.review-rank-badge {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* Screenshots */
.review-screenshots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
}
.screenshot-wrap {
  height: 200px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--surface-alt);
}
.screenshot-wrap:first-child { border-right: 1px solid var(--border); }
.screenshot-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.screenshot-wrap:hover img { transform: scale(1.04); }
.screenshot-placeholder {
  width: 100%;
  height: 200px;
  border: 2px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text-muted);
}
.screenshot-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,37,69,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.screenshot-overlay span {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s;
  background: rgba(0,0,0,0.5);
  padding: 6px 14px;
}
.screenshot-wrap:hover .screenshot-overlay { background: rgba(11,37,69,0.35); }
.screenshot-wrap:hover .screenshot-overlay span { opacity: 1; }

/* Review body */
.review-body { padding: 28px 28px 20px; }
.review-body-content { margin-bottom: 24px; line-height: 1.75; color: var(--text); }
.review-body-placeholder {
  padding: 20px;
  background: var(--surface-alt);
  border: 2px dashed var(--border);
  color: var(--text-muted);
  font-size: 14px;
  font-style: italic;
}

/* Pros/Cons */
.pros-cons-table { border-collapse: collapse; width: 100%; margin-bottom: 20px; }
.pros-cons-table th {
  padding: 10px 16px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.pros-cons-table th.pros-head { background: var(--green); color: #fff; }
.pros-cons-table th.cons-head { background: var(--red); color: #fff; }
.pros-cons-table td { padding: 9px 16px; font-size: 14px; vertical-align: top; border-bottom: 1px solid var(--border); }
.pros-cons-table td.pro { color: var(--green); }
.pros-cons-table td.pro::before { content: '✓ '; font-weight: 700; }
.pros-cons-table td.con { color: var(--red); }
.pros-cons-table td.con::before { content: '✗ '; font-weight: 700; }
.pros-cons-table tr:last-child td { border-bottom: none; }

/* ===== CONTENT SECTIONS (from plugin) ===== */
.content-section { padding: 48px 0; background: var(--surface); }
.section-spacing { margin: 0; }
.content-section .container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ===== FAQ ===== */
#faq { padding: 64px 0; background: var(--surface-alt); }
.faq-list { max-width: 100%; }
.faq-item { margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.faq-q {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.faq-a { font-size: 15px; color: var(--text); line-height: 1.75; }

/* ===== AUTHOR BOX ===== */
.author-box {
  background: var(--primary);
  padding: 40px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  margin: 48px 0 0;
}
.author-avatar {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  overflow: hidden;
  border: 3px solid var(--accent);
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-info { flex: 1; }
.author-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 6px;
}
.author-name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.author-bio { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.7; }

/* ===== FOOTER ===== */
#site-footer {
  background: var(--primary);
  border-top: 3px solid var(--accent);
  padding: 36px 0;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.footer-logo {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.footer-logo span { color: var(--accent); }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.55); }
.footer-disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  max-width: 680px;
  line-height: 1.6;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.1);
}

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.lightbox-overlay.active { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 90vh; object-fit: contain; cursor: default; }
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  font-weight: 300;
  background: none;
  border: none;
}

/* ===== ABOUT PAGE ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  text-align: left;
}
.team-photo { width: 100%; height: 220px; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-details { padding: 18px; }
.team-details h3 { font-family: var(--font-head); font-size: 16px; color: var(--primary); margin-bottom: 4px; }
.team-details .role { font-size: 13px; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.team-details p { font-size: 14px; color: var(--text-muted); margin-bottom: 0; }

/* ===== HOW WE RATE PAGE ===== */
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.criteria-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 24px;
  border-top: 3px solid var(--accent);
}
.criteria-num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 8px;
}
.criteria-title { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.criteria-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 0; line-height: 1.6; }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start; }
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px;
}
.contact-form-wrap h2 { font-family: var(--font-head); font-size: 22px; color: var(--primary); margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
  font-family: var(--font-head);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  background: var(--bg);
  font-family: var(--font-main);
  font-size: 14px;
  color: var(--text);
  border-radius: 0;
  outline: none;
  transition: border-color 0.18s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { height: 130px; resize: vertical; }
.form-submit-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 13px 32px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  border-radius: 0;
  transition: background 0.18s;
}
.form-submit-btn:hover { background: var(--accent-dark); }
.toast-msg {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  background: var(--green);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}
.toast-msg.show { display: block; }
.contact-info-box {
  background: var(--primary);
  padding: 28px;
  color: #fff;
}
.contact-info-box h3 { font-family: var(--font-head); font-size: 18px; color: #fff; margin-bottom: 18px; }
.contact-info-item { display: flex; gap: 12px; margin-bottom: 18px; }
.contact-info-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.contact-info-text .label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.8px; color: var(--accent); font-weight: 700; margin-bottom: 2px; }
.contact-info-text .value { font-size: 14px; color: rgba(255,255,255,0.82); }
.page-content-wrap { padding: 48px 0; background: var(--bg); }
.page-content-wrap .container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ===== PAGE CONTENT TYPOGRAPHY ===== */
.entry-content h2 { font-size: clamp(20px, 2.5vw, 28px); color: var(--primary); margin: 32px 0 14px; }
.entry-content h3 { font-size: clamp(17px, 2vw, 22px); color: var(--primary); margin: 24px 0 10px; }
.entry-content p { font-size: 15px; line-height: 1.78; margin-bottom: 16px; }
.entry-content ul, .entry-content ol { margin: 12px 0 16px 20px; }
.entry-content ul li, .entry-content ol li { font-size: 15px; margin-bottom: 6px; }
.entry-content a { color: var(--accent); text-decoration: underline; }
.entry-content strong { font-weight: 700; color: var(--text); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .casino-grid { grid-template-columns: repeat(2, 1fr); }
  .criteria-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .casino-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .review-screenshots { grid-template-columns: 1fr; }
  .screenshot-wrap:first-child { border-right: none; border-bottom: 1px solid var(--border); }
  .author-box { flex-direction: column; padding: 28px; }
  .hero-stats { gap: 20px; }
  .review-topbar { flex-direction: column; align-items: flex-start; }
  .btn-visit { align-self: flex-start; }
  .criteria-grid { grid-template-columns: 1fr 1fr; }
  .pros-cons-table { display: block; overflow-x: auto; }
}
@media (max-width: 480px) {
  .casino-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hero h1 { font-size: 26px; }
  .card-body { padding: 12px; }
  .criteria-grid { grid-template-columns: 1fr; }
  .review-body { padding: 18px 16px; }
  .author-box { padding: 20px; }
}
