/*
Theme Name: CasinoTrust
Theme URI: https://casinotrust.ca
Author: CasinoTrust.ca
Description: Ontario Casino Directory Theme
Version: 1.0
*/

/* ============================================
   CSS VARIABLES
============================================ */
:root {
  --green-dark: #1a3a2a;
  --green-mid: #1f4a34;
  --green-light: #2a5c42;
  --gold: #c9a84c;
  --gold-light: #dfc06a;
  --gold-pale: rgba(201,168,76,0.12);
  --white: #ffffff;
  --off-white: #f8f6f1;
  --gray-100: #f4f2ee;
  --gray-200: #e8e4dc;
  --gray-400: #a09880;
  --gray-600: #6b6355;
  --gray-800: #3a3228;
  --text-dark: #1e1a14;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(26,58,42,0.08);
  --shadow-md: 0 4px 20px rgba(26,58,42,0.12);
  --shadow-lg: 0 8px 40px rgba(26,58,42,0.16);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', 'Helvetica Neue', sans-serif;
}

/* ============================================
   RESET & BASE
============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--off-white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* ============================================
   TYPOGRAPHY
============================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--text-dark);
}
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ============================================
   LAYOUT
============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container--narrow { max-width: 860px; }

/* ============================================
   NAVIGATION
============================================ */
.site-header {
  background: var(--green-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo img { height: 42px; width: auto; }
.site-logo-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--white);
  letter-spacing: -0.02em;
}
.site-logo-text span { color: var(--gold); }

.main-nav { display: flex; align-items: center; gap: 0.25rem; }
.main-nav a {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  font-weight: 500;
}
.main-nav a:hover { color: var(--gold); background: rgba(255,255,255,0.06); }
.main-nav .nav-cta {
  background: var(--gold);
  color: var(--green-dark);
  font-weight: 600;
  margin-left: 0.5rem;
}
.main-nav .nav-cta:hover { background: var(--gold-light); color: var(--green-dark); }

/* ============================================
   HERO SECTION
============================================ */
.hero {
  background: var(--green-dark);
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 3rem);
}
.hero h1 em {
  color: var(--gold);
  font-style: normal;
}
.hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-search {
  background: white;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  padding: 6px 6px 6px 1rem;
  gap: 0.75rem;
  box-shadow: var(--shadow-lg);
  max-width: 520px;
  margin: 0 auto 1.5rem;
}
.hero-search svg { color: var(--gray-400); flex-shrink: 0; }
.hero-search input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: transparent;
}
.hero-search input::placeholder { color: var(--gray-400); }
.hero-search button {
  background: var(--green-dark);
  color: white;
  border: none;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s;
  white-space: nowrap;
}
.hero-search button:hover { background: var(--green-light); }

.filter-pills {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.filter-pill {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
  padding: 5px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 500;
}
.filter-pill:hover, .filter-pill.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-dark);
}

