/* ============================================
   Best Non GamStop Casinos UK - Main Stylesheet
   Modern, professional casino review design
   ============================================ */

/* --- CSS Variables --- */
:root {
  --primary: #1a1f3a;
  --primary-light: #252b4d;
  --secondary: #d4a843;
  --secondary-light: #e8c36a;
  --accent: #3b82f6;
  --accent-light: #60a5fa;
  --success: #22c55e;
  --warning: #f59e0b;
  --danger: #ef4444;
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --text-dark: #1e293b;
  --bg-body: #0f1225;
  --bg-card: #1a1f3a;
  --bg-card-hover: #222847;
  --border: #2d3561;
  --border-light: #3d4571;
  --gradient-gold: linear-gradient(135deg, #d4a843, #f0d78c, #d4a843);
  --gradient-hero: linear-gradient(135deg, #0f1225 0%, #1a1f3a 50%, #0f1225 100%);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.3), 0 2px 4px -2px rgba(0,0,0,0.2);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.4), 0 4px 6px -4px rgba(0,0,0,0.3);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
  --max-width: 1200px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, sans-serif;
  background: var(--bg-body);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-light); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--secondary); }
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: #fff; }
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 0.8rem; margin-top: 2.5rem; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); margin-bottom: 0.6rem; margin-top: 2rem; }
h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; color: var(--text); }

/* --- Layout --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 3rem 0; }
.section--alt { background: var(--primary); }

/* --- Header & Navigation --- */
.header {
  background: var(--primary);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
.logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo span { color: var(--secondary); }
.nav { display: flex; gap: 0.1rem; align-items: center; flex-wrap: wrap; }
.nav > a, .nav-dropdown > .nav-dropdown-toggle {
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 0.5rem 0.7rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.nav > a:hover, .nav > a.active,
.nav-dropdown:hover > .nav-dropdown-toggle { color: #fff; background: rgba(212,168,67,0.15); }
.nav-dropdown { position: relative; }
.nav-dropdown-toggle::after { content: '\25BE'; font-size: 0.7rem; opacity: 0.6; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  min-width: 220px;
  padding: 0.4rem 0;
  z-index: 1001;
  box-shadow: var(--shadow-lg);
  max-height: 420px;
  overflow-y: auto;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 0.45rem 1rem;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { color: #fff; background: rgba(212,168,67,0.12); }
.nav-dropdown-menu .dd-divider {
  height: 1px;
  background: var(--border);
  margin: 0.3rem 0;
}
.nav-dropdown-menu .dd-heading {
  padding: 0.4rem 1rem 0.2rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--secondary);
  font-weight: 700;
}
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--border);
  color: #fff;
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1.2rem;
}

/* --- Hero --- */
.hero {
  background: var(--gradient-hero);
  padding: 3rem 0 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(212,168,67,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero h1 { position: relative; z-index: 1; }
.hero h1 .highlight { color: var(--secondary); }
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}

/* --- Trust Bar --- */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
}
.trust-item .icon { font-size: 1.2rem; }

/* --- EEAT Author Box --- */
.author-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin: 1.5rem 0;
}
.author-box .avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-dark);
  flex-shrink: 0;
}
.author-box .author-info { flex: 1; }
.author-box .author-name { font-weight: 700; color: #fff; font-size: 0.95rem; }
.author-box .author-role { font-size: 0.8rem; color: var(--text-muted); }
.author-box .author-date { font-size: 0.8rem; color: var(--text-muted); margin-left: auto; white-space: nowrap; }

/* --- Casino Card --- */
.casino-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.casino-card:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.casino-card.featured {
  border-color: var(--secondary);
  box-shadow: 0 0 0 1px var(--secondary), var(--shadow-lg);
}
.casino-card.featured::before {
  content: 'Editor\'s Pick';
  position: absolute;
  top: 12px;
  right: -30px;
  background: var(--gradient-gold);
  color: var(--text-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 2.5rem;
  transform: rotate(45deg);
  text-transform: uppercase;
}
.casino-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1rem;
}
.casino-rank {
  width: 40px;
  height: 40px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-dark);
  flex-shrink: 0;
}
.casino-logo-wrap {
  width: 80px;
  height: 50px;
  background: #fff;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0.3rem;
  font-weight: 700;
  color: var(--primary);
  font-size: 0.7rem;
  text-align: center;
}
.casino-title-wrap { flex: 1; }
.casino-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.15rem;
}
.casino-tagline { font-size: 0.85rem; color: var(--text-muted); }
.casino-rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex-shrink: 0;
}
.rating-score {
  background: var(--success);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-sm);
}
.rating-label { font-size: 0.75rem; color: var(--text-muted); }
.casino-body {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 1rem;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.casino-detail h4 {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-bottom: 0.3rem;
}
.casino-detail .value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary);
}
.casino-detail .value small { font-weight: 400; color: var(--text-muted); font-size: 0.8rem; }
.casino-features {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.8rem;
}
.feature-tag {
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  background: rgba(59,130,246,0.15);
  color: var(--accent-light);
  border-radius: 20px;
  border: 1px solid rgba(59,130,246,0.3);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-gold);
  color: var(--text-dark);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(212,168,67,0.4);
  color: var(--text-dark);
}
.btn-secondary {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--text);
}
.btn-secondary:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}
.btn-sm { padding: 0.5rem 1rem; font-size: 0.8rem; }
.btn-lg { padding: 0.9rem 2rem; font-size: 1rem; }

