/* ============================================
   LOVINGNOCOUNT.COM - Best Gambling Sites UK
   Modern Affiliate Site Stylesheet
   ============================================ */

/* CSS Variables */
:root {
  --primary: #1a365d;
  --primary-light: #2b4c7e;
  --primary-dark: #0f2440;
  --accent: #e8a838;
  --accent-hover: #d4952e;
  --success: #22c55e;
  --danger: #ef4444;
  --warning: #f59e0b;
  --info: #3b82f6;
  --text: #1e293b;
  --text-light: #64748b;
  --text-muted: #94a3b8;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --bg-dark: #0f172a;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 25px -3px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 40px -5px rgba(0,0,0,0.15);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --max-width: 1200px;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: all 0.2s ease;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  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(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { line-height: 1.3; font-weight: 700; color: var(--primary-dark); }
p { margin-bottom: 1rem; }
table { border-collapse: collapse; width: 100%; }

/* Typography */
.h1 { font-size: 2.5rem; }
.h2 { font-size: 2rem; }
.h3 { font-size: 1.5rem; }
.h4 { font-size: 1.25rem; }

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

/* ============ HEADER / NAV ============ */
.top-bar {
  background: var(--primary-dark);
  color: #cbd5e1;
  font-size: 0.8rem;
  padding: 0.4rem 0;
}
.top-bar a { color: #cbd5e1; }
.top-bar a:hover { color: var(--accent); }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }

.header {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-lg);
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}
.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0;
}
.logo span { color: var(--accent); }

.nav { display: flex; align-items: center; gap: 0; }
.nav a {
  color: rgba(255,255,255,0.85);
  padding: 1.2rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}
.nav a:hover, .nav a.active {
  color: #fff;
  background: rgba(255,255,255,0.1);
}
.nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' \25BE'; font-size: 0.7em; }
.nav-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 240px;
  max-height: 70vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 100;
  padding: 0.5rem 0;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu .dropdown-label {
  display: block;
  padding: 0.5rem 1.2rem 0.25rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  font-weight: 700;
  border-top: 1px solid var(--border-light);
  margin-top: 0.25rem;
}
.dropdown-menu .dropdown-label:first-child { border-top: none; margin-top: 0; }
.dropdown-menu a {
  display: block;
  color: var(--text);
  padding: 0.55rem 1.2rem;
  font-size: 0.82rem;
}
.dropdown-menu a:hover {
  background: var(--bg-alt);
  color: var(--primary);
}
/* Wide dropdown for reviews */
.nav-dropdown .dropdown-wide {
  min-width: 280px;
}

/* Mobile Nav */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: var(--transition);
}

/* ============ HERO ============ */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  color: #fff;
  padding: 3.5rem 0;
  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");
}
.hero .container { position: relative; z-index: 1; }
.hero h1 {
  font-size: 2.75rem;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.hero h1 span { color: var(--accent); }
.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 700px;
  margin-bottom: 1.5rem;
}
.hero-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
}
.hero-meta span { display: flex; align-items: center; gap: 0.4rem; }
.breadcrumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--accent); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}
.btn-success {
  background: var(--success);
  color: #fff;
}
.btn-success:hover {
  background: #16a34a;
  color: #fff;
  transform: translateY(-1px);
}
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.8rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn-block { display: flex; width: 100%; justify-content: center; }

/* ============ CASINO CARDS ============ */
.casino-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--transition);
  position: relative;
}
.casino-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.casino-card.featured {
  border: 2px solid var(--accent);
  box-shadow: var(--shadow);
}
.casino-card.featured::before {
  content: 'Editor\'s Pick';
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--accent);
  color: #fff;
  padding: 0.25rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 0 0 var(--radius) var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.casino-rank {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  border-radius: 50%;
  font-size: 1rem;
  flex-shrink: 0;
}
.casino-rank.gold { background: linear-gradient(135deg, #f59e0b, #d97706); }
.casino-rank.silver { background: linear-gradient(135deg, #94a3b8, #64748b); }
.casino-rank.bronze { background: linear-gradient(135deg, #d97706, #b45309); }

.casino-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.casino-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-dark);
}
.casino-rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.9rem;
}
.stars { color: var(--accent); letter-spacing: 1px; }
.rating-num { font-weight: 700; color: var(--primary); }

.casino-bonus {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border: 1px solid #fcd34d;
  border-radius: var(--radius);
  padding: 1rem;
  margin-bottom: 1rem;
  text-align: center;
}
.casino-bonus .bonus-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  font-weight: 600;
}
.casino-bonus .bonus-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 0.3rem 0;
}
.casino-bonus .bonus-terms {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.casino-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}
.casino-feature {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-light);
}
.casino-feature .check { color: var(--success); font-weight: bold; }

