/* ============================================
   AQUA-PR.COM - Best Non UK Casino
   Main Stylesheet
   ============================================ */

/* --- CSS Variables --- */
:root {
  --primary: #0f1923;
  --primary-light: #1a2a3a;
  --accent: #f7c948;
  --accent-hover: #e6b830;
  --success: #10b981;
  --success-hover: #059669;
  --info: #3b82f6;
  --warning: #f59e0b;
  --danger: #ef4444;
  --bg: #f5f7fa;
  --bg-alt: #eef2f7;
  --card: #ffffff;
  --text: #1e293b;
  --text-secondary: #64748b;
  --text-light: #94a3b8;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 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);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --max-width: 1200px;
  --content-width: 820px;
  --transition: 0.2s ease;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* --- 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);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--info); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
ul, ol { padding-left: 1.5em; }
table { border-collapse: collapse; width: 100%; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  color: var(--primary);
  line-height: 1.3;
  font-weight: 700;
}
h1 { font-size: 2.25rem; margin-bottom: 1rem; }
h2 { font-size: 1.75rem; margin: 2.5rem 0 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--accent); }
h3 { font-size: 1.35rem; margin: 2rem 0 0.75rem; }
h4 { font-size: 1.15rem; margin: 1.5rem 0 0.5rem; }
p { margin-bottom: 1rem; }

/* --- Layout --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.content-wrapper { max-width: var(--content-width); margin: 0 auto; }
.content-with-toc {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.content-main { min-width: 0; }
.toc-sidebar { order: 1; }
.content-main { order: 0; }
.toc-sticky {
  position: sticky;
  top: 180px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.toc-sticky h4 {
  margin: 0 0 12px;
  font-size: 0.85rem;
  color: var(--primary);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
}
.toc-sticky ol {
  margin: 0;
  padding-left: 1.2em;
}
.toc-sticky li {
  margin-bottom: 8px;
  font-size: 0.8rem;
  line-height: 1.4;
}
.toc-sticky a {
  color: var(--text-secondary);
  text-decoration: none;
}
.toc-sticky a:hover { color: var(--accent); }
.section { padding: 3rem 0; }
.section-alt { background: var(--bg-alt); }

/* --- Sticky Header --- */
.site-header {
  background: #0d1829;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: none;
  border-bottom: none;
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 170px;
}
.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo-img {
  height: 160px;
  width: auto;
  display: block;
}

/* --- Navigation --- */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > a,
.main-nav .nav-dropdown > .nav-dropdown-trigger {
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.main-nav > a:hover, .main-nav > a.active,
.main-nav .nav-dropdown:hover > .nav-dropdown-trigger {
  color: var(--accent);
  background: rgba(197,167,95,0.1);
}
.nav-dropdown-trigger::after {
  content: "\25BE";
  font-size: 0.7rem;
  opacity: 0.6;
}

/* --- Dropdown Menu --- */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #0d1829;
  border: 1px solid rgba(197,167,95,0.15);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  min-width: 240px;
  max-height: 70vh;
  overflow-y: auto;
  z-index: 200;
  padding: 8px 0;
}
.nav-dropdown:hover > .nav-dropdown-menu {
  display: block;
}
.nav-dropdown-menu a {
  display: block;
  padding: 8px 18px;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-dropdown-menu a:hover {
  background: rgba(197,167,95,0.1);
  color: var(--accent);
}
.nav-dropdown-menu .dropdown-label {
  display: block;
  padding: 6px 18px 4px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255,255,255,0.35);
  font-weight: 600;
  pointer-events: none;
}
.nav-dropdown-menu .dropdown-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 6px 0;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: var(--transition);
}

