/* ============================================
   BEST NON UK CASINO - Main Stylesheet
   Modern, clean design optimized for casino affiliate
   ============================================ */

/* CSS Variables */
:root {
  --primary: #1a1f36;
  --primary-light: #252b48;
  --accent: #f59e0b;
  --accent-hover: #d97706;
  --accent-light: #fef3c7;
  --success: #10b981;
  --danger: #ef4444;
  --info: #3b82f6;
  --text: #1f2937;
  --text-light: #6b7280;
  --text-white: #f9fafb;
  --bg: #ffffff;
  --bg-light: #f8fafc;
  --bg-dark: #0f1225;
  --border: #e5e7eb;
  --border-light: #f3f4f6;
  --card-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --card-shadow-hover: 0 10px 25px rgba(0,0,0,0.1), 0 4px 10px rgba(0,0,0,0.05);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --max-width: 1200px;
  --header-height: 72px;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition: all 0.2s ease;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--info); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent); }
ul, ol { list-style: none; }
table { border-collapse: collapse; width: 100%; }

/* Typography */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.3; color: var(--primary); }
h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.75rem; margin-top: 2.5rem; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); margin-bottom: 0.5rem; margin-top: 2rem; }
h4 { font-size: 1.125rem; margin-bottom: 0.5rem; margin-top: 1.5rem; }
p { margin-bottom: 1rem; }

/* Layout */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 3rem 0; }
.section-alt { background: var(--bg-light); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }

/* Header */
.site-header {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo span { color: var(--accent); }
.nav-menu { display: flex; gap: 0.25rem; align-items: center; }
.nav-menu a {
  color: var(--text-white);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-menu a:hover, .nav-menu a.active {
  background: rgba(255,255,255,0.1);
  color: var(--accent);
}
.nav-dropdown { position: relative; }
.nav-dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  min-width: 220px;
  box-shadow: var(--card-shadow-hover);
  z-index: 100;
  padding: 0.5rem 0;
}
.nav-dropdown:hover .nav-dropdown-content { display: block; }
.nav-dropdown-content a {
  display: block;
  padding: 0.5rem 1rem;
  border-radius: 0;
}
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #1e3a5f 50%, var(--primary-light) 100%);
  padding: 4rem 0 3rem;
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { color: #fff; font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1rem; }
.hero .subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  max-width: 700px;
}
.hero-badges { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.375rem 0.875rem;
  border-radius: 100px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
}
.hero-badge svg { width: 16px; height: 16px; }

/* Updated Badge */
.updated-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.375rem 0.875rem;
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--success);
  font-weight: 500;
  margin-bottom: 1rem;
}