/* ============================================
   STATS BAR
============================================ */
.stats-bar {
  background: var(--gold);
  padding: 0.875rem 0;
}
.stats-bar .container {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(26,58,42,0.7);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* ============================================
   SECTION STYLES
============================================ */
.section { padding: 3rem 0; }
.section--alt { background: var(--gray-100); }
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
}
.section-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 24px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}
.see-all {
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.see-all:hover { gap: 8px; }

/* ============================================
   CASINO CARDS
============================================ */
.casino-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.casino-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.casino-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.casino-card-header {
  background: var(--green-dark);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.casino-logo {
  width: 56px;
  height: 56px;
  background: white;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green-dark);
  text-align: center;
  padding: 6px;
  flex-shrink: 0;
  overflow: hidden;
}
.casino-logo img { width: 100%; height: 100%; object-fit: contain; }
.casino-header-info { flex: 1; min-width: 0; }
.casino-name {
  color: white;
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.casino-type-badge {
  display: inline-block;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.badge--online { background: rgba(201,168,76,0.2); color: var(--gold); }
.badge--land { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.8); }
.casino-score {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-shrink: 0;
}
.casino-score-num {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
}

.casino-card-promo {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  border-top: 2px solid var(--gold);
  padding: 0.875rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.promo-bonus-text {
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.3;
}
.promo-code-pill {
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
  flex-shrink: 0;
}

.casino-card-body { padding: 1rem; flex: 1; }
.casino-stars {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 0.625rem;
}
.star { color: var(--gold); font-size: 0.875rem; }
.star--empty { color: var(--gray-200); }
.casino-review-count { font-size: 0.75rem; color: var(--gray-400); margin-left: 4px; }
.casino-tags {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 0.875rem;
}
.tag {
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 500;
}

.casino-card-footer {
  padding: 0.875rem 1rem;
  border-top: 1px solid var(--gray-100);
  display: flex;
  gap: 8px;
}
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; font-family: var(--font-body); font-weight: 600; border-radius: var(--radius-md); transition: all 0.2s; cursor: pointer; border: none; }
.btn--primary { background: var(--gold); color: var(--green-dark); padding: 0.625rem 1.25rem; font-size: 0.875rem; }
.btn--primary:hover { background: var(--gold-light); }
.btn--outline { background: transparent; color: var(--green-dark); border: 1.5px solid var(--green-dark); padding: 0.625rem 1rem; font-size: 0.875rem; }
.btn--outline:hover { background: var(--green-dark); color: white; }
.btn--full { width: 100%; }
.btn--lg { padding: 0.875rem 2rem; font-size: 1rem; border-radius: var(--radius-md); }

/* ============================================
   SINGLE CASINO PAGE
============================================ */
.casino-hero {
  background: var(--green-dark);
  padding: 2rem 0;
}
.casino-hero-inner {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.casino-hero-logo {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  padding: 8px;
}
.casino-hero-logo img { width: 100%; height: 100%; object-fit: contain; }
.casino-hero-info { flex: 1; }
.casino-hero-info h1 { color: white; margin-bottom: 0.5rem; }
.casino-hero-meta { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; margin-bottom: 0.5rem; }
.casino-hero-stars { display: flex; align-items: center; gap: 4px; }
.casino-hero-stars .star { font-size: 1rem; }
.casino-hero-stars span { color: rgba(255,255,255,0.65); font-size: 0.875rem; margin-left: 4px; }
.casino-hero-score {
  width: 64px; height: 64px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
.casino-hero-score .score-big { font-size: 1.5rem; font-weight: 700; color: var(--green-dark); line-height: 1; }
.casino-hero-score .score-denom { font-size: 0.65rem; color: rgba(26,58,42,0.65); }

.casino-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 1.5rem;
  padding: 2rem 0;
  align-items: start;
}
.casino-main { display: flex; flex-direction: column; gap: 1.5rem; }
.casino-sidebar { display: flex; flex-direction: column; gap: 1.25rem; position: sticky; top: 84px; }

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}
.card-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 8px;
}
.card-header h2, .card-header h3 {
  font-size: 1rem;
  color: var(--text-dark);
  margin: 0;
}
.card-header svg { color: var(--gold); flex-shrink: 0; }
.card-body { padding: 1.25rem; }

/* PROMO CARD */
.promo-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--gold);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(201,168,76,0.15);
}
.promo-card-header {
  background: var(--gold);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.promo-card-header-left { display: flex; align-items: center; gap: 8px; }
.promo-card-header span { font-size: 0.8rem; font-weight: 700; color: var(--green-dark); text-transform: uppercase; letter-spacing: 0.04em; }
.promo-updated { font-size: 0.75rem; color: rgba(26,58,42,0.6); }
.promo-card-body { padding: 1.25rem; }
.promo-bonus-amount {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--green-dark);
  margin-bottom: 3px;
  line-height: 1;
}
.promo-bonus-sub { font-size: 0.875rem; color: var(--gray-600); margin-bottom: 1rem; }
.promo-code-row { display: flex; gap: 8px; margin-bottom: 0.75rem; }
.promo-code-box {
  flex: 1;
  background: var(--gray-100);
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 0.625rem 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.08em;
  text-align: center;
  font-family: monospace;
}
.copy-btn {
  background: var(--green-dark);
  color: white;
  border: none;
  padding: 0.625rem 0.875rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: background 0.2s;
}
.copy-btn:hover { background: var(--green-light); }
.promo-expiry { font-size: 0.8rem; color: var(--gray-400); display: flex; align-items: center; gap: 5px; margin-bottom: 1rem; }
.promo-expiry svg { color: #e67e22; }
.claim-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.875rem;
  border-radius: var(--radius-md);
  width: 100%;
  border: none;
  text-decoration: none;
  transition: background 0.2s;
  margin-bottom: 0.625rem;
}
.claim-btn:hover { background: var(--gold-light); }
.promo-tcs { font-size: 0.72rem; color: var(--gray-400); text-align: center; }
.promo-tcs a { color: var(--gold); text-decoration: underline; }