/* --- Responsible Gambling Top Bar --- */
.rg-top-bar {
  background: #0a1119;
  padding: 8px 0;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.3px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.rg-top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rg-top-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rg-age-icon {
  background: var(--danger);
  color: #fff;
  font-weight: 800;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 3px;
  line-height: 1.2;
}
.rg-top-sep {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.2);
}
.rg-top-left strong {
  color: #fff;
}
.rg-top-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.rg-top-right a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color var(--transition);
}
.rg-top-right a:hover {
  color: #fff;
}
@media (max-width: 768px) {
  .rg-top-bar { padding: 4px 0; }
  .rg-top-bar .container { flex-direction: column; gap: 2px; }
  .rg-top-left { flex-wrap: wrap; justify-content: center; gap: 6px; font-size: 0.6rem; }
  .rg-age-icon { font-size: 0.55rem; padding: 1px 4px; }
  .rg-top-sep { height: 10px; }
  .rg-top-right { gap: 10px; }
  .rg-top-right a { font-size: 0.55rem; }
  .top-bar { padding: 4px 0; font-size: 0.65rem; }
}

/* --- Top Bar (affiliate disclosure) --- */
.top-bar {
  background: #0d1829;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 6px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.top-bar a { color: rgba(255,255,255,0.8); text-decoration: underline; }

/* --- Hero Section --- */
.hero {
  background: #0d1829;
  color: #fff;
  padding: 0.5rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: visible;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(247,201,72,0.08) 0%, transparent 60%);
}
.hero h1 {
  color: #fff;
  font-size: 2.5rem;
  max-width: 800px;
  margin: 0 auto 1rem;
  position: relative;
}
.hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 auto 1.5rem;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(247,201,72,0.15);
  border: 1px solid rgba(247,201,72,0.3);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
}
.hero-expandable {
  max-width: 700px;
  margin: 0.5em auto 0.5em;
  position: relative;
}
.hero-expandable-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  visibility: hidden;
  opacity: 0;
}
.hero-expandable-content.expanded {
  max-height: 800px;
  visibility: visible;
  opacity: 1;
}
.hero-expandable-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
  text-align: left;
}
.hero-show-more-btn {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--accent);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 4px;
  transition: all var(--transition);
  font-family: var(--font);
}
.hero-show-more-btn:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--accent);
}
.last-updated {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  position: relative;
}

/* --- Author Box --- */
.author-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 2rem 0;
}
.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--info));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.author-info h4 { margin: 0 0 4px; font-size: 1.1rem; }
.author-title { color: var(--info); font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; display: block; }
.author-bio { font-size: 0.9rem; color: var(--text-secondary); margin: 0; }
.author-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.credential-tag {
  font-size: 0.75rem;
  background: var(--bg);
  color: var(--text-secondary);
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid var(--border);
}

/* --- Fact Check Bar --- */
.fact-check-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 20px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}
.fact-check-bar strong { color: var(--text); }

/* --- Casino Card --- */
.casino-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition);
  position: relative;
}
.casino-card:hover { box-shadow: var(--shadow-lg); }
.casino-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-md);
}
.casino-rank {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--primary);
  color: var(--accent);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  border: 2px solid var(--accent);
}
.casino-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}
.casino-logo-placeholder {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 800;
  font-size: 0.75rem;
  text-align: center;
  line-height: 1.2;
  flex-shrink: 0;
}
.casino-header-info { flex: 1; }
.casino-header-info h3 { margin: 0 0 4px; font-size: 1.3rem; }
.casino-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--success);
  color: #fff;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
}
.casino-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.casino-tag {
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: 50px;
  background: var(--bg);
  color: var(--text-secondary);
  border: 1px solid var(--border);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.casino-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}
.highlight-item {
  background: var(--bg);
  padding: 12px 16px;
  border-radius: var(--radius);
  text-align: center;
}
.highlight-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.highlight-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
}
.casino-description { margin-bottom: 16px; color: var(--text-secondary); font-size: 0.95rem; }
.casino-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.pros-list, .cons-list { list-style: none; padding: 0; }
.pros-list li, .cons-list li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.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;
}
.casino-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  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(247,201,72,0.3);
}
.btn-secondary {
  background: transparent;
  color: var(--info);
  border: 2px solid var(--info);
}
.btn-secondary:hover {
  background: var(--info);
  color: #fff;
}
.btn-success {
  background: var(--success);
  color: #fff;
}
.btn-success:hover {
  background: var(--success-hover);
  color: #fff;
  transform: translateY(-1px);
}
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* --- Quick Comparison Table --- */
.comparison-table-wrapper {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.comparison-table {
  width: 100%;
  min-width: 700px;
  background: var(--card);
  font-size: 1rem;
}
.comparison-table thead {
  background: var(--primary);
  color: #fff;
}
.comparison-table th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.comparison-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border-light);
  vertical-align: middle;
  font-size: 1.05rem;
  font-weight: 600;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) { background: var(--bg); }
