/* ==========================================================================
   BristolUniResistance — main.css
   Non Gamstop Casinos UK 2026
   ========================================================================== */

:root {
  --bg: #FFFFFF;
  --bg-alt: #F8F9FA;
  --border: #E5E7EB;
  --text: #111827;
  --text-muted: #6B7280;
  --accent: #16A34A;
  --accent2: #DC2626;
  --gold: #D97706;
  --shadow: 0 1px 3px rgba(0,0,0,.10);
  --shadow-md: 0 4px 12px rgba(0,0,0,.12);
  --radius: 8px;
  --radius-lg: 12px;
  --font: 'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { padding-left: 1.5rem; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Base rule — required */
.mobile-nav { display: none; }

/* ==========================================================================
   Navigation
   ========================================================================== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--accent); text-decoration: none; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  padding: 3rem 0 2.5rem;
  /* background set inline */
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
  font-size: 0.8125rem;
}

.breadcrumb a { color: #94a3b8; }
.breadcrumb a:hover { color: #e2e8f0; }
.bc-sep { color: #64748b; }
.breadcrumb li:last-child { color: #cbd5e1; }

.hero-h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #f1f5f9;
  line-height: 1.2;
  margin-bottom: 1rem;
  max-width: 800px;
}

.hero-desc {
  font-size: 1.0625rem;
  color: #cbd5e1;
  max-width: 700px;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.fs-paragraph {
  background: rgba(255,255,255,0.08);
  border-left: 4px solid var(--accent);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 1.5rem;
  max-width: 720px;
}

.fs-paragraph p {
  color: #e2e8f0;
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 0;
}

.hero-cta-wrap { margin-bottom: 2rem; }

.btn-primary {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(22,163,74,0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22,163,74,0.5);
  text-decoration: none;
  color: #fff;
}

.btn-arrow { font-size: 1.1em; margin-left: 0.25rem; }

.btn-micro {
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.9;
  margin-top: 0.2rem;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 15px rgba(22,163,74,0.4); }
  50% { box-shadow: 0 4px 25px rgba(22,163,74,0.7); }
}

.btn-pulse { animation: pulse-glow 2.5s ease-in-out infinite; }

.hero-author-block {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  max-width: 480px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.3);
  flex-shrink: 0;
  background: linear-gradient(135deg, #16a34a, #15803d);
}

.author-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.author-name {
  font-weight: 700;
  color: #f1f5f9;
  font-size: 0.9375rem;
}

.author-name a { color: #f1f5f9; }
.author-name a:hover { color: #86efac; text-decoration: underline; }

.author-role {
  font-size: 0.8125rem;
  color: #94a3b8;
}

.author-date {
  font-size: 0.75rem;
  color: #64748b;
}

/* ==========================================================================
   Section Commons
   ========================================================================== */
.content-section {
  padding: 3.5rem 0;
  background: var(--bg);
}

.bg-alt { background: var(--bg-alt); }

.content-section h2 {
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.content-section p {
  margin-bottom: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.75;
  max-width: 800px;
}

.content-section h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 1.5rem 0 0.75rem;
  color: var(--text);
}

/* ==========================================================================
   H2 Banners
   ========================================================================== */
.h2-banner-wrap {
  margin: 0 0 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #1e293b;
}

.h2-banner-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  min-height: 120px;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
}

.h2-banner-wrap figcaption {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  color: #94a3b8;
  background: #0f172a;
}

/* ==========================================================================
   Tables
   ========================================================================== */
.table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.data-table,
.fs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  background: #fff;
}

.data-table caption,
.fs-table caption {
  caption-side: top;
  text-align: left;
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 600;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.data-table thead th,
.fs-table thead th {
  background: #1e293b;
  color: #f1f5f9;
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.8125rem;
  white-space: nowrap;
}

.data-table tbody tr,
.fs-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.data-table tbody tr:hover,
.fs-table tbody tr:hover {
  background: #f0fdf4;
}

.data-table tbody td,
.fs-table tbody td {
  padding: 0.625rem 1rem;
  color: var(--text);
}

/* ==========================================================================
   Info / Warning Boxes
   ========================================================================== */
.info-box {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-left: 4px solid var(--accent);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: #14532d;
  max-width: 800px;
  margin: 1.5rem 0;
}

.warning-section { background: #fff7ed; }

.warning-box {
  background: #fef3c7;
  border: 1px solid #fde68a;
  border-left: 4px solid var(--accent2);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: #92400e;
  max-width: 800px;
  margin-bottom: 1.5rem;
}

.warning-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
}

.warning-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #fed7aa;
  font-size: 0.9375rem;
  color: var(--text);
}

.warning-list li:last-child { border-bottom: none; }

/* ==========================================================================
   Vitrina / Casino Showcase
   ========================================================================== */
.vitrina-section {
  padding: 3rem 0;
  background: var(--bg-alt);
}

.section-title {
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.75rem;
  text-align: center;
}

.section-intro {
  color: var(--text-muted);
  font-size: 0.9375rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.casino-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.casino-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  display: flex;
  flex-direction: column;
}

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

.casino-card.featured {
  border: 2px solid var(--accent);
  box-shadow: 0 4px 20px rgba(22,163,74,0.15);
}

.card-badge {
  position: absolute;
  top: -10px;
  left: 1rem;
  background: linear-gradient(135deg, #d97706, #b45309);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  z-index: 1;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.875rem;
  padding-top: 0.5rem;
}

.card-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 44px;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  border-radius: var(--radius);
  flex-shrink: 0;
}

.logo-text {
  font-size: 0.8125rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.card-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.1rem;
}

.stars {
  font-size: 0.875rem;
  color: var(--gold);
  letter-spacing: 1px;
}

.rating-num {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text);
}

.card-body { flex: 1; margin-bottom: 1rem; }

.card-bonus {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.625rem;
}

.card-features {
  list-style: none;
  padding: 0;
  margin-bottom: 0.75rem;
}

.card-features li {
  font-size: 0.8125rem;
  color: var(--text-muted);
  padding: 0.2rem 0;
}

.card-payments {
  font-size: 0.75rem;
  color: var(--text-muted);
  padding: 0.5rem;
  background: var(--bg-alt);
  border-radius: var(--radius);
}

.btn-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 0.15s;
  margin-bottom: 0.5rem;
  text-align: center;
}

.btn-card:hover {
  color: #fff;
  text-decoration: none;
  transform: scale(1.02);
}

.card-disclaimer {
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-align: center;
  margin: 0;
}

.hidden-card { display: none; }
.hidden-card.visible { display: flex; }

.show-more-wrap { text-align: center; padding-top: 0.5rem; }

.btn-show-more {
  background: var(--bg);
  border: 2px solid var(--accent);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-show-more:hover {
  background: var(--accent);
  color: #fff;
}

/* ==========================================================================
   FS List
   ========================================================================== */
.fs-list {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 1.5rem 0;
  max-width: 800px;
}

.fs-list h3 {
  margin-top: 0;
  color: #14532d;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.fs-list ol {
  padding-left: 1.5rem;
}

.fs-list li {
  padding: 0.375rem 0;
  font-size: 0.9375rem;
  color: var(--text);
  border-bottom: 1px solid #dcfce7;
  line-height: 1.6;
}

.fs-list li:last-child { border-bottom: none; }

/* ==========================================================================
   How to Choose / Evaluation Grid
   ========================================================================== */
.evaluation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.eval-item {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}

.eval-icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.eval-item h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.eval-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
  max-width: 100%;
}

/* ==========================================================================
   E-E-A-T Author Section
   ========================================================================== */
.eeeat-section {
  padding: 3rem 0;
  background: #f0fdf4;
  border-top: 1px solid #bbf7d0;
  border-bottom: 1px solid #bbf7d0;
}

.author-card-large {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.author-avatar-large {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 4px solid var(--accent);
  background: linear-gradient(135deg, #16a34a, #15803d);
}

.author-card-body h3 {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.author-card-body h3 a { color: var(--text); }
.author-card-body h3 a:hover { color: var(--accent); }

.author-title {
  font-size: 0.875rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.author-card-body p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 1rem;
}

.author-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.credential-tag {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #14532d;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: 20px;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.btn-secondary:hover {
  background: var(--accent);
  color: #fff;
  text-decoration: none;
}

/* ==========================================================================
   Reviewed By Section
   ========================================================================== */
.reviewed-by-section {
  padding: 3rem 0;
  background: var(--bg);
}

.reviewer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.reviewer-card {
  display: flex;
  gap: 1rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  align-items: flex-start;
}

.reviewer-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--accent);
  background: linear-gradient(135deg, #0f172a, #1e3a5f);
}

.reviewer-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.reviewer-info p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0 0 0.5rem;
  max-width: 100%;
}

.reviewer-info p:first-of-type {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.8125rem;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-section {
  padding: 3.5rem 0;
  background: var(--bg-alt);
}

.faq-list {
  max-width: 800px;
  margin-top: 1.5rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  background: #fff;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  gap: 0.75rem;
  transition: background 0.15s;
}

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

.faq-icon {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 1.25rem 1rem;
}

.faq-answer.open { display: block; }

.faq-answer p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
  max-width: 100%;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col p {
  font-size: 0.8125rem;
  line-height: 1.7;
  color: #94a3b8;
  margin-bottom: 0.75rem;
}

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

.footer-col ul li {
  padding: 0.25rem 0;
}

.footer-col a {
  font-size: 0.8125rem;
  color: #94a3b8;
  transition: color 0.2s;
}

.footer-col a:hover { color: #f1f5f9; text-decoration: none; }

.footer-legal { font-size: 0.75rem !important; color: #64748b !important; }
.footer-legal a { color: #86efac; }

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 1.5rem;
}

.disclaimer {
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  max-width: 100%;
}

.copyright {
  font-size: 0.75rem;
  color: #475569;
}

.copyright a { color: #94a3b8; }

/* ==========================================================================
   Sticky CTA (mobile only)
   ========================================================================== */
.sticky-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: #0f172a;
  border-top: 2px solid var(--accent);
  padding: 0.75rem 1rem;
}

.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  max-width: 600px;
  margin: 0 auto;
}

.sticky-cta-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: #f1f5f9;
  flex-shrink: 0;
}

.btn-sticky {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius);
  text-decoration: none;
  white-space: nowrap;
}

.btn-sticky:hover { color: #fff; text-decoration: none; }
.btn-sticky .btn-micro { font-size: 0.6875rem; margin-top: 0.1rem; opacity: 0.9; }

/* ==========================================================================
   Popup
   ========================================================================== */
.scroll-popup[hidden] { display: none; }

.scroll-popup {
  position: fixed;
  inset: 0;
  z-index: 10000;
}

.popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(2px);
}

.popup-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 420px;
  width: calc(100% - 2rem);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  z-index: 1;
  text-align: center;
}

.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
}

