/* ═══════════════════════════════════════════════════════
   CasinoBonus.cz — Main Stylesheet
   zahranicni-casino-bonus-bez-vkladu
   ═══════════════════════════════════════════════════════ */

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

/* ─── CSS VARIABLES — Liberty Ostrava color scheme ─── */
:root {
  /* Liberty brand colors */
  --liberty-blue:   #2c2c2c;
  --liberty-blue2:  #1a1a3e;
  --liberty-dark:   #5767ff;
  --liberty-light:  #ede9e0;

  --bg-dark:        #f2f2f2;
  --bg-card:        #ffffff;
  --bg-card2:       #ede9e0;
  --header-bg:      #2c2c2c;
  --gold:           #002D72;
  --gold-dim:       #12326E;
  --green:          #2c2c2c;
  --green-dark:     #1a1a2e;
  --red:            #4C0000;
  --orange:         #12326E;
  --text-primary:   #333333;
  --text-muted:     #696969;
  --text-dim:       #878787;
  --border:         #D9DADB;
  --border-glow:    rgba(0, 45, 114, 0.15);
  --accent:         #5767ff;
  --accent2:        #2c2c2c;
  --radius:         6px;
  --shadow:         0 4px 16px rgba(0, 45, 114, 0.12);
  --font-heading:   'Playfair Display', Georgia, serif;
  --font-body:      'Source Sans 3', 'Segoe UI', Arial, sans-serif;
}

/* ─── RESET ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol { list-style: none; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
}
h1 {
  text-align: center;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.8);
  margin-bottom: 24px;
}
h1 em { color: #ff7c00; font-style: normal; }

h2 {
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 24px;
}
h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 28px 0 10px;
}
p { margin-bottom: 14px; }

/* ─── LAYOUT ─── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
section {
  padding: 48px 0;
}
section + section {
  border-top: 1px solid var(--border);
}

/* ══════════════════════════════════
   HEADER
══════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--header-bg);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.7);
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo span { color: var(--text-primary); }
.logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.header-badge {
  background: linear-gradient(135deg, #c0392b, #8b0000);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  white-space: nowrap;
}

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  position: relative;
  min-height: 280px;
  max-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-dark);
  border-bottom: 2px solid var(--border-glow);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero.svg');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(13,13,26,0.92) 0%, rgba(20,20,50,0.75) 100%),
    radial-gradient(ellipse at 20% 80%, rgba(245,197,24,0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(124,94,249,0.14) 0%, transparent 50%);
  z-index: 1;
}
.hero-suits {
  position: absolute;
  bottom: 16px;
  right: 32px;
  font-size: 1.4rem;
  letter-spacing: 8px;
  color: rgba(245, 197, 24, 0.15);
  z-index: 2;
  pointer-events: none;
  user-select: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px 28px;
  width: 100%;
}

/* ── Author box ── */
.author-box {
  display: flex;
  margin: 0 auto;
  align-items: flex-start;
  gap: 16px;
  background: rgba(20, 20, 40, 0.85);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  max-width: 620px;
  backdrop-filter: blur(6px);
}
.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-info { flex: 1; min-width: 0; }
.author-name { font-weight: 700; font-size: 1rem; color: #fff; }
.author-role { font-size: 0.8rem; color: rgba(255, 255, 255, 0.8); margin-top: 2px; }
.author-meta {
  display: flex;
  gap: 12px;
  margin-top: 6px;
  flex-wrap: wrap;
}
.author-meta span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 4px;
}
.author-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 8px;
  line-height: 1.5;
}
.author-more {
  display: none;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 6px;
  line-height: 1.6;
}
.author-more.open { display: block; }
.btn-author-more {
  background: none;
  border: 1px solid var(--border);
  color: #fff;
  font-size: 0.78rem;
  padding: 4px 12px;
  border-radius: 20px;
  cursor: pointer;
  margin-top: 8px;
  font-family: var(--font-body);
  transition: background 0.2s;
}
.btn-author-more:hover { background: rgba(245, 197, 24, 0.1); }

/* ══════════════════════════════════
   TABLE LABEL
══════════════════════════════════ */
.table-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.table-title::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
}

