/* ============================================
   Best Non-GamStop Casinos UK - Global Styles
   ============================================ */

:root {
  --primary: #1e3a5f;
  --primary-dark: #0f2440;
  --primary-light: #2a4f7f;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --accent-light: #fbbf24;
  --success: #10b981;
  --success-dark: #059669;
  --danger: #ef4444;
  --warning: #f59e0b;
  --info: #3b82f6;
  --bg-body: #f8fafc;
  --bg-white: #ffffff;
  --bg-light: #f1f5f9;
  --bg-dark: #0f172a;
  --bg-card: #ffffff;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --text-white: #ffffff;
  --text-on-primary: #ffffff;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.04);
  --radius-sm: 6px;
  --radius: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --max-width: 1200px;
  --header-height: 70px;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --transition: all 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-sans);
  background: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent); }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 { line-height: 1.3; font-weight: 700; color: var(--text-primary); }
h1 { font-size: 2.25rem; }
h2 { font-size: 1.75rem; margin-top: 2rem; }
h3 { font-size: 1.375rem; margin-top: 1.5rem; }
h4 { font-size: 1.125rem; }

p { margin-bottom: 1rem; color: var(--text-secondary); }

ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: 0.5rem; color: var(--text-secondary); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  background: var(--primary-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.site-logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.site-logo:hover { color: var(--accent); }

.site-logo .logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary-dark);
  font-weight: 900;
}

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

.main-nav > li { list-style: none; position: relative; }

.main-nav > li > a {
  display: block;
  padding: 0 1rem;
  height: var(--header-height);
  line-height: var(--header-height);
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  transition: var(--transition);
}

.main-nav > li > a:hover,
.main-nav > li:hover > a { color: var(--accent); background: rgba(255,255,255,0.05); }

.main-nav > li > a.active { color: var(--accent); }

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-white);
  min-width: 260px;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all 0.2s ease;
  z-index: 1001;
  padding: 0.5rem 0;
  list-style: none;
  max-height: 400px;
  overflow-y: auto;
}

.main-nav > li:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }

.dropdown-menu li a {
  display: block;
  padding: 0.6rem 1.25rem;
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 400;
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.dropdown-menu li a:hover {
  background: var(--bg-light);
  color: var(--primary);
  border-left-color: var(--accent);
}

/* Has dropdown arrow */
.has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 6px;
  vertical-align: middle;
  transition: var(--transition);
}

.has-dropdown:hover > a::after { transform: rotate(180deg); }

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
  transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  padding: 3.5rem 0 3rem;
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(245,158,11,0.1) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(59,130,246,0.08) 0%, transparent 50%);
}

.hero-content { position: relative; z-index: 1; text-align: center; max-width: 800px; margin: 0 auto; }

.hero h1 { color: var(--text-white); font-size: 2.5rem; margin-bottom: 1rem; }
.hero h1 span { color: var(--accent); }

.hero-subtitle { font-size: 1.15rem; color: rgba(255,255,255,0.8); margin-bottom: 1.5rem; max-width: 650px; margin-left: auto; margin-right: auto; }

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  flex-wrap: wrap;
}

.hero-meta span { display: flex; align-items: center; gap: 0.35rem; }

/* ============================================
   AUTHOR BYLINE
   ============================================ */
.author-byline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 0;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.author-info { font-size: 0.85rem; }
.author-name { font-weight: 600; color: var(--text-primary); }
.author-name a { color: var(--primary); }
.author-name a:hover { color: var(--accent); }
.author-date { color: var(--text-muted); margin: 0; }
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: #ecfdf5;
  color: var(--success);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 0.5rem;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.content-section {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
}

.content-section h2 {
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--accent);
  margin-bottom: 1.25rem;
  margin-top: 0;
}

.content-section h3 { margin-top: 1.5rem; margin-bottom: 0.75rem; }

.content-section h2 + h3 { margin-top: 1rem; }

/* ============================================
   COMPARISON TABLE
   ============================================ */
.comparison-table-wrapper {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-white);
  font-size: 0.9rem;
}

.comparison-table thead { background: var(--primary-dark); }

