/* ================================================================
   casinositeleri2025.pro — Premium Turkish Casino Design System
   Version 2.0 | Mobile-First | Dark Luxury Theme
   ================================================================ */

/* ── DESIGN TOKENS ─────────────────────────────────────────────── */
:root {
  /* Core palette */
  --bg-root:        #070c18;
  --bg-dark:        #0d1527;
  --bg-card:        #111828;
  --bg-card2:       #161e30;
  --bg-card3:       #1a2438;
  --bg-glass:       rgba(17, 24, 40, 0.85);

  /* Accent: Turkish Gold */
  --gold:           #d4af37;
  --gold-light:     #f5d76e;
  --gold-pale:      #fdf0b0;
  --gold-dark:      #b8860b;

  /* Accent: Turkish Red */
  --red:            #c0392b;
  --red-bright:     #e74c3c;
  --red-dark:       #96281b;

  /* Accent: Teal/Blue modern */
  --teal:           #00b4d8;
  --teal-dark:      #0077a8;

  /* Status colors */
  --green:          #00c851;
  --green-bg:       rgba(0,200,81,0.12);
  --orange:         #f39c12;

  /* Text */
  --text:           #e8eaf0;
  --text-secondary: #a0aec0;
  --text-muted:     #6b7a99;

  /* Borders & effects */
  --border:         rgba(212,175,55,0.18);
  --border-hover:   rgba(212,175,55,0.45);
  --shadow-sm:      0 4px 16px rgba(0,0,0,0.4);
  --shadow-md:      0 8px 32px rgba(0,0,0,0.55);
  --shadow-lg:      0 16px 56px rgba(0,0,0,0.65);
  --shadow-gold:    0 0 24px rgba(212,175,55,0.2);
  --shadow-red:     0 8px 32px rgba(192,57,43,0.35);

  /* Layout */
  --radius-sm:      8px;
  --radius:         14px;
  --radius-lg:      22px;
  --radius-pill:    999px;
  --container:      1200px;
  --transition:     0.28s cubic-bezier(0.4,0,0.2,1);

  /* Typography */
  --font:           'Segoe UI', system-ui, -apple-system, 'Arial', sans-serif;
  --font-display:   'Arial Black', 'Impact', var(--font);
}

/* ── RESET & BASE ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg-root);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.72;
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
img, svg { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── SCROLLBAR (webkit) ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ── CONTAINER ──────────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 18px; }

/* ── SECTION SPACING ────────────────────────────────────────────── */
section { padding: 60px 0; }