.casino-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.payment-badge {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
}

.casino-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}
.pros li, .cons li {
  padding: 0.3rem 0;
  padding-left: 1.2rem;
  position: relative;
}
.pros li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}
.cons li::before {
  content: '-';
  position: absolute;
  left: 0;
  color: var(--danger);
  font-weight: 700;
}
.pros h4, .cons h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}
.pros h4 { color: var(--success); }
.cons h4 { color: var(--danger); }

.casino-cta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.casino-cta .btn { flex: 1; justify-content: center; }

/* ============ LIST-STYLE CASINO CARDS ============ */
.casino-list-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  margin-bottom: 1rem;
  display: grid;
  grid-template-columns: 60px 1fr 200px 180px;
  align-items: center;
  gap: 1.5rem;
  transition: var(--transition);
}
.casino-list-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--accent);
}
.casino-list-card.featured {
  border: 2px solid var(--accent);
  background: linear-gradient(to right, #fffbeb, #fff);
}

.list-card-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
.list-card-info .rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
}
.list-card-info .features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.feature-tag {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-size: 0.7rem;
  color: var(--text-light);
}

.list-card-bonus {
  text-align: center;
  padding: 0.75rem;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border-radius: var(--radius);
}
.list-card-bonus .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 600;
}
.list-card-bonus .value {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-dark);
}

/* ============ COMPARISON TABLE ============ */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.comparison-table thead {
  background: var(--primary);
  color: #fff;
}
.comparison-table th {
  padding: 1rem;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem;
}
.comparison-table tbody tr:hover {
  background: var(--bg-alt);
}
.comparison-table .site-name {
  font-weight: 700;
  color: var(--primary-dark);
}

/* ============ INFO BOXES ============ */
.info-box {
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  border-left: 4px solid;
}
.info-box.tip {
  background: #ecfdf5;
  border-color: var(--success);
}
.info-box.warning {
  background: #fffbeb;
  border-color: var(--warning);
}
.info-box.info {
  background: #eff6ff;
  border-color: var(--info);
}
.info-box.danger {
  background: #fef2f2;
  border-color: var(--danger);
}
.info-box h4 {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.info-box p { margin: 0; font-size: 0.9rem; }

/* ============ CONTENT ============ */
.content-section {
  padding: 3rem 0;
}
.content-section h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--accent);
  display: inline-block;
}
.content-section h3 {
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
}
.content-section p {
  color: var(--text);
  line-height: 1.8;
}
.content-section ul, .content-section ol {
  margin: 1rem 0 1.5rem 1.5rem;
}
.content-section ul { list-style: disc; }
.content-section ol { list-style: decimal; }
.content-section li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.content-section blockquote {
  border-left: 4px solid var(--accent);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--bg-alt);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text-light);
}

/* ============ SIDEBAR ============ */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}
.sidebar { position: sticky; top: 80px; }
.sidebar-widget {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.sidebar-widget h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent);
}
.quick-pick {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-light);
}
.quick-pick:last-child { border-bottom: none; }
.quick-pick-rank {
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.quick-pick-info { flex: 1; }
.quick-pick-name { font-weight: 600; font-size: 0.85rem; }
.quick-pick-bonus { font-size: 0.75rem; color: var(--text-muted); }

/* TOC */
.toc { font-size: 0.85rem; }
.toc ol { list-style: decimal; margin-left: 1.2rem; }
.toc li { padding: 0.35rem 0; }
.toc a { color: var(--text-light); }
.toc a:hover { color: var(--primary); }

/* ============ FAQ ============ */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-question {
  background: var(--bg-alt);
  padding: 1rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}
.faq-question:hover { background: var(--border-light); }
.faq-question::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: var(--transition);
}
.faq-item.active .faq-question::after {
  content: '-';
}
.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
  padding: 1rem 1.5rem;
  max-height: 500px;
}