.comparison-table tr:hover { background: rgba(247,201,72,0.05); }
.table-casino-name {
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
}
.table-casino-logo {
  width: 90px;
  height: 90px;
  border-radius: 6px;
  object-fit: contain;
  background: var(--primary);
  padding: 6px;
  flex-shrink: 0;
}
.casino-logo-img {
  width: 90px;
  height: 90px;
  border-radius: var(--radius);
  object-fit: contain;
  background: var(--primary);
  padding: 8px;
  flex-shrink: 0;
}
.table-rating {
  background: var(--success);
  color: #fff;
  padding: 2px 8px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-block;
}
.table-btn {
  background: var(--accent);
  color: var(--primary);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  display: inline-block;
  transition: all var(--transition);
  white-space: nowrap;
}
.table-btn:hover {
  background: var(--accent-hover);
  color: var(--primary);
  transform: translateY(-1px);
}

/* --- Info Box / Callout --- */
.info-box {
  padding: 20px 24px;
  border-radius: var(--radius);
  margin: 1.5rem 0;
  font-size: 0.95rem;
}
.info-box p:last-child { margin-bottom: 0; }
.info-box-blue {
  background: #eff6ff;
  border-left: 4px solid var(--info);
  color: #1e40af;
}
.info-box-amber {
  background: #fffbeb;
  border-left: 4px solid var(--warning);
  color: #92400e;
}
.info-box-green {
  background: #ecfdf5;
  border-left: 4px solid var(--success);
  color: #065f46;
}
.info-box-red {
  background: #fef2f2;
  border-left: 4px solid var(--danger);
  color: #991b1b;
}
.expert-callout {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--text-secondary);
}
.expert-callout cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  color: var(--text);
  margin-top: 8px;
  font-size: 0.85rem;
}

/* --- Comparison Grid (UKGC vs Non-UK) --- */
.vs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.vs-table th, .vs-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}
.vs-table thead th {
  background: var(--primary);
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.vs-table thead th:first-child { background: var(--primary-light); }
.vs-table td:first-child {
  font-weight: 600;
  color: var(--primary);
  background: var(--bg);
  width: 200px;
}
.vs-table tr:nth-child(even) td:not(:first-child) { background: rgba(245,247,250,0.5); }

/* --- FAQ Section --- */
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 24px;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font);
}
.faq-question:hover { background: var(--bg); }
.faq-question::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform var(--transition);
}
.faq-item.active .faq-question::after {
  content: "\2212";
}
.faq-answer {
  padding: 0 24px 18px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  display: none;
}
.faq-item.active .faq-answer { display: block; }

/* --- Breadcrumb --- */
.breadcrumb {
  padding: 12px 0;
  font-size: 0.85rem;
  color: var(--text-light);
}
.breadcrumb a { color: var(--text-secondary); }
.breadcrumb a:hover { color: var(--info); }
.breadcrumb span { margin: 0 6px; }

