/* ===== TABBAR HOUSE - Non GamStop Casinos UK ===== */
/* Modern, premium design optimized for iGaming affiliate */

/* ----- Reset & Base ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #1a1a2e;
  --primary-light: #16213e;
  --secondary: #0f3460;
  --accent: #e9b44c;
  --accent-hover: #d4a03a;
  --text: #e0e0e0;
  --text-muted: #a0a0b0;
  --text-dark: #1a1a2e;
  --white: #ffffff;
  --bg-card: #1e2a3a;
  --bg-card-hover: #243447;
  --border: #2a3a4a;
  --success: #4caf50;
  --warning: #ff9800;
  --danger: #ef5350;
  --star: #ffc107;
  --gradient-hero: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  --gradient-accent: linear-gradient(135deg, #e9b44c 0%, #d4a03a 100%);
  --gradient-cta: linear-gradient(135deg, #e9b44c 0%, #f0c85a 50%, #d4a03a 100%);
  --shadow: 0 4px 20px rgba(0,0,0,0.3);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.4);
  --radius: 12px;
  --radius-sm: 8px;
  --max-width: 1200px;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

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

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

a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-hover); }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

/* ----- Typography ----- */
h1, h2, h3, h4, h5, h6 { color: var(--white); line-height: 1.3; font-weight: 700; }
h1 { font-size: 2.5rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 0.8rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.6rem; }
h4 { font-size: 1.25rem; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; }

/* ----- Header & Navigation ----- */
.site-header {
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span { color: var(--accent); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}

.main-nav a {
  color: var(--text);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent);
  background: rgba(233, 180, 76, 0.1);
}

/* ----- Dropdown Navigation ----- */
.has-dropdown { position: relative; }

.has-dropdown > a::after {
  content: ' \25BE';
  font-size: 0.65rem;
  opacity: 0.6;
}

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  min-width: 220px;
  padding: 8px 0;
  z-index: 1001;
  box-shadow: var(--shadow);
  max-height: 70vh;
  overflow-y: auto;
}

.has-dropdown:hover > .dropdown,
.has-dropdown.open > .dropdown { display: block; }

.dropdown li { margin: 0; }

.dropdown a {
  display: block;
  padding: 8px 16px !important;
  font-size: 0.85rem !important;
  white-space: nowrap;
  border-radius: 0 !important;
}

.dropdown a:hover {
  background: var(--bg-card-hover);
  color: var(--accent);
}

.dropdown-mega {
  min-width: 200px;
  columns: 2;
  column-gap: 0;
}

@media (max-width: 768px) {
  .dropdown {
    position: static;
    border: none;
    box-shadow: none;
    background: rgba(255,255,255,0.03);
    padding: 0 0 0 16px;
    columns: 1;
    max-height: none;
  }
  .has-dropdown > a::after { content: ' +'; }
  .has-dropdown.open > a::after { content: ' \2212'; }
  .dropdown-mega { columns: 1; }
}

/* ----- Hero Section ----- */
.hero {
  background: var(--gradient-hero);
  padding: 60px 0 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(233,180,76,0.05) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(15,52,96,0.3) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; }

.hero h1 { font-size: 2.8rem; margin-bottom: 0.5rem; }
.hero h1 .highlight { color: var(--accent); }

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.05);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.hero-badge .icon { color: var(--accent); font-size: 1rem; }

/* Update notice */
.update-notice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: var(--success);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

/* ----- Casino Cards ----- */
.casino-list { display: flex; flex-direction: column; gap: 20px; margin: 30px 0; }

.casino-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  transition: all 0.3s;
  position: relative;
}

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

.casino-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(233,180,76,0.15);
}