/* Casino Cards */
.casino-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: var(--transition);
  position: relative;
}
.casino-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-2px);
  border-color: var(--accent);
}
.casino-card-rank {
  position: absolute;
  top: -10px;
  left: 1.5rem;
  background: var(--accent);
  color: var(--primary);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
}
.casino-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.casino-logo-placeholder {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--accent);
  font-size: 0.75rem;
  text-align: center;
  flex-shrink: 0;
}
.casino-card-title { font-size: 1.25rem; margin-bottom: 0.125rem; }
.casino-card-license { font-size: 0.8rem; color: var(--text-light); }
.casino-card-bonus {
  background: var(--accent-light);
  border: 1px solid #fcd34d;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}
.casino-card-bonus strong { color: var(--primary); font-size: 1.1rem; display: block; }
.casino-card-bonus small { color: var(--text-light); font-size: 0.8rem; }
.casino-card-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.casino-feature {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.85rem;
  color: var(--text-light);
}
.casino-feature svg { color: var(--success); flex-shrink: 0; width: 16px; height: 16px; }
.casino-card-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.rating-score {
  background: var(--success);
  color: #fff;
  font-weight: 800;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}
.rating-stars { color: var(--accent); font-size: 0.9rem; }
.rating-label { font-size: 0.8rem; color: var(--text-light); }
.casino-card-pros { margin-bottom: 1rem; }
.casino-card-pros li {
  font-size: 0.85rem;
  padding: 0.25rem 0;
  padding-left: 1.25rem;
  position: relative;
  color: var(--text);
}
.casino-card-pros li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}
.casino-card-cons li::before {
  content: '\2717';
  color: var(--danger);
}
.casino-card-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--primary);
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245,158,11,0.4);
}
.btn-secondary {
  background: transparent;
  color: var(--info);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--info);
  background: rgba(59,130,246,0.05);
}
.btn-large { padding: 1rem 2rem; font-size: 1.05rem; }
.btn-small { padding: 0.5rem 1rem; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* Comparison Table */
.comparison-table-wrapper { overflow-x: auto; margin: 1.5rem 0; }
.comparison-table {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.comparison-table thead { background: var(--primary); color: #fff; }
.comparison-table th {
  padding: 0.875rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  white-space: nowrap;
}
.comparison-table td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem;
  vertical-align: middle;
}
.comparison-table tbody tr:hover { background: var(--bg-light); }
.comparison-table tbody tr:last-child td { border-bottom: none; }
.table-casino-name {
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.table-badge {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}
.table-badge-top { background: var(--accent-light); color: #92400e; }
.table-badge-new { background: #dbeafe; color: #1e40af; }

/* TOC / Table of Contents */
.toc {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 2rem 0;
}
.toc-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
}
.toc-list { columns: 2; column-gap: 2rem; }
.toc-list li { padding: 0.25rem 0; break-inside: avoid; }
.toc-list a {
  font-size: 0.9rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.toc-list a:hover { color: var(--accent); }
.toc-list a::before {
  content: '\25B8';
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.15em;
}

/* FAQ */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: var(--bg);
  border: none;
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--primary);
  transition: var(--transition);
}
.faq-question:hover { background: var(--bg-light); }
.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 300;
  transition: var(--transition);
  color: var(--text-light);
}
.faq-item.active .faq-question::after { content: '\2212'; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner { padding: 0 1.25rem 1rem; color: var(--text); font-size: 0.95rem; line-height: 1.7; }
.faq-item.active .faq-answer { max-height: 500px; }

/* Info Boxes */
.info-box {
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  display: flex;
  gap: 0.75rem;
}
.info-box-warning { background: #fef3c7; border-left: 4px solid var(--accent); }
.info-box-info { background: #dbeafe; border-left: 4px solid var(--info); }
.info-box-success { background: #d1fae5; border-left: 4px solid var(--success); }
.info-box-danger { background: #fee2e2; border-left: 4px solid var(--danger); }
.info-box-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 0.1em; }
.info-box-content { font-size: 0.9rem; }
.info-box-content strong { display: block; margin-bottom: 0.25rem; }

/* Author Box / EEAT */
.author-box {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin: 2rem 0;
}
.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--info));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.author-info h4 { font-size: 0.95rem; margin: 0 0 0.125rem; }
.author-info .author-role { font-size: 0.8rem; color: var(--text-light); margin-bottom: 0.25rem; }
.author-info .author-bio { font-size: 0.85rem; color: var(--text); line-height: 1.6; }

/* Breadcrumbs */
.breadcrumbs {
  padding: 1rem 0;
  font-size: 0.85rem;
}
.breadcrumbs a { color: var(--text-light); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs span { color: var(--text-light); margin: 0 0.375rem; }
.breadcrumbs .current { color: var(--text); font-weight: 500; }

/* Sidebar Layout */
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  align-items: flex-start;
}
.sidebar-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
}
.sidebar-card h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--accent);
  margin-top: 0;
}
.sidebar-casino-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--border-light);
}
.sidebar-casino-item:last-child { border-bottom: none; }
.sidebar-rank {
  background: var(--primary);
  color: var(--accent);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.sidebar-casino-info { flex: 1; }
.sidebar-casino-name { font-weight: 600; font-size: 0.9rem; color: var(--primary); display: block; }
.sidebar-casino-bonus { font-size: 0.8rem; color: var(--text-light); }

/* Feature Cards */
.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.feature-card:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-2px); }
.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.feature-card h3 { font-size: 1.1rem; margin-top: 0; }
.feature-card p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 0; }

/* Payment Method Cards */
.payment-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 0.75rem; margin: 1.5rem 0; }
.payment-item {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
}
.payment-item:hover { border-color: var(--accent); }