/* --- Trust Bar --- */
.trust-bar {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.trust-badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
.badge-green { background: #ecfdf5; color: var(--success); }
.badge-blue { background: #eff6ff; color: var(--info); }
.badge-amber { background: #fffbeb; color: var(--warning); }

/* --- Footer --- */
.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,0.7);
  padding: 3rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 2rem;
}
.footer-about { max-width: 340px; }
.footer-about .site-logo { margin-bottom: 12px; }
.footer-about p { font-size: 0.9rem; line-height: 1.6; }
.footer-col h4 {
  color: #fff;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; margin: 0; }
.footer-responsible {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 2rem;
  text-align: center;
}
.footer-responsible p { font-size: 0.85rem; margin-bottom: 8px; }
.footer-responsible a { color: var(--accent); }
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--danger);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  margin: 0 4px;
}

/* --- TOC (Table of Contents) --- */
.toc {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 2rem 0;
}
.toc h4 {
  margin: 0 0 12px;
  font-size: 1rem;
  color: var(--primary);
}
.toc ol {
  margin: 0;
  padding-left: 1.5em;
}
.toc li {
  margin-bottom: 6px;
  font-size: 0.9rem;
}
.toc a {
  color: var(--text-secondary);
  text-decoration: none;
}
.toc a:hover { color: var(--info); }

/* --- Payment Icons --- */
.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 1rem 0;
}
.payment-badge {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* --- Steps / How-to --- */
.steps { counter-reset: step; margin: 1.5rem 0; }
.step-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.step-number {
  counter-increment: step;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.step-content h4 { margin-top: 0; }
.step-content p { margin-bottom: 0; color: var(--text-secondary); font-size: 0.95rem; }

/* --- Responsible Gambling Banner --- */
.rg-banner {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border: 1px solid #f59e0b;
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 2rem 0;
  text-align: center;
}
.rg-banner h3 { color: #92400e; margin-top: 0; }
.rg-banner p { color: #78350f; font-size: 0.95rem; }
.rg-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}
.rg-link {
  background: #fff;
  border: 1px solid #d97706;
  color: #92400e;
  padding: 8px 20px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition);
}
.rg-link:hover {
  background: #92400e;
  color: #fff;
}

/* --- Review Page Specific --- */
.review-page { padding-bottom: 2rem; }
.review-page .container { max-width: var(--content-width); }
.review-header {
  background: #0d1829;
  color: #fff;
  padding: 1rem 0 2.5rem;
  margin: 0;
}
.review-header .container {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 20px;
}
.review-header .breadcrumb {
  margin-bottom: 1rem;
}
.review-header .breadcrumb,
.review-header .breadcrumb a {
  color: rgba(255,255,255,0.4);
}
.review-header .breadcrumb a:hover {
  color: var(--accent);
}
.review-header h1 {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  border-bottom: none;
}
.review-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}
.review-rating {
  background: var(--success);
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
}
.review-badge {
  background: rgba(247,201,72,0.15);
  border: 1px solid rgba(247,201,72,0.4);
  color: var(--accent);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}
.review-updated {
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
}
.review-header p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 780px;
  margin-bottom: 1.75rem;
}
.cta-button {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  padding: 14px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(247,201,72,0.2);
}
.cta-button:hover {
  background: var(--accent-hover);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(247,201,72,0.35);
}
@media (max-width: 768px) {
  .review-header h1 { font-size: 1.5rem; }
  .review-header { padding: 0.75rem 0 1.5rem; }
  .review-meta { gap: 8px; }
  .review-header p { font-size: 0.9rem; }
  .cta-button { padding: 12px 28px; font-size: 0.95rem; }
}
.review-score {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.review-score .score-number { font-size: 1.8rem; font-weight: 800; color: var(--accent); line-height: 1; }
.review-score .score-label { font-size: 0.65rem; text-transform: uppercase; color: rgba(255,255,255,0.6); }

/* --- Sidebar (for guide pages) --- */
.page-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
.sidebar-widget {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
}
.sidebar-widget h4 {
  margin: 0 0 12px;
  font-size: 0.95rem;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
}
.sidebar-casino-list { list-style: none; padding: 0; }
.sidebar-casino-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}
.sidebar-casino-list li:last-child { border-bottom: none; }