/* ── TYPOGRAPHY UTILITIES ───────────────────────────────────────── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 900;
  color: var(--gold-light);
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}
.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 680px;
  margin: 0 auto 36px;
  text-align: center;
  line-height: 1.7;
}

/* ── DECORATIVE BG PATTERN ──────────────────────────────────────── */
.bg-pattern {
  background-image:
    radial-gradient(circle at 20% 20%, rgba(212,175,55,0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(192,57,43,0.04) 0%, transparent 50%);
}

/* =====================================================
   HEADER
   ===================================================== */
.site-header {
  background: rgba(7,12,24,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 20px;
  height: 72px;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

/* Age gate */
.age-gate {
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

/* Nav */
.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 0;
}
.header-nav a {
  color: var(--text-secondary);
  font-size: 0.96rem;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.1px;
  transition: all var(--transition);
  white-space: nowrap;
}
.header-nav a:hover {
  color: var(--gold-light);
  background: rgba(212,175,55,0.08);
}
.header-nav a:focus-visible {
  outline: 2px solid rgba(212,175,55,0.45);
  outline-offset: 2px;
}
.header-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.header-menu-toggle:hover {
  border-color: var(--border-hover);
  color: var(--gold-light);
}

/* Updated badge */
.header-updated {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  letter-spacing: 0.3px;
  flex-shrink: 0;
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(192,57,43,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 0% 100%, rgba(212,175,55,0.08) 0%, transparent 55%),
    linear-gradient(180deg, #0d1527 0%, #080c18 100%);
  padding: 72px 18px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 48px, rgba(212,175,55,0.025) 48px, rgba(212,175,55,0.025) 49px),
    repeating-linear-gradient(90deg, transparent, transparent 48px, rgba(212,175,55,0.025) 48px, rgba(212,175,55,0.025) 49px);
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(192,57,43,0.15);
  border: 1px solid rgba(192,57,43,0.35);
  color: var(--red-bright);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red-bright);
  animation: pulse-dot 1.8s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.4; transform:scale(0.7); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.6rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--gold-pale) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

/* Hero visual image */
.hero-visual {
  max-width: 420px;
  margin: 0 auto 44px;
  filter: drop-shadow(0 16px 48px rgba(212,175,55,0.15));
}

/* Stats bar */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
}
.hero-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: all var(--transition);
}
.hero-stat:hover {
  border-color: var(--border-hover);
  background: var(--bg-card2);
  transform: translateY(-2px);
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.hero-stat .lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* =====================================================
   FILTER TABS
   ===================================================== */
.filter-wrap {
  text-align: center;
  margin-bottom: 32px;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.filter-wrap::-webkit-scrollbar { display: none; }

.filter-tabs {
  display: inline-flex;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 6px;
  white-space: nowrap;
}
.tab-btn {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
  user-select: none;
}
.tab-btn:hover { color: var(--gold-light); background: rgba(212,175,55,0.08); }
.tab-btn.active {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  box-shadow: var(--shadow-red);
}
.tab-btn.active:hover { background: linear-gradient(135deg, var(--red-bright), var(--red)); }

/* =====================================================
   CASINO CARDS
   ===================================================== */
#casino-listesi { background: var(--bg-dark); }
#casino-listesi .section-title { text-align: center; }

.rcard-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Hide filtered items */
.rcard.hidden { display: none; }

.rcard {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: grid;
  grid-template-columns: 40px 110px 1fr auto;
  gap: 18px;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  animation: fadeInUp 0.45s ease both;
}
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(16px); }
  to   { opacity:1; transform:translateY(0); }
}

.rcard:hover {
  border-color: var(--border-hover);
  background: var(--bg-card2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md), var(--shadow-gold);
}

/* #1 card special highlight */
.rcard.top-pick {
  border-color: rgba(212,175,55,0.4);
  background: linear-gradient(135deg, #131928 0%, #1a2036 100%);
  box-shadow: 0 0 0 1px rgba(212,175,55,0.2), var(--shadow-md);
}
.rcard.top-pick::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
}

/* Badge (HOT / NEW / MGA) */
.rbadge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 9px;
  font-weight: 900;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* Rank medal */
.rcard-rank { display: flex; align-items: center; justify-content: center; }
.rmedal {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  flex-shrink: 0;
}
.rmedal-num {
  font-size: 1.1rem;
  background: var(--bg-card3);
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

/* Logo area */
.rcard-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px;
  height: 58px;
  overflow: hidden;
}

/* Info */
.rcard-info { flex: 1; min-width: 0; }
.rcard-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 3px;
}
.rcard-tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.rcard-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
.rtag {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
}
.rcard-bonus-main {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 2px;
}
.rcard-bonus-sub {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.rcard-meta { display: flex; flex-wrap: wrap; gap: 12px; font-size: 0.78rem; color: var(--text-muted); }
.rcard-meta span { display: flex; align-items: center; gap: 4px; }

/* Rating + CTA */
.rcard-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  min-width: 120px;
}
.rcard-stars { font-size: 1rem; letter-spacing: 1px; color: var(--gold); }
.rcard-rating-wrap { line-height: 1; }
.rcard-rating-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-light);
}
.rcard-rating-max { font-size: 0.8rem; color: var(--text-muted); }

/* Progress bar for rating */
.rcard-progress {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.rcard-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  transition: width 0.8s ease;
}

.rcard-btn {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
  white-space: nowrap;
  box-shadow: var(--shadow-red);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.rcard-btn:hover {
  background: linear-gradient(135deg, var(--red-bright), var(--red));
  color: #fff;
  transform: scale(1.04);
  box-shadow: 0 10px 28px rgba(192,57,43,0.5);
}

.rcard-review-link { font-size: 0.78rem; text-align: center; }
.rcard-review-link a { color: var(--text-muted); }
.rcard-review-link a:hover { color: var(--gold); }

/* T&C disclaimer */
.rcard-terms {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-align: center;
  width: 100%;
  grid-column: 1/-1;
  padding-top: 6px;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 4px;
}

/* =====================================================
   WHY TRUST US — FEATURES GRID
   ===================================================== */
#neden-biz { background: var(--bg-root); }
#neden-biz .section-title,
#neden-biz .section-subtitle { text-align: center; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.feature-icon {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon img { width: 64px; height: 64px; }
.feature-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.feature-desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; }