.comparison-table th {
  padding: 1rem 0.75rem;
  text-align: left;
  color: var(--text-white);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.comparison-table td {
  padding: 1rem 0.75rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.comparison-table tbody tr:hover { background: var(--bg-light); }
.comparison-table tbody tr:last-child td { border-bottom: none; }

.table-rank {
  display: inline-flex;
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
}

.table-rank.gold { background: linear-gradient(135deg, #f59e0b, #d97706); }
.table-rank.silver { background: linear-gradient(135deg, #94a3b8, #64748b); }
.table-rank.bronze { background: linear-gradient(135deg, #d97706, #b45309); }

.table-casino-name {
  font-weight: 700;
  color: var(--text-primary);
  display: block;
}

.table-casino-name a { color: var(--text-primary); }
.table-casino-name a:hover { color: var(--primary); }

.table-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
  background: #eff6ff;
  color: var(--primary);
  margin-top: 4px;
}

.table-bonus { font-weight: 600; color: var(--success-dark); }

.table-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  color: var(--accent-dark);
}

.table-rating .stars { color: var(--accent); font-size: 0.8rem; }

/* ============================================
   CTA BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--primary-dark);
  box-shadow: 0 2px 8px rgba(245,158,11,0.3);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245,158,11,0.4);
  color: var(--primary-dark);
}

.btn-secondary {
  background: var(--primary);
  color: var(--text-white);
}

.btn-secondary:hover {
  background: var(--primary-dark);
  color: var(--text-white);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--text-white);
}

.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.8rem; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-table {
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  border-radius: var(--radius-sm);
}

/* ============================================
   REVIEW CARDS
   ============================================ */
.review-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.review-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.review-header-left { display: flex; align-items: center; gap: 1rem; }

.review-rank {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.review-title-area h3 {
  color: var(--text-white);
  margin: 0;
  font-size: 1.35rem;
}

.review-award {
  display: inline-block;
  background: rgba(245,158,11,0.2);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 4px;
}

.review-header-right { text-align: right; }

.review-bonus-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.5px; }

.review-bonus-value { font-size: 1.5rem; font-weight: 800; color: var(--accent); display: block; }

.review-body { padding: 2rem; }

/* Info Grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-item {
  text-align: center;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: var(--radius);
}

.info-label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; margin-bottom: 0.25rem; }

.info-value { font-size: 0.95rem; font-weight: 700; color: var(--text-primary); }

/* Pros & Cons */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 1.5rem 0; }

.pros-box, .cons-box {
  padding: 1.25rem;
  border-radius: var(--radius);
}

.pros-box { background: #f0fdf4; border: 1px solid #bbf7d0; }
.cons-box { background: #fef2f2; border: 1px solid #fecaca; }

.pros-box h4, .cons-box h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.pros-box h4 { color: var(--success-dark); }
.cons-box h4 { color: var(--danger); }

.pros-box ul, .cons-box ul { list-style: none; padding: 0; margin: 0; }

.pros-box li, .cons-box li {
  padding: 0.35rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.pros-box li::before { content: '\2713'; position: absolute; left: 0; color: var(--success); font-weight: 700; }
.cons-box li::before { content: '\2717'; position: absolute; left: 0; color: var(--danger); font-weight: 700; }

/* Review Text */
.review-text { margin: 1.5rem 0; }
.review-text p { margin-bottom: 0.75rem; }

/* Testing Experience */
.testing-box {
  background: linear-gradient(135deg, #eff6ff, #f0f9ff);
  border: 1px solid #bfdbfe;
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.testing-box h4 {
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.testing-box p { font-size: 0.9rem; }

/* Rating Breakdown */
.rating-breakdown {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

.rating-item { text-align: center; }

.rating-item .rating-score {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

.rating-item .rating-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.rating-bar {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin-top: 0.5rem;
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--success));
  border-radius: 2px;
}

/* Pull Quote */
.pull-quote {
  border-left: 4px solid var(--accent);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--bg-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text-primary);
  font-size: 1.05rem;
}

/* Review CTA */
.review-cta {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  margin-top: 1.5rem;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--bg-light);
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  font-family: var(--font-sans);
  transition: var(--transition);
}

.faq-question:hover { background: var(--border); }

.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-question::after { content: '\2212'; }

.faq-answer {
  padding: 0 1.25rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer { max-height: 500px; padding: 1rem 1.25rem; }

.faq-answer p { font-size: 0.9rem; margin-bottom: 0.5rem; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 3rem 0 0;
  margin-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p { font-size: 0.85rem; line-height: 1.6; color: rgba(255,255,255,0.5); margin-top: 0.75rem; }

.footer-col h4 {
  color: var(--text-white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; padding: 0; }

.footer-col li { margin-bottom: 0.5rem; }

.footer-col a {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

.footer-disclaimer {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--danger);
  color: white;
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.75rem;
  margin-right: 0.5rem;
  flex-shrink: 0;
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs {
  padding: 1rem 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.breadcrumbs a { color: var(--primary); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs span { margin: 0 0.4rem; }

/* ============================================
   SIDEBAR / TABLE OF CONTENTS
   ============================================ */
.page-layout { display: grid; grid-template-columns: 1fr 280px; gap: 2rem; align-items: start; }

.toc {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  position: sticky;
  top: 90px;
  border: 1px solid var(--border-light);
}

.toc h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); margin-bottom: 1rem; }

.toc ul { list-style: none; padding: 0; }
.toc li { margin-bottom: 0.5rem; }
.toc a { font-size: 0.85rem; color: var(--text-secondary); display: block; padding: 0.25rem 0; border-left: 2px solid transparent; padding-left: 0.75rem; }
.toc a:hover { color: var(--primary); border-left-color: var(--accent); }

/* ============================================
   GUIDE CARDS / LISTING
   ============================================ */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin: 1.5rem 0; }

.guide-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.guide-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.guide-card-img {
  height: 160px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 2.5rem;
}

.guide-card-body { padding: 1.25rem; }

.guide-card-body h3 { font-size: 1.05rem; margin: 0 0 0.5rem; }
.guide-card-body h3 a { color: var(--text-primary); }
.guide-card-body h3 a:hover { color: var(--primary); }

.guide-card-body p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* ============================================
   CATEGORY PAGE CASINO LIST
   ============================================ */
.casino-list-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.casino-list-item:hover { box-shadow: var(--shadow-md); }

.casino-list-rank {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}

.casino-list-info { flex: 1; }
.casino-list-info h3 { margin: 0; font-size: 1.1rem; }
.casino-list-info p { margin: 0.25rem 0 0; font-size: 0.85rem; }

.casino-list-bonus {
  text-align: center;
  flex-shrink: 0;
}

.casino-list-bonus .bonus-amount { font-size: 1.1rem; font-weight: 800; color: var(--success-dark); display: block; }
.casino-list-bonus .bonus-label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; }

.casino-list-cta { flex-shrink: 0; }

/* ============================================
   INFO BOXES / CALLOUTS
   ============================================ */
.info-box {
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  margin: 1.5rem 0;
  border-left: 4px solid;
}

.info-box.tip { background: #f0fdf4; border-left-color: var(--success); }
.info-box.warning { background: #fffbeb; border-left-color: var(--warning); }
.info-box.danger { background: #fef2f2; border-left-color: var(--danger); }
.info-box.info { background: #eff6ff; border-left-color: var(--info); }

.info-box h4 { margin-bottom: 0.5rem; font-size: 0.95rem; }
.info-box p { font-size: 0.9rem; margin: 0; }

/* ============================================
   CONTACT FORM
   ============================================ */
.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: var(--font-sans);
  transition: var(--transition);
  background: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30,58,95,0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }
.hidden { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

.badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.badge-primary { background: #eff6ff; color: var(--primary); }
.badge-success { background: #ecfdf5; color: var(--success-dark); }
.badge-warning { background: #fffbeb; color: var(--accent-dark); }
.badge-danger { background: #fef2f2; color: var(--danger); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .page-layout { grid-template-columns: 1fr; }
  .toc { position: static; }
}

@media (max-width: 768px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.15rem; }

  .hero { padding: 2.5rem 0 2rem; }
  .hero h1 { font-size: 1.75rem; }
  .hero-subtitle { font-size: 1rem; }

  .nav-toggle { display: block; }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-dark);
    flex-direction: column;
    padding: 1rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    z-index: 999;
  }

  .main-nav.open { transform: translateX(0); }

  .main-nav > li > a {
    height: auto;
    line-height: 1.5;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(0,0,0,0.2);
    border-radius: 0;
    display: none;
  }

  .has-dropdown.open .dropdown-menu { display: block; }

  .dropdown-menu li a { color: rgba(255,255,255,0.7); padding: 0.5rem 2rem; }
  .dropdown-menu li a:hover { background: rgba(255,255,255,0.05); color: var(--accent); border-left-color: var(--accent); }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .pros-cons { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .rating-breakdown { grid-template-columns: repeat(3, 1fr); }

  .comparison-table { font-size: 0.8rem; }
  .comparison-table th, .comparison-table td { padding: 0.75rem 0.5rem; }

  .review-header { padding: 1rem 1.25rem; }
  .review-body { padding: 1.25rem; }

  .casino-list-item { flex-direction: column; text-align: center; gap: 1rem; }

  .content-section { padding: 1.25rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero h1 { font-size: 1.5rem; }
  .info-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================
   JAVASCRIPT INTERACTIONS
   ============================================ */
/* FAQ toggle handled by JS */
/* Nav toggle handled by JS */

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .site-header, .site-footer, .btn, .nav-toggle { display: none; }
  body { font-size: 12pt; }
  .content-section { box-shadow: none; border: 1px solid #ccc; }
}