/* Pros / Cons */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 1.5rem 0; }
.pros-list, .cons-list {
  border-radius: var(--radius);
  padding: 1.25rem;
}
.pros-list { background: #f0fdf4; border: 1px solid #bbf7d0; }
.cons-list { background: #fef2f2; border: 1px solid #fecaca; }
.pros-list h4 { color: #166534; margin-top: 0; }
.cons-list h4 { color: #991b1b; margin-top: 0; }
.pros-list li, .cons-list li {
  padding: 0.375rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9rem;
}
.pros-list li::before { content: '\2713'; position: absolute; left: 0; color: var(--success); font-weight: 700; }
.cons-list li::before { content: '\2717'; position: absolute; left: 0; color: var(--danger); font-weight: 700; }

/* Footer */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.6; }
.footer-col h4 {
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  padding: 0.25rem 0;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--accent); }
.footer-rg {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.footer-rg h4 { color: #fff; font-size: 0.95rem; margin-bottom: 0.75rem; margin-top: 0; }
.footer-rg p { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 0.75rem; }
.rg-badges { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.rg-badge {
  background: rgba(255,255,255,0.1);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-disclaimer {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* Age Badge */
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--danger);
  color: var(--danger);
  font-weight: 800;
  font-size: 0.7rem;
}

/* Content Styles */
.content-body h2 { border-bottom: 2px solid var(--border-light); padding-bottom: 0.5rem; }
.content-body ul, .content-body ol { margin-bottom: 1rem; padding-left: 0; }
.content-body ul li, .content-body ol li {
  padding: 0.25rem 0 0.25rem 1.5rem;
  position: relative;
}
.content-body ul li::before {
  content: '\25B8';
  position: absolute;
  left: 0;
  color: var(--accent);
}
.content-body ol { counter-reset: item; }
.content-body ol li { counter-increment: item; }
.content-body ol li::before {
  content: counter(item) '.';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

/* Casino List (Full) */
.casino-list-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}
.casino-list-item:hover {
  box-shadow: var(--card-shadow-hover);
  border-color: var(--accent);
}
.casino-list-rank {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
}
.casino-list-info h3 { margin: 0 0 0.25rem; font-size: 1.2rem; }
.casino-list-bonus { color: var(--success); font-weight: 600; font-size: 0.95rem; }
.casino-list-meta {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}
.casino-list-tag {
  font-size: 0.8rem;
  color: var(--text-light);
  background: var(--bg-light);
  padding: 0.125rem 0.5rem;
  border-radius: 100px;
}

/* Review Page Specific */
.review-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #1e3a5f 100%);
  padding: 3rem 0;
  color: #fff;
}
.review-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}
.review-stat {
  text-align: center;
  padding: 1rem;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
}
.review-stat-value { font-size: 1.5rem; font-weight: 800; color: var(--accent); }
.review-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-top: 0.25rem; }
.review-score-breakdown { margin: 1.5rem 0; }
.score-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.625rem;
}
.score-label { width: 140px; font-size: 0.85rem; font-weight: 500; }
.score-bar {
  flex: 1;
  height: 8px;
  background: var(--border-light);
  border-radius: 100px;
  overflow: hidden;
}
.score-bar-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--accent), var(--success));
}
.score-value { width: 40px; text-align: right; font-weight: 700; font-size: 0.9rem; }

/* Guide Content */
.guide-hero {
  background: linear-gradient(135deg, #1e3a5f 0%, var(--primary) 100%);
  padding: 3rem 0;
  color: #fff;
}
.guide-meta { display: flex; gap: 1.5rem; margin-top: 1rem; font-size: 0.85rem; color: rgba(255,255,255,0.7); }

/* Keyword Highlight */
.keyword-highlight {
  background: var(--accent-light);
  padding: 0.125rem 0.25rem;
  border-radius: 3px;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
  .content-with-sidebar { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--primary);
    padding: 1rem;
    box-shadow: var(--card-shadow-hover);
  }
  .mobile-toggle { display: block; }
  .hero { padding: 2.5rem 0 2rem; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .casino-list-item { grid-template-columns: 1fr; text-align: center; }
  .casino-list-rank { margin: 0 auto; }
  .casino-card-features { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .toc-list { columns: 1; }
  .comparison-table { font-size: 0.8rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .review-stats { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-badges { justify-content: center; }
}
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .casino-card-actions { flex-direction: column; }
  .casino-card-actions .btn { width: 100%; }
}

/* Print */
@media print {
  .site-header, .site-footer, .btn, .sidebar-card { display: none; }
  body { font-size: 12pt; color: #000; }
  a { color: #000; text-decoration: underline; }
}