/* =====================================================
   COMPARISON TABLE — fully responsive, no scroll
   ===================================================== */
#karsilastirma { background: var(--bg-dark); }
#karsilastirma .section-title,
#karsilastirma .section-subtitle { text-align: center; }

.table-wrap { border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; }

.comp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  table-layout: fixed;
}
.comp-table thead tr {
  background: linear-gradient(135deg, var(--bg-card2), var(--bg-card3));
  border-bottom: 2px solid var(--border);
}
.comp-table th {
  padding: 12px 10px;
  text-align: center;
  font-weight: 800;
  color: var(--gold-light);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  word-break: break-word;
}
.comp-table th:first-child { text-align: left; width: 26%; }
.comp-table td {
  padding: 11px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--text-secondary);
  vertical-align: middle;
  text-align: center;
  font-size: 0.82rem;
  word-break: break-word;
}
.comp-table td:first-child { font-weight: 700; color: var(--text); text-align: left; font-size: 0.8rem; }
.comp-table tbody tr { background: var(--bg-card); transition: background var(--transition); }
.comp-table tbody tr:hover { background: var(--bg-card2); }
.comp-table tbody tr:last-child td { border-bottom: none; }

/* Hide columns on smaller screens to prevent overflow */
@media (max-width: 600px) {
  .comp-table .col-hide-mobile { display: none; }
}
@media (min-width: 601px) and (max-width: 768px) {
  .comp-table .col-hide-tablet { display: none; }
}

.check-yes { color: var(--green); font-size: 1rem; }
.check-no  { color: var(--text-muted); font-size: 1rem; }
.score-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  font-weight: 900;
  font-size: 0.75rem;
  padding: 2px 7px;
  border-radius: var(--radius-pill);
}

/* =====================================================
   LONGREAD ARTICLE
   ===================================================== */
#rehber {
  background: var(--bg-root);
  padding-top: 72px;
  padding-bottom: 72px;
}

.article-wrap { max-width: 860px; margin: 0 auto; }

/* Author block */
.author-block {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 48px;
}
.author-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}
.author-info { flex: 1; }
.author-name { font-weight: 800; color: var(--text); font-size: 1rem; margin-bottom: 2px; }
.author-role { font-size: 0.8rem; color: var(--text-muted); }
.author-meta { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }
.author-meta strong { color: var(--gold); }

/* Article typography */
.article-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 900;
  color: var(--gold-light);
  margin: 52px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.article-content h2::before {
  content: '';
  width: 4px; height: 26px;
  background: linear-gradient(180deg, var(--red), var(--gold));
  border-radius: 2px;
  flex-shrink: 0;
}

.article-content h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 800;
  color: var(--text);
  margin: 32px 0 12px;
}

.article-content p {
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.82;
  margin-bottom: 18px;
}

.article-content strong { color: var(--text); }

