:root {
  --bg: #f6f9fc;
  --surface: #ffffff;
  --surface-2: #eef4f9;
  --accent: #1682c4;
  --accent-dark: #0f6499;
  --text: #16283a;
  --muted: #5a6b7b;
  --border: #dde6ee;
  --radius: 10px;
  --max: 1080px;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

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

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Header */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(22, 40, 58, 0.06);
  position: sticky;
  top: 0;
  z-index: 10;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
}
.logo span { color: var(--accent); }
.main-nav { display: flex; flex-wrap: wrap; gap: 18px; }
.main-nav a { color: var(--muted); font-size: 0.95rem; }
.main-nav a:hover { color: var(--text); text-decoration: none; }

/* Hero */
.hero {
  background: linear-gradient(135deg, #e3f0fa, #f6f9fc);
  text-align: center;
  padding: 70px 0 60px;
  border-bottom: 1px solid var(--border);
}
.hero h1 { font-size: 2.6rem; line-height: 1.15; }
.hero-subtitle {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 640px;
  margin: 16px auto 26px;
}
.hero-note { color: var(--muted); font-size: 0.85rem; margin-top: 20px; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: background 0.2s ease;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); text-decoration: none; }

/* Sections */
.section { padding: 50px 0; border-bottom: 1px solid var(--border); }
.section h2 { font-size: 1.8rem; margin-bottom: 18px; }
.section p { color: var(--muted); margin-bottom: 14px; }
.section-intro { max-width: 720px; }

/* Content lists */
.content-list { list-style: none; margin: 8px 0 16px; }
.content-list li {
  color: var(--muted);
  padding: 8px 0 8px 22px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.content-list li:last-child { border-bottom: none; }
.content-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.content-list strong { color: var(--text); }

/* Casino grid */
.casino-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 26px 0 12px;
}
.casino-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 1px 3px rgba(22, 40, 58, 0.05);
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.casino-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 6px 18px rgba(22, 40, 58, 0.1);
}
.casino-card h3 { margin-bottom: 14px; font-size: 1.2rem; }
.casino-features { list-style: none; }
.casino-features li {
  color: var(--muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}
.casino-features li:last-child { border-bottom: none; }
.casino-features strong { color: var(--text); }
.disclaimer-inline { font-size: 0.85rem; font-style: italic; }

/* Brand cards with redirect CTAs */
.brand-card { display: flex; flex-direction: column; }
.brand-cta {
  margin-top: auto;
  display: inline-block;
  text-align: center;
  padding: 10px 16px;
  margin-top: 16px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
}
.brand-cta:hover { background: var(--accent-dark, #0f6ba3); transform: translateY(-1px); }

/* Comparison table */
.table-wrap { overflow-x: auto; margin: 26px 0 30px; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.compare-table th,
.compare-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}
.compare-table thead th {
  background: var(--surface-2);
  color: var(--text);
  font-weight: 700;
  white-space: nowrap;
}
.compare-table td { color: var(--muted); }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover { background: var(--surface-2); }
.compare-table td strong { color: var(--text); }

/* Review cards */
.review-list { display: grid; gap: 20px; margin-top: 10px; }
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 1px 3px rgba(22, 40, 58, 0.05);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.review-card:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 18px rgba(22, 40, 58, 0.1);
}
.review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.review-head h3 { font-size: 1.3rem; }
.review-rating {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

/* Responsive comparison table -> stacked cards on mobile */
@media (max-width: 640px) {
  .compare-table { min-width: 0; }
  .compare-table thead { display: none; }
  .compare-table,
  .compare-table tbody,
  .compare-table tr,
  .compare-table td { display: block; width: 100%; }
  .compare-table tr {
    border-bottom: 2px solid var(--accent);
    padding: 8px 0;
  }
  .compare-table td {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }
  .compare-table td::before {
    content: attr(data-label);
    font-weight: 700;
    color: var(--text);
  }
}

/* FAQ */
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 14px;
}
.faq-item h3 { margin-bottom: 8px; font-size: 1.1rem; }
.faq-item p { margin-bottom: 0; }

/* Responsible gambling */
.responsible {
  background: var(--surface-2);
  border-radius: var(--radius);
  padding: 36px;
  margin: 40px 0;
  border: 1px solid var(--border);
}
.help-list { list-style: none; margin-top: 12px; }
.help-list li { padding: 6px 0; color: var(--muted); }
.help-list strong { color: var(--text); }

/* Footer */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 40px 0;
}
.site-footer p { color: var(--muted); font-size: 0.9rem; margin-bottom: 8px; }
.age-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff !important;
  font-weight: 700;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  line-height: 44px;
  margin-bottom: 12px;
}
.copyright { font-size: 0.8rem; }

/* Responsive */
@media (max-width: 600px) {
  .hero h1 { font-size: 2rem; }
  .hero { padding: 50px 0 40px; }
  .responsible { padding: 24px; }
}
