/* Non Gamstop Casinos — christmasinuppingham.co.uk | main.css */
:root {
  --primary: #1a472a;
  --primary-dark: #0d2614;
  --accent: #c9a84c;
  --accent-light: #f0d080;
  --text: #1a1a2e;
  --text-light: #4a4a6a;
  --bg: #f8f9fa;
  --bg-dark: #0f1923;
  --white: #ffffff;
  --card-bg: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --radius: 12px;
  --radius-sm: 6px;
  --transition: 0.3s ease;
  --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }

/* ===== KEYFRAMES ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4); }
  50%       { box-shadow: 0 0 0 12px rgba(201, 168, 76, 0); }
}
@keyframes spin-tick {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes badge-pop {
  0%   { transform: scale(0.8); opacity: 0; }
  60%  { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes slide-in-left {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ===== HEADER ===== */
.site-header {
  background: var(--bg-dark);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}
.site-logo span { color: var(--accent); }
.site-nav { display: flex; gap: 1.5rem; align-items: center; }
.site-nav a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.site-nav a:hover { color: var(--accent); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 50%, #1a3a2a 100%);
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--accent-light);
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.2rem;
  animation: badge-pop 0.5s ease forwards;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
  animation: fadeInUp 0.6s ease forwards;
}
.hero h1 .highlight { color: var(--accent); }
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 680px;
  margin-bottom: 2rem;
  animation: fadeInUp 0.7s ease forwards;
}
.hero-author-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease forwards;
}
.hero-author-block img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  object-fit: cover;
}
.hero-pub-date {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}
.author-meta { color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 600; }
.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease forwards;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--bg-dark);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 1.8rem;
  border-radius: 8px;
  transition: all var(--transition);
  animation: pulse-glow 2s infinite;
  cursor: pointer;
  border: none;
}
.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  color: var(--bg-dark);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.6rem;
  border-radius: 8px;
  transition: all var(--transition);
  cursor: pointer;
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeInUp 1s ease forwards;
}
.stat-item { text-align: center; }
.stat-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.25rem;
  display: block;
}

/* ===== MAIN LAYOUT ===== */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}
.content-area { min-width: 0; }
.sidebar { position: sticky; top: 80px; }