.article-content ul, .article-content ol {
  padding-left: 0;
  margin-bottom: 22px;
}
.article-content li {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.75;
  padding: 5px 0 5px 28px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.article-content ul li::before {
  content: '▸';
  position: absolute;
  left: 8px;
  color: var(--gold);
  font-size: 0.8rem;
}
.article-content ol { counter-reset: ol-counter; }
.article-content ol li::before {
  content: counter(ol-counter);
  counter-increment: ol-counter;
  position: absolute;
  left: 0;
  width: 20px; height: 20px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 7px;
}

/* Info / tip boxes */
.info-box {
  background: linear-gradient(135deg, rgba(212,175,55,0.06), rgba(212,175,55,0.02));
  border: 1px solid rgba(212,175,55,0.25);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 24px 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.72;
}
.info-box strong { color: var(--gold-light); }

.warning-box {
  background: rgba(192,57,43,0.08);
  border: 1px solid rgba(192,57,43,0.25);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 24px 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.warning-box strong { color: var(--red-bright); }

/* Inline image illustration */
.article-image {
  width: 100%;
  max-width: 440px;
  margin: 28px auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  display: block;
}

/* Data table wrapper */
.data-table-wrap { border-radius: var(--radius); border: 1px solid var(--border); margin: 24px 0; overflow: hidden; }

/* Data table inside article — fully responsive, no scroll */
.data-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  margin: 0;
  font-size: 0.88rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.data-table th {
  background: var(--bg-card2);
  padding: 11px 12px;
  text-align: left;
  color: var(--gold-light);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  word-break: break-word;
}
.data-table td {
  background: var(--bg-card);
  padding: 10px 12px;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--text-secondary);
  font-size: 0.84rem;
  word-break: break-word;
  overflow-wrap: break-word;
}
.data-table tr:nth-child(even) td { background: var(--bg-card2); }

@media (max-width: 480px) {
  .data-table th, .data-table td { padding: 8px 9px; font-size: 0.76rem; }
}

/* =====================================================
   FAQ / SSS
   ===================================================== */
#sss { background: var(--bg-dark); }
#sss .section-title, #sss .section-subtitle { text-align: center; }

.faq-wrap { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: var(--border-hover); }

.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold-light); }
.faq-question[aria-expanded="true"] { color: var(--gold-light); }
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--bg-card3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}
.faq-question[aria-expanded="true"] .faq-icon {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 0 22px 18px;
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.78;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 16px;
}
.faq-answer.open { display: block; }

/* =====================================================
   RESPONSIBLE GAMBLING FOOTER
   ===================================================== */