/* ============ AUTHOR BOX (EEAT) ============ */
.author-box {
  display: flex;
  gap: 1.5rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 2rem 0;
}
.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}
.author-info h4 { margin-bottom: 0.25rem; }
.author-info .author-title {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.author-info p { font-size: 0.85rem; color: var(--text-light); margin: 0; }

/* ============ TRUST BADGES ============ */
.trust-bar {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}
.trust-badge .icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

/* ============ STATS BAR ============ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}
.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============ CATEGORY CARDS ============ */
.category-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}
.category-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--accent);
}
.category-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.category-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.category-card p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 1rem; }

/* ============ FOOTER ============ */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 3rem 0 0;
}
.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 h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.footer p { font-size: 0.85rem; line-height: 1.6; }
.footer a { color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.footer a:hover { color: var(--accent); }
.footer ul li { margin-bottom: 0.5rem; }

.footer-rg {
  text-align: center;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-rg p { font-size: 0.8rem; color: rgba(255,255,255,0.5); max-width: 800px; margin: 0 auto; }
.rg-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.rg-badge {
  background: rgba(255,255,255,0.1);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--accent); }

/* Affiliate Disclaimer */
.affiliate-disclosure {
  background: #fefce8;
  border: 1px solid #fde68a;
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  font-size: 0.8rem;
  color: var(--text-light);
  margin: 1.5rem 0;
}

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

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .content-layout {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: static;
  }
  .casino-list-card {
    grid-template-columns: 50px 1fr;
    gap: 1rem;
  }
  .list-card-bonus, .list-card-cta {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .mobile-toggle { display: block; }
  .nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary);
    box-shadow: var(--shadow-lg);
    max-height: 80vh;
    overflow-y: auto;
  }
  .nav.active a { padding: 1rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .nav.active .nav-dropdown .dropdown-menu {
    position: static;
    display: none;
    background: rgba(0,0,0,0.2);
    box-shadow: none;
    min-width: 100%;
    max-height: none;
  }
  .nav.active .nav-dropdown.open .dropdown-menu { display: block; }
  .nav.active .dropdown-menu a { padding-left: 2.5rem; color: rgba(255,255,255,0.8); }
  .nav.active .dropdown-menu .dropdown-label { color: rgba(255,255,255,0.5); border-color: rgba(255,255,255,0.1); }
  .hero h1 { font-size: 1.75rem; }
  .hero p { font-size: 1rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .casino-features { grid-template-columns: 1fr; }
  .casino-pros-cons { grid-template-columns: 1fr; }
  .casino-card { padding: 1rem; }
  .casino-list-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .casino-rank { margin: 0 auto; }
  .list-card-bonus, .list-card-cta { grid-column: 1; }
  .hero-meta { gap: 1rem; }
  .comparison-table { font-size: 0.8rem; }
  .comparison-table th, .comparison-table td { padding: 0.6rem; }
  .author-box { flex-direction: column; text-align: center; }
  .trust-badges { gap: 1.5rem; }
  .rg-badges { gap: 1rem; }
  .section { padding: 2.5rem 0; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.4rem; }
  .container { padding: 0 1rem; }
  .stats-bar { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============ UTILITY ============ */
.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; }
.text-accent { color: var(--accent); }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.text-muted { color: var(--text-muted); }
.font-bold { font-weight: 700; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ============ ANIMATIONS ============ */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeIn 0.5s ease forwards; }

/* Print */
@media print {
  .header, .footer, .sidebar, .btn, .mobile-toggle, .top-bar { display: none; }
  .content-layout { grid-template-columns: 1fr; }
  body { font-size: 12pt; }
}