.casino-card.featured::before {
  content: 'Editor\'s Choice';
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--gradient-accent);
  color: var(--text-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 0 0 6px 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.casino-rank {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  width: 50px;
  text-align: center;
}

.casino-rank span {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.casino-info { flex: 1; }

.casino-name {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--white);
}

.casino-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.stars { color: var(--star); font-size: 0.9rem; letter-spacing: 2px; }
.rating-score { color: var(--accent); font-weight: 700; font-size: 0.9rem; }

.casino-bonus {
  background: rgba(233,180,76,0.1);
  border: 1px solid rgba(233,180,76,0.2);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  display: inline-block;
  margin-bottom: 10px;
}

.casino-bonus .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.casino-bonus .value {
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
}

.casino-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.feature-tag {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 3px 10px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.casino-cta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 160px;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}

.btn-primary {
  background: var(--gradient-cta);
  color: var(--text-dark);
  box-shadow: 0 4px 15px rgba(233,180,76,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233,180,76,0.4);
  color: var(--text-dark);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.85rem;
  padding: 8px 16px;
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-sm { padding: 8px 16px; font-size: 0.85rem; }

/* ----- Comparison Table ----- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.comparison-table thead { background: var(--secondary); }

.comparison-table th {
  padding: 14px 16px;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comparison-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.comparison-table tbody tr:hover { background: var(--bg-card-hover); }
.comparison-table tbody tr:last-child td { border-bottom: none; }

.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ----- Content Sections ----- */
.content-section {
  padding: 50px 0;
}

.content-section:nth-child(even) {
  background: var(--primary-light);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 10px auto 0;
  border-radius: 2px;
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 10px auto 0;
}

/* ----- Info Boxes ----- */
.info-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin: 20px 0;
}

.info-box.warning {
  border-left: 4px solid var(--warning);
}

.info-box.tip {
  border-left: 4px solid var(--success);
}

.info-box.danger {
  border-left: 4px solid var(--danger);
}

.info-box h4 {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ----- Grid Layouts ----- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-card .icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.feature-card h4 { margin-bottom: 8px; }
.feature-card p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* ----- FAQ Accordion ----- */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--white);
  transition: background 0.2s;
}

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

.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--accent);
  transition: transform 0.3s;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 20px 18px;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

/* ----- Pros/Cons ----- */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 20px 0;
}

.pros, .cons {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
}

.pros { border-top: 3px solid var(--success); }
.cons { border-top: 3px solid var(--danger); }

.pros h4 { color: var(--success); }
.cons h4 { color: var(--danger); }

.pros ul, .cons ul {
  list-style: none;
  margin-top: 10px;
}

.pros li, .cons li {
  padding: 6px 0;
  padding-left: 22px;
  position: relative;
  font-size: 0.9rem;
}

.pros li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.cons li::before {
  content: '\2717';
  position: absolute;
  left: 0;
  color: var(--danger);
  font-weight: 700;
}

/* ----- Payment Method Icons ----- */
.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 15px 0;
}

.payment-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ----- Author Box (EEAT) ----- */
.author-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin: 30px 0;
}

.author-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.author-info h4 { margin-bottom: 4px; }
.author-info .role { color: var(--accent); font-size: 0.85rem; margin-bottom: 6px; }
.author-info p { color: var(--text-muted); font-size: 0.85rem; margin: 0; }

/* ----- Review Methodology ----- */
.methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.methodology-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.methodology-item .score {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
}

.methodology-item h4 { margin: 8px 0 6px; }
.methodology-item p { color: var(--text-muted); font-size: 0.85rem; margin: 0; }

/* ----- Breadcrumbs ----- */
.breadcrumbs {
  padding: 15px 0;
  font-size: 0.85rem;
}

.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs span { color: var(--text-muted); margin: 0 6px; }
.breadcrumbs .current { color: var(--accent); }

/* ----- Footer ----- */
.site-footer {
  background: #0d0d1a;
  border-top: 1px solid var(--border);
  padding: 50px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-about p { color: var(--text-muted); font-size: 0.9rem; margin-top: 12px; }

.footer-col h4 {
  color: var(--accent);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

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

.footer-col li { margin-bottom: 8px; }

.footer-col a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
}

.footer-disclaimer {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto 15px;
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--danger);
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.8rem;
  margin: 10px auto;
}