.popup-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), #b45309);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.875rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

.popup-content h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.popup-content p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.popup-stars {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.popup-content .btn-primary {
  width: 100%;
  justify-content: center;
}

/* ==========================================================================
   Responsive — Tablet (768px+)
   ========================================================================== */
@media (min-width: 768px) {
  .container { padding: 0 1.5rem; }
}

/* ==========================================================================
   Responsive — Mobile (<768px)
   ========================================================================== */
@media (max-width: 767px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 90vw);
    height: 100vh;
    background: #fff;
    z-index: 2000;
    padding: 2rem 1.5rem;
    box-shadow: -4px 0 20px rgba(0,0,0,0.2);
    transition: right 0.3s ease;
    overflow-y: auto;
  }

  .mobile-nav.open { right: 0; }

  .mobile-nav ul {
    list-style: none;
    padding: 3rem 0 0;
  }

  .mobile-nav ul li {
    border-bottom: 1px solid var(--border);
  }

  .mobile-nav ul li a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
  }

  .mobile-nav-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text);
  }

  .sticky-cta-bar { display: block; }

  .casino-grid { grid-template-columns: 1fr; }
  .evaluation-grid { grid-template-columns: 1fr; }
  .reviewer-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .author-card-large {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .author-credentials { justify-content: center; }

  .hero { padding: 2rem 0 2rem; }

  .h2-banner-img { min-height: 80px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .nav-logo span { display: none; }
}

/* Reviewers list grid */
.reviewers-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 1rem;
}