/* ══════════════════════════════════
   TABLES
══════════════════════════════════ */
.tbl-wrap {
  overflow-x: auto;
  border-radius: 10px;
  border: 2px solid #002D72;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 8px 32px rgba(0,45,114,0.15);
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}
thead { background: #002D72; }
thead th {
  padding: 20px 18px;
  text-align: left;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #ffffff;
  border-bottom: 2px solid #12326E;
  white-space: nowrap;
  font-family: var(--font-body);
  font-weight: 700;
}
tbody tr {
  border-bottom: 1px solid #e0ddd6;
  transition: background 0.15s, transform 0.1s;
}
tbody tr:last-child { border-bottom: none; }
tbody tr:hover {
  background: #f0ecff;
  transform: scale(1.002);
  box-shadow: 0 2px 8px rgba(0,45,114,0.08);
}
tbody td {
  padding: 20px 18px;
  vertical-align: middle;
  font-size: 1rem;
  color: #333;
}
tbody tr:nth-child(even) { background: #faf9f7; }
tbody tr:nth-child(even):hover { background: #f0ecff; }

/* First row highlight */
tbody tr:first-child {
  background: #fff8e8;
  border-left: 4px solid #002D72;
}
tbody tr:first-child:hover { background: #fff0cc; }

/* ─── Casino logo cell ─── */
.casino-logo {
  width: 140px;
  height: 52px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #D9DADB;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.casino-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

/* ─── Rank ─── */
.rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #002D72;
  color: white;
  font-weight: 700;
  font-size: 1rem;
}
.rank-1 { background: linear-gradient(135deg, #FFD700, #FFA500); color: #333; font-size: 1.3rem; width: 42px; height: 42px; }
.rank-2 { background: linear-gradient(135deg, #C0C0C0, #A0A0A0); color: #333; font-size: 1.2rem; width: 40px; height: 40px; }
.rank-3 { background: linear-gradient(135deg, #CD7F32, #A0522D); color: white; font-size: 1.2rem; width: 40px; height: 40px; }

/* ─── Bonus text ─── */
.bonus-text {
  color: #002D72;
  font-weight: 800;
  font-size: 1.05rem;
}
.badge-new {
  background: #002D72;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  margin-left: 6px;
  vertical-align: middle;
}

/* ─── Stars ─── */
.stars { color: #002D72; letter-spacing: -1px; font-size: 1.1rem; }
.stars-wrap { display: flex; flex-direction: column; gap: 2px; }
.stars-wrap span:last-child { font-size: 0.85rem; color: #696969; font-weight: 600; }

/* ─── Bullets in table ─── */
.bullets { list-style: none; padding: 0; }
.bullets li { font-size: 0.9rem; color: #555; padding: 2px 0; line-height: 1.4; }
.bullets li::before { content: '✓ '; color: #002D72; font-weight: 700; }

/* ─── Wagering badges ─── */
.badge-wager-green { color: var(--green);  font-weight: 700; }
.badge-wager-yellow { color: var(--gold);  font-weight: 700; }
.badge-wager-red    { color: var(--red);   font-weight: 700; }

/* ══════════════════════════════════
   CTA BUTTONS
══════════════════════════════════ */
.btn-cta {
  display: inline-block;
  background: linear-gradient(135deg, #00c853, #00952e);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 18px;
  border-radius: 8px;
  white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 16px rgba(0, 200, 83, 0.35);
  letter-spacing: 0.3px;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 200, 83, 0.5);
  color: #fff;
}

/* ══════════════════════════════════
   MOBILE CARDS (replace table)
══════════════════════════════════ */
.casino-cards {
  display: none;
  flex-direction: column;
  gap: 16px;
}
.casino-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.casino-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(245, 197, 24, 0.12);
}
.card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.card-rank { font-size: 1.3rem; font-weight: 900; color: var(--gold); min-width: 28px; }
.card-name { font-weight: 700; font-size: 1rem; }
.card-meta { font-size: 0.72rem; color: var(--text-muted); }
.card-bonus { color: var(--gold); font-weight: 700; font-size: 1rem; margin-bottom: 8px; }
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  gap: 10px;
}

/* ══════════════════════════════════
   CASINO DETAIL SECTIONS
══════════════════════════════════ */
.casino-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 24px;
  transition: border-color 0.2s;
}
.casino-section:hover { border-color: rgba(245, 197, 24, 0.2); }

.casino-section-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.cs-title { flex: 1; min-width: 0; }
.cs-title h3 { margin: 0 0 4px; font-size: 1.05rem; }
.cs-licence { font-size: 0.78rem; color: var(--text-muted); }

/* Pros / Cons */
.pros-cons {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.pros, .cons {
  flex: 1;
  min-width: 200px;
  border-radius: 10px;
  padding: 14px 18px;
}
.pros {
  background: rgba(0, 200, 83, 0.05);
  border: 1px solid rgba(0, 200, 83, 0.2);
}
.cons {
  background: rgba(255, 68, 68, 0.05);
  border: 1px solid rgba(255, 68, 68, 0.2);
}
.pros h4 { color: var(--green);  margin-bottom: 8px; font-size: 0.9rem; font-family: var(--font-body); }
.cons h4 { color: var(--red);    margin-bottom: 8px; font-size: 0.9rem; font-family: var(--font-body); }
.pros li, .cons li { font-size: 0.85rem; color: var(--text-muted); padding: 3px 0; }
.pros li::before { content: '✅ '; }
.cons li::before { content: '❌ '; }

.for-who {
  background: rgba(124, 94, 249, 0.07);
  border: 1px solid rgba(124, 94, 249, 0.2);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 12px;
}
.for-who strong { color: var(--accent2); }

/* ══════════════════════════════════
   INFO CARDS
══════════════════════════════════ */
.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
}

/* Steps list */
.steps-list {
  counter-reset: steps;
  list-style: none;
}
.steps-list li {
  counter-increment: steps;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.steps-list li:last-child { border-bottom: none; }
.steps-list li::before {
  content: counter(steps);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Diff table */
.diff-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; min-width: 400px; }
.diff-table th {
  background: var(--header-bg);
  padding: 10px 14px;
  text-align: left;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  font-family: var(--font-body);
}
.diff-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}
.diff-table tr:last-child td { border-bottom: none; }

/* Tips list */
.tip-list { list-style: none; }
.tip-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  display: flex;
  gap: 12px;
}
.tip-list li:last-child { border-bottom: none; }
.tip-list li::before { content: '💡'; flex-shrink: 0; }

/* ══════════════════════════════════
   FAQ
══════════════════════════════════ */
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--gold); }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  cursor: pointer;
  user-select: none;
}
.faq-q:hover { background: rgba(245, 197, 24, 0.03); }
.faq-q h3 {
  margin: 0;
  font-size: 0.95rem;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.4;
}
.faq-icon {
  color: var(--gold);
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform 0.25s;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  display: none;
  padding: 0 20px 16px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* ══════════════════════════════════
   CTA SECTION
══════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg,
    rgba(124, 94, 249, 0.10),
    rgba(245, 197, 24, 0.05));
  border: 1px solid var(--border-glow);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
}
.cta-section h2 { color: #fff; }
.cta-section .sub {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 28px;
}
.btn-cta-big {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: #000;
  font-weight: 900;
  font-size: 1.05rem;
  padding: 16px 36px;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(245, 197, 24, 0.4);
  transition: transform 0.15s, box-shadow 0.2s;
  letter-spacing: 0.3px;
}
.btn-cta-big:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(245, 197, 24, 0.55);
  color: #000;
}
.cta-disclaimer {
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.site-footer {
  background: var(--header-bg);
  border-top: 1px solid var(--border);
  padding: 36px 24px;
  text-align: center;
}
.footer-warning {
  background: rgba(200, 50, 50, 0.08);
  border: 1px solid rgba(200, 50, 50, 0.2);
  border-radius: 8px;
  padding: 14px 20px;
  margin: 0 auto 20px;
  max-width: 720px;
  font-size: 0.83rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}
.badge-18 {
  background: #c0392b;
  color: #fff;
  font-weight: 900;
  font-size: 0.85rem;
  padding: 4px 9px;
  border-radius: 6px;
  flex-shrink: 0;
  letter-spacing: -0.5px;
}
.site-footer__contact { margin-bottom: 12px; }
.site-footer__contact a {
  color: rgba(255,255,255,0.85);
  /* font-size: 0.82rem; */
  margin: 0 10px;
}
.site-footer__contact a:hover { color: white; }
.footer-copy { color: var(--text-dim); font-size: 0.8rem; }

/* ══════════════════════════════════
   SCROLL-TO-TOP BUTTON
══════════════════════════════════ */
#scrollTop {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(124, 94, 249, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.2s;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}
#scrollTop.visible {
  opacity: 1;
  pointer-events: auto;
}
#scrollTop:hover { transform: translateY(-2px); }

/* ══════════════════════════════════
   RESPONSIVE — 992px
══════════════════════════════════ */
@media (max-width: 992px) {
  .hero-content { padding: 48px 20px 36px; }
}

/* ══════════════════════════════════
   RESPONSIVE — 768px (tablet)
══════════════════════════════════ */
@media (max-width: 768px) {
  /* Switch table → cards */
  .tbl-wrap table   { display: none; }
  .casino-cards     { display: flex; }

  section           { padding: 32px 0; }
  .hero-content     { padding: 36px 16px 28px; }
  .author-box       { flex-direction: column; }
  .pros-cons        { flex-direction: column; }
  .casino-section   { padding: 18px; }
  .cta-section      { padding: 32px 20px; }
  #scrollTop        { bottom: 18px; right: 14px; }
}

/* ══════════════════════════════════
   RESPONSIVE — 576px (mobile)
══════════════════════════════════ */
@media (max-width: 576px) {
  .site-header  { padding: 0 14px; }
  .logo         { font-size: 1.1rem; }
  .header-badge { font-size: 0.7rem; padding: 5px 10px; }
  h2            { font-size: 1.2rem; }
  .container    { padding: 0 14px; }
  .casino-section { padding: 14px; }
  .cta-section  { padding: 24px 14px; }
  .btn-cta-big  { padding: 13px 24px; font-size: 0.95rem; }
}

/* ══════════════════════════════════
   RESPONSIVE — 320px (minimum)
══════════════════════════════════ */
@media (max-width: 320px) {
  h1              { font-size: 1.3rem; }
  .btn-cta        { padding: 8px 12px; font-size: 0.8rem; }
  .card-footer    { flex-direction: column; align-items: flex-start; }
}



.site-header__logo-text {
  color: rgba(255,255,255,0.8);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
  flex-wrap: wrap;
}

.site-header__nav-link {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.site-header__nav-link:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.site-header__nav-link--active {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.header-badge {
  margin-left: 0.5rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .site-header__nav {
    display: none;
  }
  .site-header__inner {
    justify-content: space-between;
  }
}

@media (max-width: 480px) {
  .site-header__logo-text {
    display: none;
  }
}

/* ═══ LIBERTY COLOR OVERRIDES ═══ */

/* Body background matches Liberty beige */
body {
  background: #f0ede6 !important;
  color: #333 !important;
}

/* All section backgrounds */
section {
  background: #f0ede6;
}
section:nth-child(even) {
  background: #ede9e0;
}

/* Hero keeps dark blue gradient like Liberty */
.hero {
  background: linear-gradient(135deg, #002D72 0%, #12326E 55%, #4C0000 100%) !important;
}

/* Cards — white on light background */
.casino-card, .info-card, .compare-table {
  background: #ffffff !important;
  border: 1px solid #D9DADB !important;
  box-shadow: 0 2px 8px rgba(0,45,114,0.08) !important;
}

/* Table header */
table thead tr {
  background: #002D72 !important;
}
table thead th {
  color: white !important;
}
table tbody tr:nth-child(even) {
  background: #f5f3ef !important;
}
table tbody tr:hover {
  background: #e8e4dc !important;
}
table tbody td {
  color: #333 !important;
  border-bottom: 1px solid #D9DADB !important;
}

/* Headings */
/* h2 {
  color: #002D72 !important;
} */
h3 {
  color: #002D72 !important;
}

/* CTA button — Liberty blue */
.btn-cta {
  background: #002D72 !important;
  color: white !important;
  border: none !important;
}
.btn-cta:hover {
  background: #12326E !important;
  color: white !important;
}
.btn-cta-big {
  background: #002D72 !important;
  color: white !important;
}
.btn-cta-big:hover {
  background: #12326E !important;
}

/* Stars — Liberty blue instead of gold */
.stars { color: #002D72 !important; }
.bonus-text { color: #002D72 !important; }
.badge-new {
  background: #002D72 !important;
  color: white !important;
}

/* Author box */
.author-box {
  background: rgba(0,45,114,0.15) !important;
  border: 1px solid rgba(255,255,255,0.3) !important;
}

/* CTA section */
.cta-section {
  background: linear-gradient(135deg, #002D72, #12326E) !important;
  color: white !important;
}
.cta-section h2 { color: white !important; }
.cta-section .sub { color: rgba(255,255,255,0.85) !important; }

/* FAQ items */
.faq-item {
  background: #ffffff !important;
  border: 1px solid #D9DADB !important;
}
.faq-q h3 { color: #002D72 !important; }

/* Info card */
.info-card {
  border-left: 4px solid #002D72 !important;
  background: #fff !important;
}

/* Pros/cons */
.pros { border-top: 3px solid #002D72 !important; }
.cons { border-top: 3px solid #4C0000 !important; }

/* Footer */
.site-footer {
  background: #002D72 !important;
  color: rgba(255,255,255,0.85) !important;
}
.footer-links a {
  color: rgba(255,255,255,0.8) !important;
}
.footer-links a:hover {
  color: white !important;
}
.footer-copy { color: rgba(255,255,255,0.6) !important; }

/* Section titles */
.table-title { color: #002D72 !important; }

/* Rank badges */
.rank {
  /* background: #002D72 !important; */
  color: #002D72 !important;
}

/* Compare table */
.compare-table td:first-child { color: #333 !important; }

/* Scroll top button */
#scrollTop {
  background: #002D72 !important;
}

/* Hero suits */
.hero-suits { color: rgba(255,255,255,0.15) !important; }

/* Mobile cards */
.card-bonus { color: #002D72 !important; }
.card-meta { color: #696969 !important; }
.card-name { color: #333 !important; }

/* ═══ WAGERING GRID RESPONSIVE ═══ */
.wagering-grid {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 700px) {
  .wagering-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══ LARGER TABLE BUTTONS ═══ */
.btn-cta {
  font-size: 0.95rem !important;
  padding: 12px 20px !important;
  border-radius: 6px !important;
}

/* ═══ TABLE RESPONSIVE — cards on mobile ═══ */
@media (max-width: 768px) {
  .tbl-wrap { display: none; }
  .casino-cards { display: flex !important; }
}
@media (min-width: 769px) {
  .casino-cards { display: none !important; }
}

/* ═══ CASINO CARD LARGER ON MOBILE ═══ */
.casino-card {
  border-left: 4px solid #002D72;
  padding: 24px !important;
}
.card-bonus {
  font-size: 1.1rem !important;
  font-weight: 800 !important;
}
.card-name { font-size: 1.1rem !important; }
.casino-card .btn-cta {
  min-width: 130px;
  text-align: center;
}

/* ═══ STEP CARDS RESPONSIVE ═══ */
@media (max-width: 480px) {
  .info-card h3 { font-size: 1rem; }
}

/* ═══════════════════════════════════════════════
   FULL-WIDTH OPERATOR TABLE
═══════════════════════════════════════════════ */

.operators-section {
  background: #fff;
  padding: 48px 0;
}

.operators-container {
  width: 100%;
  max-width: 100%;
  padding: 0 24px;
  box-sizing: border-box;
}

.operators-subtitle {
  color: #696969;
  font-size: 1rem;
  margin-bottom: 32px;
  margin-top: -8px;
}

/* ── Full-width table wrapper ── */
.op-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  box-shadow: 0 4px 32px rgba(0,45,114,0.12);
  border: 2px solid #002D72;
  margin-bottom: 24px;
}

.op-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
  font-size: 1rem;
}

/* Header */
.op-table thead tr {
  background: linear-gradient(90deg, #002D72 0%, #12326E 100%);
}
.op-table thead th {
  padding: 18px 16px;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  white-space: nowrap;
  border-bottom: none;
}
.op-table thead th:first-child { border-radius: 10px 0 0 0; }
.op-table thead th:last-child { border-radius: 0 10px 0 0; }

/* Body rows */
.op-row {
  border-bottom: 1px solid #e8e4dc;
  transition: background 0.15s, transform 0.1s;
}
.op-row:last-child { border-bottom: none; }
.op-row:hover {
  background: #f0f4ff !important;
}
.op-row td {
  padding: 18px 16px;
  vertical-align: middle;
  color: #333;
  font-size: 0.97rem;
}
.op-row:nth-child(even) { background: #faf9f7; }

/* TOP row highlight */
.op-row--top {
  background: #fffbf0 !important;
  border-left: 4px solid #002D72;
}
.op-row--top:hover { background: #fff5d6 !important; }

/* Rank */
.op-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #002D72;
  color: white;
  font-weight: 800;
  font-size: 1rem;
}
.op-rank--1 { background: none; font-size: 1.8rem; width: auto; height: auto; }
.op-rank--2 { background: none; font-size: 1.5rem; width: auto; height: auto; }
.op-rank--3 { background: none; font-size: 1.4rem; width: auto; height: auto; }

/* Logo cell */
.op-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.op-logo-wrap img {
  width: 140px;
  height: 46px;
  object-fit: contain;
  border-radius: 6px;
  border: 1px solid #e0ddd6;
  background: #fff;
  padding: 4px;
}
.op-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: #333;
}
.op-badge {
  display: inline-block;
  background: #002D72;
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 3px;
  letter-spacing: 0.5px;
}

/* Bonus cell */
.op-bonus-main {
  display: block;
  font-weight: 800;
  font-size: 1.05rem;
  color: #002D72;
}
.op-bonus-sub {
  display: block;
  font-size: 0.82rem;
  color: #696969;
  margin-top: 2px;
}

/* Licence badges */
.op-licence {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
}
.op-licence--mga {
  background: #e8f0fe;
  color: #002D72;
  border: 1px solid #002D72;
}
.op-licence--cur {
  background: #fef3e2;
  color: #8B4500;
  border: 1px solid #E67E22;
}

/* Stars */
.op-stars {
  display: block;
  color: #002D72;
  font-size: 1rem;
  letter-spacing: -1px;
}
.op-score {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: #333;
  margin-top: 2px;
}

/* CTA Button */
.op-btn {
  display: inline-block;
  background: #002D72;
  color: white !important;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 20px;
  border-radius: 6px;
  white-space: nowrap;
  text-align: center;
  transition: background 0.2s, transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 3px 12px rgba(0,45,114,0.25);
  text-decoration: none;
}
.op-btn:hover {
  background: #12326E;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,45,114,0.35);
  color: white !important;
}
.op-btn--alt {
  background: #4C0000;
  box-shadow: 0 3px 12px rgba(76,0,0,0.25);
}
.op-btn--alt:hover {
  background: #3a0000;
  box-shadow: 0 6px 20px rgba(76,0,0,0.35);
}

/* Column widths */
.col-rank { width: 52px; text-align: center; }
.col-logo { width: 170px; }
.col-bonus { width: 220px; }
.col-games { width: 90px; text-align: center; }
.col-payment { width: 200px; font-size: 0.88rem; color: #555; }
.col-licence { width: 90px; text-align: center; }
.col-rating { width: 100px; }
.col-cta { width: 130px; text-align: center; }

/* ── Mobile cards ── */
.op-cards {
  display: none;
  flex-direction: column;
  gap: 16px;
}

.op-card {
  background: #fff;
  border: 1px solid #D9DADB;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,45,114,0.07);
}
.op-card--top {
  border-left: 4px solid #002D72;
  background: #fffbf0;
}
.op-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.op-card-header .op-logo-wrap {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.op-card-header .op-logo-wrap img {
  width: 100px;
  height: 38px;
}
.op-card-bonus {
  font-size: 1.05rem;
  font-weight: 800;
  color: #002D72;
  margin-bottom: 10px;
}
.op-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.op-card-meta span {
  background: #e8f0fe;
  color: #002D72;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 4px;
}
.op-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.op-card-footer .op-stars {
  font-size: 0.95rem;
  font-weight: 700;
}

/* Responsive: show cards, hide table */
@media (max-width: 800px) {
  .op-table-wrap { display: none; }
  .op-cards { display: flex; }
  .operators-container { padding: 0 16px; }
}

/* ═══════════════════════════════════════════════
   COMPREHENSIVE RESPONSIVE — ALL BREAKPOINTS
   Min supported width: 320px
═══════════════════════════════════════════════ */

/* ── 992px ── */
@media (max-width: 992px) {
  .hero-content { padding: 28px 20px 22px; }
  .author-box { max-width: 100%; }
  .operators-container { padding: 0 20px; }
  .col-payment { display: none; }
  .op-table { min-width: 700px; }
}

/* ── 768px ── */
@media (max-width: 768px) {
  /* Hero */
  .hero { min-height: auto; max-height: none; }
  .hero-content { padding: 22px 16px 18px; }
  h1 { font-size: clamp(1.7rem, 5.5vw, 2.4rem); line-height: 1.3; }

  /* Author */
  .author-box { flex-direction: column; gap: 10px; padding: 12px 14px; }
  .author-avatar img { width: 48px; height: 48px; }
  .author-desc { font-size: 0.85rem; }
  .author-name { font-size: 1rem; }

  /* Sections */
  .container { padding: 0 16px; }
  section { padding: 28px 0; }
  .operators-container { padding: 0 16px; }
  h2 { font-size: 1.3rem; }

  /* Cards grid */
  .wagering-grid { grid-template-columns: 1fr !important; }

  /* Casino sections */
  .casino-section { padding: 20px 16px; }
  .casino-section-header { flex-direction: column; gap: 12px; }
  .pros-cons { flex-direction: column; gap: 12px; }
}

/* ── 576px ── */
@media (max-width: 576px) {
  h1 { font-size: clamp(1.7rem, 6.5vw, 2.3rem); }
  h2 { font-size: 1.15rem; }
  h3 { font-size: 1rem; }

  .hero-content { padding: 18px 14px 14px; }
  .author-box { padding: 10px 12px; gap: 8px; }
  .author-meta { flex-direction: column; gap: 2px; font-size: 0.78rem; }
  .author-desc { font-size: 0.82rem; margin-top: 4px; }

  .operators-container { padding: 0 12px; }
  .operators-subtitle { font-size: 0.9rem; }

  /* Op cards on mobile */
  .op-card { padding: 16px; }
  .op-card-header .op-logo-wrap img { width: 80px; height: 32px; }
  .op-card-bonus { font-size: 0.97rem; }
  .op-card-meta { gap: 6px; }
  .op-card-meta span { font-size: 0.75rem; padding: 2px 7px; }
  .op-btn { font-size: 0.85rem; padding: 10px 14px; }

  /* Info cards grid */
  .info-card { padding: 16px; }
  .zabava-grid { grid-template-columns: 1fr; }

  /* Step cards */
  section div[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }

  /* CTA section */
  .cta-section { padding: 28px 14px; }
  .btn-cta-big { padding: 12px 22px; font-size: 0.9rem; width: 100%; text-align: center; }

  /* Footer */
  .site-footer { padding: 28px 14px; }
  .footer-links { flex-direction: column; gap: 6px; }

  /* FAQ */
  .faq-q { padding: 14px 12px; }
  .faq-a { padding: 0 12px; }
}

/* ── 480px ── */
@media (max-width: 480px) {
  h1 { font-size: clamp(1.2rem, 6.2vw, 1.4rem); }
  .hero-suits { font-size: 1.4rem; letter-spacing: 8px; }

  .author-avatar img { width: 40px; height: 40px; }
  .author-box { flex-direction: row; align-items: flex-start; }

  .op-card-header { gap: 10px; }
  .op-card-header .op-logo-wrap img { width: 70px; height: 28px; }
  .op-card-footer { flex-direction: column; align-items: stretch; }
  .op-card-footer .op-btn { text-align: center; }

  .casino-section { padding: 16px 12px; }
  .pros { padding: 12px; }
  .cons { padding: 12px; }
}

/* ── 380px ── */
@media (max-width: 380px) {
  h1 { font-size: clamp(0.9rem, 5.8vw, 1rem); }
  h2 { font-size: 1.05rem; }

  .hero-content { padding: 14px 12px 12px; }
  .author-box { padding: 8px 10px; }
  .author-name { font-size: 0.95rem; }
  .author-role { font-size: 0.78rem; }
  .btn-author-more { font-size: 0.8rem; padding: 4px 10px; }

  .operators-container { padding: 0 10px; }
  .op-card { padding: 14px 12px; }

  .table-title { font-size: 0.8rem; }
  .container { padding: 0 12px; }
  .info-card { padding: 14px 12px; }
}

/* ── 320px (minimum) ── */
@media (max-width: 320px) {
  * { word-break: break-word; }

  h1 { font-size: 0.95rem; line-height: 1.35; }
  h2 { font-size: 1rem; }
  h3 { font-size: 0.92rem; }

  .hero-content { padding: 12px 10px 10px; }
  .author-box { padding: 8px; gap: 6px; flex-direction: column; }
  .author-avatar img { width: 36px; height: 36px; }
  .author-name { font-size: 0.9rem; }
  .author-role { font-size: 0.72rem; }
  .author-desc { font-size: 0.78rem; }
  .author-meta span { font-size: 0.72rem; }
  .btn-author-more { font-size: 0.75rem; padding: 3px 8px; }

  .site-header__inner { padding: 0 10px; height: 52px; }
  .site-header__logo img { height: 26px; }
  .site-header__logo-text { display: none; }

  .operators-container { padding: 0 8px; }
  .op-card { padding: 12px 10px; }
  .op-card-header .op-logo-wrap img { width: 60px; height: 24px; }
  .op-card-bonus { font-size: 0.9rem; }
  .op-btn { font-size: 0.8rem; padding: 8px 12px; }

  .container { padding: 0 10px; }
  section { padding: 20px 0; }
  .info-card { padding: 12px 10px; }
  .casino-section { padding: 12px 10px; }

  .btn-cta-big { font-size: 0.85rem; padding: 10px 14px; }
  .footer-links a { font-size: 0.8rem; }
  .footer-copy { font-size: 0.75rem; }

  .faq-q h3 { font-size: 0.88rem; }
  .faq-a p { font-size: 0.85rem; }
}

/* ═══════════════════════════════════════════════
   FORD-STYLED HEADER — matches nahradni-dily-ford.cz
═══════════════════════════════════════════════ */

.ford-header {
  background: #2c2c2c;
  border-bottom: 3px solid #5767ff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.ford-header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  height: 58px;
}

/* BIG TEXT LOGO — matches ford branding */
.ford-header__logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.ford-header__logo-text {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
  border-left: 4px solid #5767ff;
  padding-left: 14px;
}

.ford-header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.ford-header__nav-link {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.ford-header__nav-link:hover {
  background: rgba(87,103,255,0.2);
  color: #fff;
}

.ford-header__nav-link--active {
  background: #5767ff;
  color: #fff !important;
}

/* Hero — ford background image + dark overlay */
.hero {
  background: url(../img/ford-background.webp) center/cover no-repeat, #2c2c2c !important;
  min-height: 260px !important;
  max-height: calc(100vh - 110px) !important;
}

.hero-overlay {
  background: linear-gradient(135deg, rgba(44,44,44,0.93) 0%, rgba(87,103,255,0.55) 100%) !important;
}

/* Operator table header */
.op-table thead tr {
  background: linear-gradient(90deg, #2c2c2c 0%, #1a1a3e 100%) !important;
}

/* Buttons */
.op-btn {
  background: #5767ff !important;
  box-shadow: 0 3px 12px rgba(87,103,255,0.35) !important;
}
.op-btn:hover {
  background: #3d4fdd !important;
  box-shadow: 0 6px 20px rgba(87,103,255,0.45) !important;
}
.op-btn--alt {
  background: #2c2c2c !important;
  border: 1px solid #5767ff !important;
}
.op-btn--alt:hover { background: #1a1a3e !important; }

/* CTA section */
.cta-section {
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a3e 100%) !important;
}

/* Footer */
.site-footer {
  background: #2c2c2c !important;
  border-top: 3px solid #5767ff !important;
}

/* Accent colors */
/* h2 { color: #2c2c2c !important; } */
h3 { color: #2c2c2c !important; }
.op-bonus-main { color: #5767ff !important; }
.op-licence--mga { background: #eef0ff !important; color: #2c2c2c !important; border-color: #5767ff !important; }
.op-rank { background: #5767ff !important; }
.op-stars { color: #5767ff !important; }
.stars { color: #5767ff !important; }
.btn-cta { background: #5767ff !important; }
.btn-cta:hover { background: #3d4fdd !important; }
.btn-cta-big { background: #5767ff !important; }
.op-card-meta span { background: #eef0ff !important; color: #2c2c2c !important; }
.op-card--top { border-left-color: #5767ff !important; }
.info-card { border-left-color: #5767ff !important; }
.tbl-wrap { border-color: #5767ff !important; }
.op-table-wrap { border-color: #5767ff !important; }
.casino-section { border-top-color: #5767ff !important; }
.pros { border-top-color: #5767ff !important; }
.cons { border-top-color: #2c2c2c !important; }
.op-row--top { border-left-color: #5767ff !important; }
tbody tr:first-child { border-left-color: #5767ff !important; }

.badge-wager-green { background: #eef0ff; color: #2c2c2c; border: 1px solid #5767ff; border-radius: 4px; padding: 2px 8px; font-weight: 700; font-size: 0.85rem; }
.badge-wager-yellow { background: #fff8e1; color: #8B6000; border: 1px solid #FFB300; border-radius: 4px; padding: 2px 8px; font-weight: 700; font-size: 0.85rem; }
.badge-wager-red { background: #fff0f0; color: #c00; border: 1px solid #e00; border-radius: 4px; padding: 2px 8px; font-weight: 700; font-size: 0.85rem; }

body { font-family: 'Open Sans', 'Source Sans 3', Arial, sans-serif !important; }

@media (max-width: 640px) {
  .ford-header__nav { display: none; }
  .ford-header__inner { justify-content: space-between; }
}

@media (max-width: 380px) {
  .ford-header__logo-text { font-size: 0.95rem; letter-spacing: 0.04em; padding-left: 10px; }
  .ford-header__inner { height: 50px; padding: 0 12px; }
}

@media (max-width: 320px) {
  .ford-header__logo-text { font-size: 0.82rem; }
}


/* ══════════════════════════════════════════
   CONTENT EXPANSION / SUPPORTING PAGES
══════════════════════════════════════════ */
.content-hero {
  /* background: linear-gradient(135deg, rgba(10,18,45,0.95), rgba(18,50,110,0.78)); */
  color: #fff;
  padding: 56px 0 40px;
  position: relative;
  overflow: hidden;
  background: url(/img/ford-background.webp) center / cover no-repeat, #2c2c2c !important;
    min-height: 260px !important;
}
.content-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,44,44,0.93) 0%, rgba(87,103,255,0.55) 100%) !important;
}
.content-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 28px;
  align-items: center;
}
.content-hero p, .content-hero li { color: rgba(255,255,255,0.9); }
.breadcrumbs {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px;
  font-size: 0.88rem; color: rgba(255,255,255,0.75);
}
.breadcrumbs a { color: rgba(255,255,255,0.92); }
.breadcrumbs span.sep { opacity: 0.6; }
.hero-lead {
  font-size: 1.06rem; max-width: 720px; color: rgba(255,255,255,0.94); margin-bottom: 16px;
}
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px;
}
.hero-meta span {
  padding: 7px 12px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.14); border-radius: 999px;
  font-size: 0.82rem;
}
.hero-image-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px; overflow: hidden; box-shadow: 0 18px 42px rgba(0,0,0,0.25);
}
.hero-image-card img { width: 100%; height: 100%; object-fit: cover; }
.page-wrap { padding: 48px 0; }
.page-grid { display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: 28px; align-items: start; }
.page-main, .page-aside { min-width: 0; }
.content-card, .page-aside .aside-card, .entity-card, .summary-card {
  background: #fff; border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow);
}
.content-card { padding: 28px; }
.content-card + .content-card { margin-top: 22px; }
.content-card h2, .content-card h3 { color: var(--gold); }
.content-card h3 { margin: 0 0 12px; font-size: 1.18rem; }
.content-card p { color: #3f4651; }
.content-card ul, .content-card ol {
  margin: 14px 0 18px 0; padding-left: 22px; color: #3f4651;
}
.content-card ul li, .content-card ol li { margin-bottom: 8px; }
.content-card ul { list-style: disc; }
.content-card ol { list-style: decimal; }
.toc-list { display: grid; gap: 10px; }
.toc-list a, .mini-links a {
  display: block; padding: 12px 14px; border-radius: 10px; background: #f7f8fb; border: 1px solid #e7ebf4; color: #14326E; font-weight: 600;
}
.toc-list a:hover, .mini-links a:hover { background: #eef3ff; }
.entity-grid, .feature-grid, .link-grid, .summary-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px;
}
.entity-card, .summary-card { padding: 20px; }
.entity-card h3, .summary-card h3 { margin-bottom: 10px; }
.key-points {
  background: linear-gradient(180deg, #f7f9ff, #ffffff); border: 1px solid #dbe5ff; padding: 22px; border-radius: 14px;
}
.key-points h2, .notice-box h2 { margin-bottom: 14px; }
.notice-box {
  background: #fffaf0; border: 1px solid #f1d8a1; border-left: 5px solid #ff9d00; padding: 22px; border-radius: 14px;
}
.image-block { overflow: hidden; border-radius: 14px; border: 1px solid var(--border); background: #fff; }
.image-block img { width: 100%; height: auto; display: block; }
.image-caption { font-size: 0.88rem; color: #666; padding: 12px 16px; border-top: 1px solid #eceff4; }
.info-table { width: 100%; min-width: 0; border-collapse: collapse; }
.info-table th, .info-table td { border: 1px solid #e5eaf1; padding: 12px 14px; text-align: left; vertical-align: top; }
.related-box {
  background: linear-gradient(180deg, #16397c, #0c224d); color: #fff; border-radius: 16px; padding: 24px; box-shadow: 0 20px 40px rgba(12,34,77,.25);
}
.related-box h2, .related-box h3 { color: #fff; }
.related-box p { color: rgba(255,255,255,0.86); }
.mini-links { display: grid; gap: 10px; margin-top: 14px; }
.aside-card { padding: 20px; margin-bottom: 20px; }
.aside-card h3 { color: var(--gold); margin-bottom: 12px; }
.aside-card ul { padding-left: 20px; list-style: disc; color: #3f4651; }
.aside-card li { margin-bottom: 8px; }
.footer-nav-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 18px; margin-top: 24px;
}
.footer-nav-grid a { color: rgba(255,255,255,0.85); font-size: 0.92rem; display: block; padding: 4px 0; }
.section-intro-links {
  margin-top: 22px; display: grid; grid-template-columns: repeat(auto-fit,minmax(210px,1fr)); gap: 18px;
}
.section-intro-links .summary-card { background: #fff; }
.kasino-strip {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 18px;
}
.kasino-mini {
  background: #fff; border: 1px solid #dfe5f0; border-radius: 14px; padding: 18px; box-shadow: var(--shadow);
}
.kasino-mini img { width: 140px; height: 52px; object-fit: contain; margin-bottom: 12px; background:#fff; border:1px solid #eceff4; border-radius:10px; padding:6px; }
.kasino-mini p { font-size: 0.95rem; margin-bottom: 12px; }
@media (max-width: 980px) {
  .content-hero__inner, .page-grid { grid-template-columns: 1fr; }
  .page-aside { order: -1; }
}
@media (max-width: 640px) {
  .content-card, .aside-card { padding: 20px; }
  .hero-meta { gap: 8px; }
}


/* Final readability fixes */
.content-card, .summary-card, .entity-card, .aside-card, .kasino-mini { color:#263244; }
.content-card h2, .content-card h3, .summary-card h3, .entity-card h3, .aside-card h3 { color:#002D72 !important; text-shadow:none !important; }
/* .summary-card p, .entity-card p, .aside-card p, .content-card p, .content-card li { color:#344054 !important; } */
.content-card a, .summary-card a, .entity-card a { color:#002D72; font-weight:700; text-decoration:underline; text-underline-offset:2px; }
.content-image { margin:26px 0; }
.hero-image, .hero-image-card { min-height:260px; }
.hero-image img, .hero-image-card img { width:100%; height:100%; min-height:260px; object-fit:cover; }
.page-content { padding:48px 0; background:#f2f2f2; }
.key-points p { color:#344054 !important; }
.footer-nav-grid a:hover { color:#fff; text-decoration:underline; }

.seo-entity-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(230px,1fr)); gap:20px; margin-top:24px; }
.seo-entity-card { background:#fff; border:1px solid #D9DADB; border-radius:16px; box-shadow:0 4px 16px rgba(0,45,114,.12); overflow:hidden; padding:0 0 18px; }
.seo-entity-card img { width:100%; aspect-ratio:16/9; object-fit:cover; }
.seo-entity-card h3 { color:#002D72 !important; margin:16px 16px 8px; }
.seo-entity-card p { color:#344054 !important; margin:0 16px 12px; }
.seo-entity-card a { margin:0 16px; font-weight:700; color:#002D72; text-decoration:underline; }


/* Readability fixes for inner SEO pages */
/* .inner-page .content-card,
.inner-page .summary-card,
.inner-page .entity-card,
.inner-page .aside-card,
.inner-page .kasino-mini,
.inner-page .key-points,
.inner-page .link-grid,
.inner-page .info-box,
.inner-page .image-caption {
  color: #263244 !important;
  background-color: #ffffff;
} */
/* .inner-page .content-card p,
.inner-page .content-card li,
.inner-page .content-card td,
.inner-page .content-card th,
.inner-page .summary-card p,
.inner-page .summary-card li,
.inner-page .entity-card p,
.inner-page .entity-card li,
.inner-page .aside-card p,
.inner-page .aside-card li,
.inner-page .key-points p,
.inner-page .key-points li,
.inner-page .link-grid p,
.inner-page .image-caption {
  color: #263244 !important;
  text-shadow: none !important;
} */
.inner-page .content-card h2,
.inner-page .content-card h3,
.inner-page .summary-card h2,
.inner-page .summary-card h3,
.inner-page .entity-card h2,
.inner-page .entity-card h3,
.inner-page .aside-card h2,
.inner-page .aside-card h3,
.inner-page .key-points h2,
.inner-page .key-points h3 {
  color: #002D72 !important;
  text-shadow: none !important;
}
/* .inner-page .content-card a,
.inner-page .summary-card a,
.inner-page .entity-card a,
.inner-page .aside-card a,
.inner-page .key-points a {
  color: #002D72 !important;
  font-weight: 700;
} */
.inner-page table td,
.inner-page table th {
  color: #263244 !important;
}
.inner-page thead th {
  color: #ffffff !important;
}