.rg-footer {
  background: linear-gradient(135deg, #0d1220, #111828);
  border-top: 2px solid rgba(212,175,55,0.15);
  padding: 36px 18px;
  text-align: center;
}
.rg-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.rg-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 760px;
  margin: 0 auto 16px;
  line-height: 1.7;
}
.rg-logos { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 16px; margin-bottom: 16px; }
.rg-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
}
.rg-helpline {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.rg-helpline strong { color: var(--text); }

/* =====================================================
   MAIN FOOTER
   ===================================================== */
.site-footer {
  background: #060a14;
  border-top: 1px solid var(--border);
  padding: 44px 18px 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-brand img { height: 44px; margin-bottom: 14px; }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; max-width: 320px; }
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer-license {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* =====================================================
   BACK TO TOP
   ===================================================== */
.back-to-top {
  position: fixed;
  bottom: 26px;
  right: 22px;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 999;
  text-decoration: none;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* =====================================================
   RESPONSIVE: TABLET (≤ 900px)
   ===================================================== */
@media (max-width: 900px) {
  .rcard {
    grid-template-columns: 40px 90px 1fr;
    grid-template-rows: auto auto;
  }
  .rcard-action {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.06);
    flex-wrap: wrap;
    gap: 10px;
  }
  .rcard-btn { flex: 1; min-width: 120px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* =====================================================
   RESPONSIVE: MOBILE (≤ 600px)
   ===================================================== */
@media (max-width: 600px) {
  section { padding: 44px 0; }

  .site-header { height: 62px; }
  .header-menu-toggle { display: inline-flex; }
  .site-header {
    position: sticky;
    padding-right: 14px;
    padding-left: 14px;
  }
  .header-nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 14px;
    right: 14px;
    z-index: 1001;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 10px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: rgba(7,12,24,0.98);
    box-shadow: var(--shadow-md);
  }
  .site-header.menu-open .header-nav {
    display: flex;
  }
  .header-nav a {
    display: block;
    width: 100%;
    padding: 10px 12px;
    background: rgba(255,255,255,0.02);
  }
  .header-updated {
    display: none;
  }

  .hero { padding: 52px 14px 44px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hero-stat .num { font-size: 1.5rem; }

  .rcard {
    grid-template-columns: 36px 90px 1fr;
    padding: 14px 14px;
    gap: 12px;
  }
  .rcard-name { font-size: 1rem; }
  .rcard-bonus-main { font-size: 0.88rem; }
  .rcard-meta { gap: 8px; }
  .rbadge { display: none; }

  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .feature-card { padding: 18px 14px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .author-block { flex-direction: column; text-align: center; }

  .comp-table { font-size: 0.8rem; }
}

@media (min-width: 601px) and (max-width: 980px) {
  .site-header {
    gap: 12px;
    padding: 0 14px;
    height: 66px;
  }
  .header-nav {
    gap: 4px;
  }
  .header-nav a {
    font-size: 0.82rem;
    padding: 8px 9px;
  }
}

/* =====================================================
   UTILITY CLASSES
   ===================================================== */
.text-gold    { color: var(--gold-light); }
.text-red     { color: var(--red-bright); }
.text-green   { color: var(--green); }
.text-muted   { color: var(--text-muted); }
.text-center  { text-align: center; }
.fw-bold      { font-weight: 700; }
.fw-black     { font-weight: 900; }
.mt-8         { margin-top: 8px; }
.mt-16        { margin-top: 16px; }
.mt-24        { margin-top: 24px; }
.mb-8         { margin-bottom: 8px; }
.mb-16        { margin-bottom: 16px; }

/* Highlight box */
.highlight-box {
  background: linear-gradient(135deg, rgba(192,57,43,0.1), rgba(212,175,55,0.05));
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius);
  padding: 24px;
  margin: 28px 0;
  text-align: center;
}
.highlight-box .highlight-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold-light);
  display: block;
  line-height: 1.1;
}
.highlight-box .highlight-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Pros/Cons */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}
.pros, .cons {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}
.pros { border-top: 3px solid var(--green); }
.cons { border-top: 3px solid var(--red); }
.pros-cons-title {
  font-weight: 800;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.pros .pros-cons-title { color: var(--green); }
.cons .pros-cons-title { color: var(--red-bright); }
.pros li, .cons li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 4px 0 4px 20px;
  border-bottom: none;
  position: relative;
}
.pros li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.cons li::before { content: '✗'; position: absolute; left: 0; color: var(--red-bright); font-weight: 900; }

@media (max-width: 500px) {
  .pros-cons { grid-template-columns: 1fr; }
}

/* =====================================================
   STATIC PAGES
   ===================================================== */
.page-shell {
  padding: 72px 0;
  background: var(--bg-root);
}
.narrow-container {
  max-width: 900px;
}
.page-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
}
.page-kicker {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.page-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--gold-light);
  margin-bottom: 12px;
  line-height: 1.15;
}
.page-lead {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 24px;
}
.contact-box {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 24px;
}
.contact-box p {
  margin-bottom: 8px;
  color: var(--text-secondary);
}
.contact-box p:last-child {
  margin-bottom: 0;
}
.page-footer-single {
  justify-content: space-between;
}
.error-page-body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
  background: var(--bg-root);
}
.error-card {
  max-width: 520px;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-md);
}
.error-code {
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.error-card h1 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.error-card p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.error-home-link {
  display: inline-block;
  width: auto;
  min-width: 210px;
}
@media (max-width: 600px) {
  .page-card {
    padding: 24px 18px;
  }
  .page-footer-single {
    flex-direction: column;
    text-align: center;
  }
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--text-muted);
  font-size: 0.82rem;
}
.breadcrumbs a {
  color: var(--text-secondary);
}
.breadcrumbs a:hover {
  color: var(--gold-light);
}
.breadcrumbs .sep {
  color: var(--text-muted);
}
.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 26px 0 8px;
}
.link-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 18px;
  color: var(--text);
  min-height: 120px;
  transition: all var(--transition);
}
.link-card strong {
  color: var(--gold-light);
  font-size: 1rem;
}
.link-card span {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.9rem;
}
.link-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card3);
  color: var(--text);
  transform: translateY(-2px);
}
.hub-grid {
  margin-bottom: 0;
}


/* =====================================================
   NAVIGATION REFINEMENTS
   ===================================================== */