/* ----- Responsible Gambling Banner ----- */
.rg-banner {
  background: rgba(239, 83, 80, 0.1);
  border: 1px solid rgba(239, 83, 80, 0.3);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 30px 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.rg-banner .icon { font-size: 2rem; flex-shrink: 0; }
.rg-banner p { margin: 0; font-size: 0.9rem; color: var(--text-muted); }
.rg-banner a { color: var(--accent); font-weight: 600; }

/* ----- Table of Contents ----- */
.toc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 20px 0;
}

.toc h4 { margin-bottom: 12px; font-size: 1rem; }

.toc ol {
  padding-left: 20px;
  margin: 0;
}

.toc li {
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.toc a { color: var(--text-muted); }
.toc a:hover { color: var(--accent); }

/* ----- Tags / Labels ----- */
.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

.tag-new { background: rgba(76,175,80,0.2); color: var(--success); }
.tag-hot { background: rgba(239,83,80,0.2); color: var(--danger); }
.tag-best { background: rgba(233,180,76,0.2); color: var(--accent); }
.tag-crypto { background: rgba(156,39,176,0.2); color: #ce93d8; }

/* ----- Casino Review Detail ----- */
.review-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin: 20px 0;
}

.review-scores {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.score-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  text-align: center;
  min-width: 120px;
}

.score-item .score-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
}

.score-item .score-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ----- Content Typography ----- */
.content-body { max-width: 900px; }

.content-body h2 {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.content-body h2:first-child { margin-top: 0; padding-top: 0; border: none; }

.content-body h3 { margin-top: 25px; color: var(--accent); }

.content-body ul, .content-body ol {
  margin: 15px 0;
  padding-left: 24px;
}

.content-body li { margin-bottom: 8px; }

.content-body blockquote {
  border-left: 3px solid var(--accent);
  padding: 15px 20px;
  margin: 20px 0;
  background: rgba(233,180,76,0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text-muted);
  font-style: italic;
}

.content-body strong { color: var(--white); }

/* ----- Sticky CTA Sidebar ----- */
.page-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 30px;
  align-items: start;
}

.sidebar { position: sticky; top: 80px; }

.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
}

.sidebar-card h4 { margin-bottom: 12px; font-size: 1rem; }

.sidebar-casino {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.sidebar-casino:last-child { border: none; }

.sidebar-casino .name { font-weight: 600; font-size: 0.85rem; }
.sidebar-casino .bonus { font-size: 0.75rem; color: var(--accent); }

/* ----- Responsive ----- */
@media (max-width: 1024px) {
  .page-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .hero h1 { font-size: 2rem; }
  .hero { padding: 40px 0 35px; }

  .nav-toggle { display: block; }

  .main-nav {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--primary);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
    display: none;
    z-index: 999;
  }

  .main-nav.open { display: block; }

  .main-nav ul {
    flex-direction: column;
    padding: 0 20px;
  }

  .main-nav a {
    display: block;
    padding: 12px 16px;
  }

  .casino-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .casino-rank { width: auto; }
  .casino-cta { min-width: auto; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .review-header { flex-direction: column; text-align: center; }
  .author-box { flex-direction: column; text-align: center; align-items: center; }
  .hero-badges { flex-direction: column; align-items: center; }
  .comparison-table { font-size: 0.8rem; }
  .comparison-table th, .comparison-table td { padding: 10px 8px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.6rem; }
  .container { padding: 0 15px; }
  .casino-card { padding: 16px; }
}

/* ----- Schema / Structured Data ----- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ----- Scroll to top ----- */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--accent);
  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: 100;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

.scroll-top:hover { transform: translateY(-3px); }
.scroll-top.visible { display: flex; }

/* ----- Last Updated ----- */
.last-updated {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-style: italic;
}

/* ----- Checklist Style ----- */
.checklist {
  list-style: none;
  padding: 0;
}

.checklist li {
  padding: 8px 0 8px 28px;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.checklist li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
  font-size: 1.1rem;
}

.checklist li:last-child { border: none; }

/* ----- Contact Form ----- */
.contact-form {
  max-width: 700px;
  margin: 20px 0 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a0a0b0' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