/* ===== SECTIONS ===== */
.section { margin-bottom: 3rem; }
.section-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 3px solid var(--accent);
  display: inline-block;
}
.section-intro {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* ===== CASINO CARDS ===== */
.casino-list { display: flex; flex-direction: column; gap: 1.2rem; }
.casino-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  animation: fadeInUp 0.5s ease both;
}
.casino-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.casino-rank {
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: var(--bg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.casino-info { min-width: 0; }
.casino-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.casino-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 0.4rem;
}
.tag {
  background: #f0f4ff;
  color: var(--primary);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
}
.tag.fast { background: #f0fff4; color: #2d7a22; }
.tag.bonus { background: #fffbf0; color: #8a6000; }
.casino-desc { font-size: 0.9rem; color: var(--text-light); }
.casino-action { flex-shrink: 0; text-align: right; }
.casino-rating {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  text-align: center;
}
.stars { color: var(--accent); font-size: 1rem; }
.btn-visit {
  display: inline-block;
  background: var(--accent);
  color: var(--bg-dark);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-visit:hover {
  background: var(--accent-light);
  color: var(--bg-dark);
  transform: scale(1.04);
}

/* ===== SPEED SECTION ===== */
.speed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}
.speed-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.speed-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.speed-icon {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
  display: block;
}
.speed-time {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
  display: block;
  margin-bottom: 0.3rem;
}
.speed-method { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.3rem; }
.speed-note { font-size: 0.82rem; color: var(--text-light); }

/* ===== PAYMENT TABLE ===== */
.payment-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}
.payment-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.92rem;
}
.payment-table th {
  background: var(--primary);
  color: var(--white);
  padding: 0.9rem 1rem;
  text-align: left;
  font-weight: 700;
  white-space: nowrap;
}
.payment-table td {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.payment-table tr:last-child td { border-bottom: none; }
.payment-table tr:nth-child(even) td { background: #f8faff; }
.payment-table .fast-badge {
  background: #e8fff0;
  color: #157a3a;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 700;
}

/* ===== INTERACTIVE: WITHDRAWAL CALCULATOR ===== */
.calculator {
  background: linear-gradient(135deg, var(--primary-dark), #1a3a2a);
  border-radius: var(--radius);
  padding: 2rem;
  color: var(--white);
  margin-bottom: 2rem;
}
.calculator h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.2rem; }
.calc-group label {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.calc-group select, .calc-group input {
  width: 100%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 0.6rem 0.8rem;
  border-radius: 6px;
  font-size: 0.95rem;
}
.calc-group select option { background: var(--primary-dark); color: var(--white); }
.calc-result {
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.calc-result-label { font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.calc-result-value { font-size: 1.4rem; font-weight: 900; color: var(--accent-light); }

/* ===== INTERACTIVE: SPEED QUIZ ===== */
.quiz {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}
.quiz h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 1rem; color: var(--primary); }
.quiz-question { font-size: 1rem; color: var(--text); margin-bottom: 1rem; font-weight: 600; }
.quiz-options { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1rem; }
.quiz-option {
  background: #f8f9fa;
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: all var(--transition);
  font-size: 0.95rem;
  text-align: left;
  width: 100%;
  color: var(--text);
}
.quiz-option:hover { border-color: var(--accent); background: #fffbf0; }
.quiz-option.selected { border-color: var(--primary); background: #f0f8ff; }
.quiz-option.correct { border-color: #2d7a22; background: #f0fff4; color: #1a5c14; }
.quiz-option.wrong { border-color: #c0392b; background: #fff5f5; color: #8b1a1a; }
.quiz-feedback {
  padding: 0.8rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  display: none;
}
.quiz-feedback.show { display: block; }
.quiz-feedback.success { background: #f0fff4; color: #1a7a2e; border: 1px solid #a8e6b8; }
.quiz-feedback.info { background: #f0f4ff; color: #2a4a8a; border: 1px solid #b8c8f8; }

/* ===== INTERACTIVE: CASINO FILTER ===== */
.filter {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}
.filter h3 { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; color: var(--text); }
.filter-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  align-items: center;
}
.filter-btn {
  background: #f0f4ff;
  border: 2px solid transparent;
  color: var(--primary);
  padding: 0.45rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent);
  color: var(--bg-dark);
  border-color: var(--accent);
}
.filter-count {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-left: auto;
}

/* ===== INTERACTIVE: SPEED CHECKER ===== */
.checker {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}
.checker h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; color: var(--text); }
.checker-input-row {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.checker-input-row select {
  flex: 1;
  min-width: 180px;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
}
.checker-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
}
.checker-btn:hover { background: var(--primary-dark); }
.checker-result {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  color: var(--text);
  min-height: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ===== PROS/CONS ===== */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 2rem;
}
.pros-list, .cons-list {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}
.pros-list h4 { color: #1a7a2e; margin-bottom: 0.8rem; font-size: 0.95rem; font-weight: 700; }
.cons-list h4 { color: #c0392b; margin-bottom: 0.8rem; font-size: 0.95rem; font-weight: 700; }
.pros-list ul, .cons-list ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.pros-list li, .cons-list li { font-size: 0.9rem; color: var(--text-light); padding-left: 1.4rem; position: relative; }
.pros-list li::before { content: '✓'; position: absolute; left: 0; color: #1a7a2e; font-weight: 700; }
.cons-list li::before { content: '✗'; position: absolute; left: 0; color: #c0392b; font-weight: 700; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 2rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item.open { border-color: var(--accent); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.1rem 1.3rem;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: all var(--transition);
}
.faq-question:hover { background: #f8f9fa; }
.faq-item.open .faq-question { background: #fffbf0; color: var(--primary); }
.faq-arrow { font-size: 1.1rem; transition: transform var(--transition); }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 1.3rem 1.2rem;
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== REVIEWED BY ===== */
.reviewed-by-section {
  background: linear-gradient(135deg, #f8f9fa, #f0f4ff);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
}
.reviewed-by-section img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  object-fit: cover;
  flex-shrink: 0;
}
.reviewed-by-text h4 { font-size: 0.85rem; font-weight: 700; color: var(--primary); margin-bottom: 0.2rem; }
.reviewed-by-text p { font-size: 0.82rem; color: var(--text-light); }

/* ===== SIDEBAR ===== */
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}
.sidebar-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent);
}
.toc-list { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.toc-list li a {
  font-size: 0.85rem;
  color: var(--text-light);
  display: block;
  padding: 0.3rem 0;
  border-left: 2px solid transparent;
  padding-left: 0.8rem;
  transition: all var(--transition);
}
.toc-list li a:hover {
  color: var(--primary);
  border-left-color: var(--accent);
}
.sidebar-cta {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius);
  padding: 1.6rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
.sidebar-cta h3 { color: var(--white); font-size: 1rem; font-weight: 700; margin-bottom: 0.6rem; }
.sidebar-cta p { color: rgba(255,255,255,0.7); font-size: 0.82rem; margin-bottom: 1rem; }
.sidebar-cta .btn-primary { width: 100%; justify-content: center; font-size: 0.9rem; }
.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--text-light);
  padding: 0.5rem 0.7rem;
  background: #f8f9fa;
  border-radius: 6px;
}
.trust-badge-icon { font-size: 1.1rem; flex-shrink: 0; }

/* ===== INFO BOXES ===== */
.info-box {
  border-left: 4px solid var(--accent);
  background: #fffbf0;
  padding: 1.1rem 1.3rem;
  border-radius: 0 8px 8px 0;
  margin-bottom: 1.5rem;
}
.info-box p { font-size: 0.93rem; color: var(--text); margin: 0; }
.info-box strong { color: var(--primary); }
.warning-box {
  border-left: 4px solid #e67e22;
  background: #fff8f0;
  padding: 1.1rem 1.3rem;
  border-radius: 0 8px 8px 0;
  margin-bottom: 1.5rem;
}
.warning-box p { font-size: 0.93rem; color: var(--text); margin: 0; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.6);
  padding: 2.5rem 0 1.5rem;
  margin-top: 3rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-col p { font-size: 0.83rem; line-height: 1.6; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  font-size: 0.83rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
}
.disclaimer {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 0.8rem 1rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.2rem;
  line-height: 1.5;
}

/* ===== SHIMMER LOADING ===== */
.shimmer {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .main-content { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .hero-stats { gap: 1.2rem; flex-wrap: wrap; }
}
@media (max-width: 640px) {
  .hero { padding: 2.5rem 0 2rem; }
  .hero h1 { font-size: 1.8rem; }
  .casino-card { grid-template-columns: 1fr; gap: 0.8rem; }
  .calc-grid { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .site-nav { display: none; }
  .hero-stats { gap: 1rem; }
  .checker-input-row { flex-direction: column; }
  .speed-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 400px) {
  .speed-grid { grid-template-columns: 1fr; }
}