.site-brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.header-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.header-nav a {
  border: 1px solid transparent;
}
.header-nav a:hover {
  border-color: rgba(212,175,55,0.12);
}
.footer-grid-rich {
  grid-template-columns: 2fr 1fr 1fr 1fr;
}
.related-block {
  margin: 20px 0 26px;
}
.related-kicker {
  margin-bottom: 12px;
}
@media (max-width: 980px) {
  .footer-grid-rich {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .header-meta {
    gap: 6px;
  }
  .footer-grid-rich {
    grid-template-columns: 1fr;
  }
}


/* =====================================================
   DROPDOWN NAV
   ===================================================== */
.header-nav-dropdown {
  gap: 10px;
}
.header-home-link,
.nav-group-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-group {
  position: relative;
  display: flex;
  align-items: center;
  padding-bottom: 12px;
  margin-bottom: -12px;
}
.nav-group-trigger::after {
  content: "▾";
  font-size: 0.75rem;
  margin-left: 6px;
  color: var(--text-muted);
  transition: transform var(--transition);
}
.nav-group:hover .nav-group-trigger::after,
.nav-group:focus-within .nav-group-trigger::after {
  transform: rotate(180deg);
  color: var(--gold-light);
}
.nav-dropdown {
  position: absolute;
  z-index: 1200;
  top: calc(100% + 2px);
  left: 0;
  min-width: 240px;
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(7,12,24,0.98);
  box-shadow: var(--shadow-md);
}
.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
  display: flex;
}
.nav-dropdown a {
  width: 100%;
  justify-content: flex-start;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
  color: var(--text-secondary);
}
.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  color: var(--gold-light);
  background: rgba(212,175,55,0.08);
}
@media (max-width: 600px) {
  .header-nav-dropdown {
    gap: 8px;
  }
  .nav-group {
    flex-direction: column;
    align-items: stretch;
  }
  .nav-dropdown {
    position: static;
    display: flex;
    min-width: 100%;
    padding: 6px 0 0;
    border: none;
    box-shadow: none;
    background: transparent;
  }
  .nav-group-trigger::after {
    margin-left: auto;
  }
  .nav-dropdown a {
    padding-left: 22px;
  }
}

/* Page illustrations */
.page-hero-media {
  margin: 1.5rem 0 1.85rem;
}

.page-hero-media picture,
.page-hero-media img {
  display: block;
  width: 100%;
}

.page-hero-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(244, 201, 93, 0.2);
  background:
    radial-gradient(circle at top left, rgba(244, 201, 93, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(15, 22, 44, 0.95), rgba(8, 14, 30, 0.98));
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.page-hero-media figcaption {
  margin-top: 0.7rem;
  color: rgba(225, 231, 246, 0.7);
  font-size: 0.92rem;
  line-height: 1.55;
}

@media (max-width: 768px) {
  .page-hero-media {
    margin: 1.15rem 0 1.45rem;
  }

  .page-hero-image {
    border-radius: 18px;
  }

  .page-hero-media figcaption {
    font-size: 0.88rem;
  }
}

/* Trust and reference upgrades */
.page-meta-strip,
.trust-identity-card,
.reference-note {
  border: 1px solid rgba(244, 201, 93, 0.18);
  background:
    linear-gradient(180deg, rgba(18, 27, 51, 0.98), rgba(10, 17, 33, 0.98));
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.page-meta-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 1.25rem 0 1.4rem;
  padding: 1rem 1.05rem;
}

.page-meta-item {
  padding: 0.75rem 0.85rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.page-meta-label {
  display: block;
  margin-bottom: 0.35rem;
  color: #f4c95d;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-meta-value {
  color: #f4f7ff;
  font-weight: 700;
  line-height: 1.5;
}

.trust-identity-card {
  margin: 1.35rem 0 1.6rem;
  padding: 1.15rem 1.2rem;
}

.trust-identity-card h2 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
}

.trust-identity-card ul {
  margin: 0.8rem 0 0;
}

.reference-note {
  margin-top: 1.3rem;
  padding: 1rem 1.05rem;
}

.reference-note h2,
.reference-note h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.04rem;
}

.reference-note p:last-child,
.trust-identity-card p:last-child {
  margin-bottom: 0;
}

.reference-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.9rem;
}

.reference-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.7rem 0.9rem;
  border-radius: 14px;
  border: 1px solid rgba(244, 201, 93, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: #f4f7ff;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.reference-links a:hover {
  border-color: rgba(244, 201, 93, 0.45);
  background: rgba(244, 201, 93, 0.08);
  transform: translateY(-1px);
}

.inline-note {
  color: rgba(225, 231, 246, 0.82);
}

@media (max-width: 768px) {
  .page-meta-strip {
    grid-template-columns: 1fr;
  }
}