/* RATING BREAKDOWN */
.rating-overall {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1.25rem;
}
.rating-circle {
  width: 64px; height: 64px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
.rating-circle-num { font-size: 1.5rem; font-weight: 700; color: var(--green-dark); line-height: 1; }
.rating-circle-denom { font-size: 0.65rem; color: rgba(26,58,42,0.65); }
.rating-overall-info .rating-title { font-weight: 600; color: var(--text-dark); font-size: 0.95rem; }
.rating-overall-info .rating-sub { font-size: 0.8rem; color: var(--gray-400); }
.rating-bars { display: flex; flex-direction: column; gap: 10px; }
.rating-bar-row { display: flex; align-items: center; gap: 10px; }
.rating-bar-label { width: 130px; font-size: 0.8rem; color: var(--gray-600); flex-shrink: 0; }
.rating-bar-track { flex: 1; height: 8px; background: var(--gray-100); border-radius: 4px; overflow: hidden; }
.rating-bar-fill { height: 100%; background: var(--gold); border-radius: 4px; }
.rating-bar-val { width: 28px; font-size: 0.8rem; font-weight: 600; color: var(--text-dark); text-align: right; }

/* REVIEWS */
.reviews-list { display: flex; flex-direction: column; gap: 0.875rem; margin-top: 1rem; }
.review-item { background: var(--gray-100); border-radius: var(--radius-md); padding: 1rem; }
.review-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; }
.reviewer-info { display: flex; align-items: center; gap: 8px; }
.reviewer-avatar {
  width: 28px; height: 28px;
  background: var(--green-dark);
  color: var(--gold);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.reviewer-name { font-size: 0.875rem; font-weight: 600; color: var(--text-dark); }
.review-stars { display: flex; gap: 2px; }
.review-text { font-size: 0.875rem; color: var(--gray-600); line-height: 1.5; }
.review-date { font-size: 0.75rem; color: var(--gray-400); margin-top: 0.4rem; }
.write-review-btn {
  display: flex; align-items: center; gap: 8px;
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius-md);
  padding: 0.875rem;
  color: var(--gray-600);
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
  width: 100%;
  text-align: left;
}
.write-review-btn:hover { border-color: var(--gold); color: var(--gold); }

/* CASINO DETAILS GRID */
.details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.detail-item { background: var(--gray-100); border-radius: var(--radius-sm); padding: 0.75rem; }
.detail-label { font-size: 0.72rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.04em; font-weight: 600; margin-bottom: 3px; }
.detail-value { font-size: 0.875rem; font-weight: 600; color: var(--text-dark); }

/* QUICK FACTS SIDEBAR */
.quick-facts { display: flex; flex-direction: column; }
.fact-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.875rem;
}
.fact-row:last-child { border-bottom: none; }
.fact-label-s { color: var(--gray-600); display: flex; align-items: center; gap: 6px; }
.fact-label-s svg { color: var(--gold); }
.fact-value { font-weight: 600; color: var(--text-dark); }
.fact-value--green { color: #2a7a4a; }

/* SIMILAR CASINOS */
.similar-list { display: flex; flex-direction: column; gap: 0.75rem; }
.similar-item { display: flex; align-items: center; gap: 10px; }
.similar-logo {
  width: 40px; height: 40px;
  background: var(--green-dark);
  border-radius: var(--radius-sm);
  font-size: 0.65rem; font-weight: 700;
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 4px;
  flex-shrink: 0;
}
.similar-info { flex: 1; min-width: 0; }
.similar-name { font-size: 0.875rem; font-weight: 600; color: var(--text-dark); }
.similar-bonus { font-size: 0.75rem; color: var(--gold); }
.similar-btn {
  background: var(--gold);
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

/* RESPONSIBLE GAMBLING */
.rg-card {
  background: var(--green-dark);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: center;
}
.rg-card h4 { color: white; margin-bottom: 0.5rem; font-size: 0.95rem; }
.rg-card p { color: rgba(255,255,255,0.6); font-size: 0.8rem; line-height: 1.5; margin-bottom: 0.875rem; }
.rg-btn {
  display: block;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px;
  border-radius: var(--radius-sm);
  text-align: center;
}

/* ============================================
   REGIONS GRID
============================================ */
.regions-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; }
.region-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.region-card:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.region-icon { font-size: 1.75rem; margin-bottom: 0.5rem; }
.region-name { font-weight: 600; color: var(--text-dark); font-size: 0.9rem; }
.region-count { font-size: 0.8rem; color: var(--gray-400); margin-top: 3px; }

/* ============================================
   TRUST SECTION
============================================ */
.trust-section { background: var(--green-dark); padding: 3rem 0; }
.trust-section h2 { color: white; text-align: center; margin-bottom: 0.5rem; }
.trust-section .trust-sub { color: rgba(255,255,255,0.6); text-align: center; font-size: 0.95rem; margin-bottom: 2rem; }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.trust-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
}
.trust-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.trust-item h4 { color: white; font-size: 0.95rem; margin-bottom: 0.5rem; }
.trust-item p { color: rgba(255,255,255,0.55); font-size: 0.8rem; line-height: 1.5; margin: 0; }