/* --- Methodology Score Bars --- */
.score-bar-container { margin: 12px 0; }
.score-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 4px;
}
.score-bar-label span:first-child { font-weight: 600; color: var(--text); }
.score-bar-label span:last-child { color: var(--text-secondary); }
.score-bar {
  height: 8px;
  background: var(--bg);
  border-radius: 50px;
  overflow: hidden;
}
.score-bar-fill {
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--success), var(--info));
  transition: width 0.5s ease;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-with-sidebar { grid-template-columns: 1fr; }
  .content-with-toc { grid-template-columns: 1fr; }
  .toc-sidebar { display: none; }
}
@media (max-width: 768px) {
  .mobile-menu-btn { display: block; }
  .site-logo-img { height: 90px; }
  .main-nav {
    display: none;
    position: absolute;
    top: 170px;
    left: 0;
    right: 0;
    background: #0d1829;
    flex-direction: column;
    padding: 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  }
  .main-nav.active { display: flex; }
  .main-nav > a,
  .main-nav .nav-dropdown > .nav-dropdown-trigger { padding: 12px 16px; width: 100%; }
  .nav-dropdown { width: 100%; }
  .nav-dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    border: none;
    background: rgba(255,255,255,0.03);
    border-radius: 0;
    padding: 0 0 0 16px;
    max-height: none;
  }
  .nav-dropdown.open > .nav-dropdown-menu { display: block; }
  .nav-dropdown-menu a { padding: 8px 16px; }
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }
  .hero { padding: 2.5rem 0 2rem; }
  .hero h1 { font-size: 1.8rem; }
  /* Mobile comparison table -> compact row layout */
  .comparison-table { min-width: 0; background: var(--primary); }
  .comparison-table thead { display: none; }
  .comparison-table tbody tr {
    display: grid;
    grid-template-columns: 20px 50px 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 0 10px;
    padding: 10px 12px;
    background: var(--primary);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .comparison-table tbody tr:nth-child(even) { background: var(--primary-light); }
  .comparison-table tbody tr:hover { background: var(--primary-light); }
  .comparison-table td {
    padding: 0;
    border-bottom: none;
    color: #fff;
  }
  .comparison-table td::before { display: none; }
  /* Rank number */
  .comparison-table td:first-child {
    display: block;
    grid-column: 1;
    grid-row: 1 / 3;
    font-weight: 700;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    text-align: center;
  }
  /* Casino logo cell: hide text, show only logo */
  .comparison-table td:nth-child(2) {
    display: block;
    grid-column: 2;
    grid-row: 1 / 3;
  }
  .table-casino-name {
    gap: 0;
    color: #fff;
    white-space: nowrap;
  }
  .table-casino-text { display: none; }
  .table-casino-logo {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    padding: 4px;
  }
  /* Bonus cell: show casino name above bonus text */
  .comparison-table td:nth-child(3) {
    grid-column: 3;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .comparison-table td:nth-child(3) {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
  }
  .comparison-table td:nth-child(3)::before {
    content: attr(data-name);
    display: block;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 2px;
  }
  /* Hide licence, payout speed, rating on mobile */
  .comparison-table td:nth-child(4),
  .comparison-table td:nth-child(5),
  .comparison-table td:nth-child(6) { display: none; }
  /* Visit button */
  .comparison-table td:last-child {
    display: block;
    grid-column: 4;
    grid-row: 1 / 3;
  }
  .table-btn {
    padding: 12px 22px;
    font-size: 0.95rem;
    font-weight: 800;
    border-radius: 6px;
    background: var(--success);
    color: #fff;
  }
  .table-btn:hover {
    background: var(--success-hover);
    color: #fff;
  }
  .comparison-table-wrapper {
    border: none;
    box-shadow: none;
    border-radius: var(--radius);
    overflow: hidden;
  }

  .casino-card-header { flex-direction: column; text-align: center; }
  .casino-pros-cons { grid-template-columns: 1fr; }
  .casino-highlights { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .author-box { flex-direction: column; text-align: center; align-items: center; }
  .trust-badges { gap: 12px; }
  .casino-cta { justify-content: center; }
  .vs-table { font-size: 0.85rem; }
  .vs-table th, .vs-table td { padding: 10px 12px; }
}
@media (max-width: 480px) {
  .casino-highlights { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
  .casino-card { padding: 16px; }
}

/* --- Utility Classes --- */
.text-center { text-align: center; }
.text-muted { color: var(--text-secondary); }
.text-sm { font-size: 0.85rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.hidden { display: none; }
.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;
}

/* --- Print Styles --- */
@media print {
  .site-header, .site-footer, .top-bar, .btn, .mobile-menu-btn { display: none; }
  body { background: #fff; color: #000; }
  .casino-card { break-inside: avoid; box-shadow: none; border: 1px solid #ccc; }
}