/* --- Comparison Table --- */
.comparison-table {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin: 1.5rem 0;
}
.comparison-table thead th {
  background: var(--primary-light);
  color: var(--secondary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.8rem 1rem;
  text-align: left;
  font-weight: 700;
  border-bottom: 2px solid var(--border);
}
.comparison-table tbody td {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  vertical-align: middle;
}
.comparison-table tbody tr { background: var(--bg-card); transition: var(--transition); }
.comparison-table tbody tr:hover { background: var(--bg-card-hover); }
.comparison-table tbody tr:last-child td { border-bottom: none; }

/* --- Pros/Cons --- */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 1.5rem 0; }
.pros-list, .cons-list {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.pros-list h4 { color: var(--success); margin-bottom: 0.8rem; }
.cons-list h4 { color: var(--danger); margin-bottom: 0.8rem; }
.pros-list li, .cons-list li {
  padding: 0.4rem 0 0.4rem 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;
}

/* --- FAQ Accordion --- */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.8rem;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem 1.5rem;
  background: var(--bg-card);
  border: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}
.faq-question:hover { background: var(--bg-card-hover); }
.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  transition: var(--transition);
  color: var(--secondary);
}
.faq-item.open .faq-question::after { content: '\2212'; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: var(--primary);
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner { padding: 1rem 1.5rem; font-size: 0.95rem; color: var(--text-muted); }

/* --- Info Box / Callout --- */
.info-box {
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius);
  margin: 1.5rem 0;
  border-left: 4px solid var(--accent);
  background: rgba(59,130,246,0.1);
}
.info-box.warning { border-left-color: var(--warning); background: rgba(245,158,11,0.1); }
.info-box.success { border-left-color: var(--success); background: rgba(34,197,94,0.1); }
.info-box h4 { margin-bottom: 0.5rem; font-size: 1rem; }
.info-box p { margin-bottom: 0; font-size: 0.9rem; color: var(--text-muted); }

/* --- Payment Icons Grid --- */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.payment-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  transition: var(--transition);
}
.payment-item:hover { border-color: var(--secondary); }
.payment-item .name { font-weight: 600; font-size: 0.9rem; margin-bottom: 0.3rem; }
.payment-item .speed { font-size: 0.75rem; color: var(--success); }

/* --- Stats Grid --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}
.stat-card .stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-card .stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- TOC (Table of Contents) --- */
.toc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.toc h3 { font-size: 1rem; margin-bottom: 0.8rem; margin-top: 0; }
.toc ol { counter-reset: toc; padding-left: 0; }
.toc li {
  counter-increment: toc;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
}
.toc li:last-child { border-bottom: none; }
.toc li::before {
  content: counter(toc) '.';
  color: var(--secondary);
  font-weight: 700;
  margin-right: 0.5rem;
}
.toc a { color: var(--text-muted); font-size: 0.9rem; }
.toc a:hover { color: var(--secondary); }

/* --- Content Blocks --- */
.content-block { margin: 2rem 0; }
.content-block h2 { padding-top: 1rem; border-top: 1px solid var(--border); }
.content-block p { font-size: 0.95rem; line-height: 1.8; }
.content-block ul, .content-block ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.content-block li {
  padding: 0.3rem 0;
  font-size: 0.95rem;
  list-style: disc;
  color: var(--text);
}
.content-block ol li { list-style: decimal; }