.reviewer img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #16A34A;
}

.reviewer-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: #111827;
}

.reviewer-role {
  font-size: 0.8rem;
  color: #6B7280;
  margin-top: 2px;
}

/* ============================================================
   Casino List & Cards
   ============================================================ */
ul.casino-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

ul.casino-list li.casino-card {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}

ul.casino-list li.casino-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

ul.casino-list li.casino-card.featured {
  border: 2px solid var(--accent);
  background: #f0fdf4;
}

ul.casino-list li.casino-card.hidden {
  display: none;
}

.casino-rank {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-muted);
  min-width: 28px;
  text-align: center;
}

.casino-rank.gold { color: var(--gold); }

.casino-info { flex: 1; }

.casino-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.casino-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.casino-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.casino-tag {
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 20px;
  background: #f3f4f6;
  color: var(--text-muted);
}

.casino-tag.green { background: #dcfce7; color: #15803d; }
.casino-tag.blue  { background: #dbeafe; color: #1d4ed8; }

.casino-score {
  text-align: center;
  min-width: 60px;
}

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

.score-label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.casino-cta { min-width: 120px; text-align: right; }

.btn-casino {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), #15803d);
  color: #fff !important;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none !important;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.btn-casino:hover { opacity: 0.9; }

.best-badge {
  position: absolute;
  top: -10px;
  left: 16px;
  background: var(--gold);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

/* Filter tabs */
.filter-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 1.25rem 0 0.5rem;
}

.filter-tab {
  padding: 0.4rem 1rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  color: var(--text-muted);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-tab:hover, .filter-tab.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* Show more button */
.show-more-wrap { text-align: center; margin-top: 1.25rem; }

.btn-show-more {
  padding: 0.65rem 2rem;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  background: transparent;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-show-more:hover {
  background: var(--accent);
  color: #fff;
}

@media (max-width: 640px) {
  ul.casino-list li.casino-card {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }
  .casino-score { grid-column: 2; }
  .casino-cta   { grid-column: 1 / -1; text-align: center; }
  .btn-casino   { width: 100%; text-align: center; }
}