/* ============================================
   BREADCRUMBS
============================================ */
.breadcrumbs {
  background: var(--gray-100);
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.8rem;
  color: var(--gray-400);
}
.breadcrumbs a { color: var(--gold); }
.breadcrumbs span { margin: 0 6px; }

/* ============================================
   FOOTER
============================================ */
.site-footer { background: #0f2318; padding: 2.5rem 0 1.5rem; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-brand .site-logo { margin-bottom: 0.875rem; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.85rem; line-height: 1.6; }
.footer-umbrella { color: rgba(255,255,255,0.35); font-size: 0.8rem; margin-top: 0.75rem; }
.footer-umbrella a { color: var(--gold); }
.footer-col h5 { color: white; font-size: 0.875rem; font-weight: 700; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.04em; }
.footer-col a { display: block; color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-bottom: 0.5rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { color: rgba(255,255,255,0.3); font-size: 0.8rem; }
.footer-legal { display: flex; gap: 1.25rem; }
.footer-legal a { color: rgba(255,255,255,0.35); font-size: 0.8rem; }
.footer-legal a:hover { color: var(--gold); }

/* ============================================
   ARCHIVE / DIRECTORY PAGE
============================================ */
.archive-header { background: var(--green-dark); padding: 2.5rem 0; }
.archive-header h1 { color: white; margin-bottom: 0.5rem; }
.archive-header p { color: rgba(255,255,255,0.6); font-size: 1rem; }
.archive-filters { background: white; border-bottom: 1px solid var(--gray-200); padding: 1rem 0; position: sticky; top: 68px; z-index: 50; }
.archive-filters .container { display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: center; }
.archive-filters select {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  font-family: var(--font-body);
  color: var(--text-dark);
  cursor: pointer;
}
.casino-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.casino-list-item {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem;
  transition: all 0.2s;
}
.casino-list-item:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.list-casino-logo {
  width: 80px; height: 60px;
  background: var(--green-dark);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700;
  color: var(--gold); text-align: center; padding: 6px;
}
.list-casino-info h3 { font-size: 1rem; margin-bottom: 4px; }
.list-casino-bonus { color: var(--gold); font-size: 0.875rem; font-weight: 600; margin-bottom: 4px; }
.list-casino-meta { display: flex; gap: 6px; flex-wrap: wrap; }
.list-casino-actions { display: flex; flex-direction: column; gap: 6px; text-align: center; }
.list-score { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--green-dark); line-height: 1; }
.list-score-lbl { font-size: 0.7rem; color: var(--gray-400); }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 900px) {
  .casino-layout { grid-template-columns: 1fr; }
  .casino-sidebar { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .casino-list-item { grid-template-columns: 60px 1fr; }
  .list-casino-actions { display: none; }
}
@media (max-width: 640px) {
  .main-nav { display: none; }
  .casino-grid { grid-template-columns: 1fr; }
  .stats-bar .container { gap: 1.5rem; }
  .footer-top { grid-template-columns: 1fr; }
  .casino-hero-inner { flex-wrap: wrap; }
  .casino-list-item { grid-template-columns: 1fr; }
}

/* ============================================
   GOOGLE FONTS IMPORT
============================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Source+Sans+3:wght@400;500;600;700&display=swap');