/* --- Breadcrumbs --- */
.breadcrumbs {
  padding: 0.8rem 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--secondary); }
.breadcrumbs span { margin: 0 0.4rem; }

/* --- Footer --- */
.footer {
  background: var(--primary);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
  margin-top: 3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer h4 {
  color: var(--secondary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}
.footer p { font-size: 0.85rem; color: var(--text-muted); }
.footer ul li { padding: 0.3rem 0; }
.footer ul a { color: var(--text-muted); font-size: 0.85rem; }
.footer ul a:hover { color: var(--secondary); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.footer-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.footer-badge {
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* --- Sidebar (for review pages) --- */
.layout-sidebar {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  align-items: start;
}
.sidebar-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  position: sticky;
  top: 80px;
}
.sidebar-widget h4 { margin-bottom: 1rem; font-size: 1rem; }

/* --- Methodology Box --- */
.methodology-box {
  background: var(--bg-card);
  border: 1px solid var(--secondary);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 2rem 0;
}
.methodology-box h3 { color: var(--secondary); margin-top: 0; }
.methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.method-item {
  padding: 1rem;
  background: var(--primary);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.method-item .method-score {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--secondary);
}
.method-item .method-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.3rem; }
.method-item .method-desc { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.3rem; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .layout-sidebar { grid-template-columns: 1fr; }
  .sidebar-widget { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--primary); border-bottom: 1px solid var(--border); padding: 1rem; z-index: 999; gap: 0; }
  .nav.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-dropdown { width: 100%; }
  .nav-dropdown-menu { position: static; border: none; box-shadow: none; background: var(--primary-light); border-radius: 0; min-width: 100%; max-height: none; display: none; padding-left: 1rem; }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-dropdown:hover .nav-dropdown-menu { display: none; }
  .nav-dropdown.open:hover .nav-dropdown-menu { display: block; }
  .casino-body { grid-template-columns: 1fr 1fr; }
  .casino-header { flex-wrap: wrap; }
  .pros-cons { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 2rem 0; }
  .trust-bar { gap: 1rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .casino-body { grid-template-columns: 1fr; }
  .casino-header .casino-rating { width: 100%; justify-content: flex-start; margin-top: 0.5rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .comparison-table { font-size: 0.8rem; }
  .comparison-table thead th, .comparison-table tbody td { padding: 0.5rem; }
}

/* --- Schema/Structured data visual cues --- */
.last-updated { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1rem; }
.star-rating { color: var(--secondary); letter-spacing: 2px; }

/* --- Scroll to top --- */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--gradient-gold);
  color: var(--text-dark);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { transform: translateY(-3px); }

/* --- Age gate banner --- */
.age-banner {
  background: var(--primary-light);
  border-bottom: 1px solid var(--border);
  padding: 0.4rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.age-banner strong { color: var(--warning); }

/* --- Casino mini-card (for sidebar/grids) --- */
.mini-card {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  background: var(--primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
  transition: var(--transition);
}
.mini-card:hover { border-color: var(--secondary); }
.mini-card .mc-name { font-weight: 600; font-size: 0.85rem; }
.mini-card .mc-bonus { font-size: 0.75rem; color: var(--secondary); }
.mini-card .mc-btn {
  margin-left: auto;
  font-size: 0.75rem;
  padding: 0.3rem 0.6rem;
}

/* --- Review score circle --- */
.score-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--secondary);
  flex-shrink: 0;
}
.score-circle .sc-num { font-size: 1.5rem; font-weight: 800; color: var(--secondary); line-height: 1; }
.score-circle .sc-label { font-size: 0.6rem; color: var(--text-muted); text-transform: uppercase; }

/* --- Animated gradient border on featured --- */
@keyframes borderGlow {
  0%, 100% { border-color: var(--secondary); }
  50% { border-color: var(--accent); }
}
.casino-card.featured { animation: borderGlow 3s ease-in-out infinite; }

/* --- Print styles --- */
@media print {
  .header, .footer, .scroll-top, .age-banner, .btn { display: none; }
  body { background: #fff; color: #000; }
  .casino-card { border: 1px solid #ccc; page-break-inside: avoid; }
}
