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

:root {
  --blue: #1651e8;
  --blue-light: #4d7fff;
  --blue-dark: #0f3dcc;
  --gold: #c47d0e;
  --bg: #ffffff;
  --bg2: #f3f6ff;
  --bg3: #e8eeff;
  --card: #f8faff;
  --border: rgba(22,81,232,0.15);
  --text: #1a202c;
  --text-dim: #718096;
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Arial, sans-serif; background: var(--bg); color: var(--text); line-height: 1.7; font-size: 16px; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* ── HEADER ── */
header {
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 6px rgba(22,81,232,0.07);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; max-width: 1100px; margin: 0 auto; }
.logo { font-size: 1.3rem; font-weight: 700; color: var(--blue); text-decoration: none; display: flex; align-items: center; gap: 8px; letter-spacing: -0.3px; }
.logo span { color: var(--text); }
.logo-dot { color: var(--gold); }
.badge-18 { font-size: 0.65rem; font-weight: 700; background: var(--blue); color: #fff; border-radius: 4px; padding: 2px 5px; margin-left: 4px; }
.header-nav { display: flex; gap: 4px; }
.header-nav a { color: var(--text-dim); text-decoration: none; font-size: 0.82rem; padding: 6px 10px; border-radius: 6px; transition: color 0.2s, background 0.2s; white-space: nowrap; }
.header-nav a:hover, .header-nav a.active { color: var(--blue); background: rgba(22,81,232,0.07); }

/* ── HAMBURGER ── */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 750px) {
  .nav-toggle { display: flex; }
  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    gap: 4px;
    padding: 10px 16px 14px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 16px rgba(22,81,232,0.1);
    z-index: 200;
  }
  .header-nav.open { display: flex; }
  .header-nav a { font-size: 0.95rem; padding: 10px 14px; border-radius: 8px; }
}

/* ── HERO ── */
.hero { background: var(--bg2); border-bottom: 1px solid var(--border); }
.hero-inner { max-width: 1100px; margin: 0 auto; padding: 64px 20px; display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: center; }
.hero-content { display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero-pills { justify-content: center; }
.hero h1 { text-align: center; }
.hero-lead { text-align: center; }
.affiliate-notice { text-align: left; }
.article-meta { justify-content: center; }
.hero-img-wrap { display: flex; align-items: center; justify-content: center; }
.hero-img-wrap img { width: 100%; max-width: 420px; height: auto; display: block; border-radius: var(--radius); }
.hero-eyebrow { font-size: 0.82rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: var(--text); line-height: 1.2; margin-bottom: 18px; }
.hero h1 em { font-style: normal; background: linear-gradient(90deg, var(--blue), var(--blue-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; font-size: 0.82rem; color: var(--text-dim); margin-bottom: 12px; }
.article-meta a { color: var(--blue); text-decoration: none; }
.meta-sep { color: rgba(0,0,0,0.2); }
.affiliate-notice { font-size: 0.78rem; color: var(--text-dim); background: rgba(196,125,14,0.06); border: 1px solid rgba(196,125,14,0.2); border-radius: 6px; padding: 8px 12px; margin-bottom: 18px; line-height: 1.5; }
.affiliate-notice strong { color: var(--gold); }
.hero-lead { font-size: 1.05rem; color: #4a5568; margin-bottom: 28px; line-height: 1.7; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.pill { font-size: 0.82rem; padding: 6px 14px; border-radius: 30px; border: 1px solid rgba(22,81,232,0.3); color: var(--blue); background: rgba(22,81,232,0.06); }
.btn-primary { display: inline-block; background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: #fff; font-weight: 700; font-size: 0.95rem; padding: 14px 32px; border-radius: 50px; text-decoration: none; box-shadow: 0 4px 20px rgba(22,81,232,0.35); transition: transform 0.2s, box-shadow 0.2s; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(22,81,232,0.5); }

/* ── VITRINE (full width) ── */
.vitrine-wrap { max-width: 1100px; margin: 0 auto; padding: 24px 20px 0; }
.vitrine-wrap .section { padding-top: 0; }

/* ── PAGE LAYOUT ── */
.page-layout { display: grid; grid-template-columns: 1fr 220px; gap: 28px; align-items: start; padding: 12px 20px 0; max-width: 1100px; margin: 0 auto; }
.main-content { min-width: 0; }

/* ── SIDEBAR ── */
.sidebar { position: sticky; top: 68px; padding-top: 12px; }
.sidebar-toc { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 14px; }
.sidebar-toc h2 { font-size: 0.78rem; font-weight: 700; color: var(--blue); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px; }
.sidebar-toc ul { list-style: none; margin: 0; padding: 0; }
.sidebar-toc li a { color: var(--text-dim); text-decoration: none; font-size: 0.85rem; display: flex; align-items: flex-start; gap: 6px; padding: 7px 0; border-bottom: 1px solid rgba(0,0,0,0.05); transition: color 0.2s; line-height: 1.4; }
.sidebar-toc li:last-child a { border-bottom: none; }
.sidebar-toc li a::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--blue); flex-shrink: 0; margin-top: 5px; }
.sidebar-toc li a:hover, .sidebar-toc li a.active { color: var(--blue); }
.sidebar-toc li a.active { font-weight: 600; }

/* ── SECTIONS ── */
.section { padding: 16px 0; }
.section + .section { border-top: 1px solid rgba(0,0,0,0.06); }
.section-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
h2.section-title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: var(--text); margin-bottom: 14px; line-height: 1.25; }
h2.section-title em { font-style: normal; color: var(--blue); }
.section-intro { color: var(--text); font-size: 1rem; max-width: 800px; margin-bottom: 32px; line-height: 1.75; }

/* ── TAGS ── */
.casino-logo {
  width: 130px; height: 46px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #0e35b4, #1f5af5);
  border-radius: 10px;
  padding: 6px 10px;
}
.casino-logo img { width: 110px; height: 34px; object-fit: contain; object-position: center; }
.metric-tag { display: inline-block; padding: 0.25rem 0.65rem; border-radius: 20px; font-size: 0.78rem; font-weight: 600; margin: 0.15rem; background: rgba(22,81,232,0.07); color: var(--blue); border: 1px solid rgba(22,81,232,0.18); }
.payid-highlight { background: linear-gradient(45deg, var(--blue), var(--blue-light)); color: #fff; border: none; font-weight: 700; padding: 0.28rem 0.75rem; border-radius: 20px; font-size: 0.78rem; display: inline-block; margin: 0.15rem; box-shadow: 0 2px 8px rgba(22,81,232,0.25); }
.bonus-tag { background: rgba(196,125,14,0.08); color: var(--gold); border-color: rgba(196,125,14,0.22); }
.rating-tag { background: rgba(74,156,93,0.1); color: #3a8a52; border-color: rgba(74,156,93,0.25); font-weight: 700; }
.payment-tag { color: var(--text-dim); border-color: rgba(0,0,0,0.1); background: rgba(0,0,0,0.03); }
.deposit-badge { display: inline-block; background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: #fff; font-weight: 700; font-size: 0.78rem; padding: 0.22rem 0.6rem; border-radius: 20px; white-space: nowrap; }

/* ── CV LIST — BOC style, blue theme ── */
.cv-list { display: flex; flex-direction: column; gap: 0.85rem; margin: 1.5rem 0; }
.cv-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); display: flex; align-items: stretch; box-shadow: 0 1px 4px rgba(22,81,232,0.08); transition: box-shadow 0.2s, transform 0.2s; overflow: hidden; }
.cv-card:hover { box-shadow: 0 4px 18px rgba(22,81,232,0.16); transform: translateY(-2px); }
.cv-col { display: flex; flex-direction: column; justify-content: center; padding: 1rem 1.1rem; border-right: 1px solid var(--border); }
.cv-col:last-child { border-right: none; }
.cv-col-label { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-dim); margin-bottom: 0.35rem; }
/* Brand */
.cv-col-brand { width: 185px; flex-shrink: 0; align-items: center; gap: 0.5rem; background: linear-gradient(160deg, #0e35b4 0%, #061d6e 100%); border-right-color: transparent; }
.cv-col-brand .casino-logo { width: 165px; height: 70px; background: none; border-radius: 0; padding: 0; }
.cv-col-brand .casino-logo img { width: 165px; height: 70px; object-fit: contain; filter: drop-shadow(0 2px 6px rgba(0,0,0,.35)); }
.cv-name { font-weight: 700; font-size: 0.84rem; text-align: center; color: #fff; }
.cv-badge { display: inline-flex; align-items: center; gap: 0.25rem; padding: 0.18rem 0.55rem; border-radius: 100px; font-size: 0.63rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.3px; white-space: nowrap; }
.cv-badge-gold   { background: #fef3c7; color: #92400e; }
.cv-badge-green  { background: #dcfce7; color: #166534; }
.cv-badge-blue   { background: rgba(255,255,255,.15); color: #bfdbfe; }
.cv-badge-purple { background: #ede9fe; color: #5b21b6; }
/* Bonus */
.cv-col-bonus { flex: 0 0 195px; }
.cv-bonus { font-size: 1rem; font-weight: 800; color: #15803d; line-height: 1.25; }
.cv-bonus-sub { font-size: 0.72rem; color: var(--text-dim); line-height: 1.35; margin-top: 0.2rem; }
/* Highlights */
.cv-col-hl { flex: 1; min-width: 0; gap: 0.45rem; }
.cv-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 0.28rem 0.5rem; }
.cv-hl { display: flex; align-items: center; gap: 0.35rem; font-size: 0.8rem; color: var(--text); }
.cv-hl::before { content: '✓'; color: var(--blue); font-weight: 700; font-size: 0.65rem; flex-shrink: 0; }
.cv-providers { display: flex; flex-wrap: wrap; gap: 0.28rem; margin-top: 0.3rem; }
.cv-prov { background: var(--bg2); border: 1px solid var(--border); border-radius: 5px; padding: 0.13rem 0.42rem; font-size: 0.68rem; color: var(--text-dim); white-space: nowrap; font-weight: 500; }
/* Payments */
.cv-col-pay { flex: 0 0 148px; }
.cv-pay-list { display: flex; flex-direction: column; gap: 0.28rem; }
.cv-pay-item { display: flex; align-items: center; gap: 0.35rem; font-size: 0.8rem; color: var(--text); white-space: nowrap; }
.cv-pay-item::before { content: '›'; color: var(--blue); font-weight: 700; flex-shrink: 0; }
.cv-pay-payid { color: var(--blue); font-weight: 700; }
/* Action */
.cv-col-action { flex: 0 0 155px; align-items: center; gap: 0.5rem; background: var(--bg2); padding: 1rem 1.1rem; }
.cv-stars { color: #f59e0b; font-size: 0.82rem; display: flex; align-items: center; gap: 0.08rem; }
.cv-stars span { font-size: 0.74rem; color: var(--text-dim); margin-left: 0.2rem; font-weight: 600; }
.btn-play { display: block; width: 100%; text-align: center; background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: #fff; padding: 0.65rem 0; border-radius: 50px; font-weight: 700; font-size: 0.88rem; text-decoration: none; box-shadow: 0 3px 10px rgba(22,81,232,0.3); transition: transform 0.2s, box-shadow 0.2s; }
.btn-play:hover { transform: translateY(-2px); box-shadow: 0 5px 16px rgba(22,81,232,0.45); }
.cv-tc { font-size: 0.62rem; color: var(--text-dim); text-align: center; line-height: 1.3; }
/* Responsive */
/* tablet: hide payments, shrink highlights */
@media (max-width: 1000px) {
  .cv-col-pay { display: none; }
  .cv-col-hl { flex: 0 0 200px; }
  .cv-col-brand { width: 160px; }
  .cv-col-brand .casino-logo { width: 140px; height: 58px; }
  .cv-col-brand .casino-logo img { width: 140px; height: 58px; }
  .cv-col-bonus { flex: 0 0 170px; }
  .cv-bonus { font-size: 0.88rem; }
}

/* mobile: compact 2-row layout */
@media (max-width: 650px) {
  .cv-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    grid-template-rows: auto auto;
    border-radius: var(--radius);
  }
  .cv-col-brand {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 120px;
    border-right: 1px solid rgba(255,255,255,0.1);
    border-bottom: none;
    padding: 0.75rem 0.6rem;
  }
  .cv-col-brand .casino-logo { width: 100px; height: 46px; }
  .cv-col-brand .casino-logo img { width: 100px; height: 46px; }
  .cv-col-brand .cv-name { font-size: 0.75rem; }
  .cv-col-bonus {
    grid-column: 2;
    grid-row: 1;
    flex: none;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 0.6rem 0.75rem;
  }
  .cv-bonus { font-size: 0.85rem; }
  .cv-bonus-sub { font-size: 0.68rem; }
  .cv-col-hl { display: none; }
  .cv-col-pay { display: none; }
  .cv-col-action {
    grid-column: 2;
    grid-row: 2;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0.75rem;
    gap: 0.5rem;
    background: var(--bg2);
  }
  .cv-stars { font-size: 0.75rem; }
  .btn-play { width: auto; padding: 0.5rem 1.2rem; font-size: 0.82rem; }
  .cv-tc { display: none; }
}

/* ── COMPARISON TABLE ── */
.comparison-table { margin: 1.5rem 0; border-radius: var(--radius-lg); overflow-x: auto; border: 1px solid var(--border); }
.comparison-table table { width: 100%; border-collapse: collapse; background: transparent; min-width: 700px; }
.comparison-table thead tr { background: linear-gradient(90deg, rgba(22,81,232,0.1), rgba(15,61,204,0.05)); }
.comparison-table th { color: var(--blue); padding: 11px 12px; text-align: left; font-weight: 700; font-size: 0.75rem; letter-spacing: 0.5px; text-transform: uppercase; border-bottom: 1px solid var(--border); white-space: nowrap; }
.comparison-table tbody tr { transition: background 0.15s; }
.comparison-table tbody tr:nth-child(even) td { background: rgba(22,81,232,0.02); }
.comparison-table tbody tr:hover td { background: rgba(22,81,232,0.05); }
.comparison-table td { padding: 10px 12px; border-bottom: 1px solid rgba(0,0,0,0.05); color: var(--text); background: transparent; vertical-align: middle; white-space: nowrap; }
.comparison-table tr:last-child td { border-bottom: none; }
.td-casino { display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; }
.td-casino strong { font-size: 0.82rem; color: var(--text); white-space: normal; text-align: center; max-width: 130px; line-height: 1.3; }
.provider-tag { background: rgba(109,64,213,0.07); color: #6d40d5; border-color: rgba(109,64,213,0.2); }
.payid-highlight small { font-size: 0.68em; opacity: 0.9; }

/* ── BUTTONS ── */
.conversion-btn { background: linear-gradient(45deg, var(--blue), var(--blue-dark)); color: #fff; padding: 10px 20px; text-decoration: none; border-radius: 25px; font-weight: 700; display: inline-block; white-space: nowrap; box-shadow: 0 3px 10px rgba(22,81,232,0.25); transition: transform 0.2s, box-shadow 0.2s; font-size: 0.88rem; }
.conversion-btn:hover { transform: translateY(-2px); box-shadow: 0 5px 16px rgba(22,81,232,0.4); }

/* ── MOBILE CARDS ── */
.casino-comparison-cards { display: none; }
.casino-comparison-card { background: var(--card); border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; margin-bottom: 12px; }
.card-top { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-bottom: 1px solid rgba(0,0,0,0.06); }
.card-top .casino-logo { width: 150px; height: 52px; flex-shrink: 0; background: linear-gradient(135deg, #0e35b4, #1f5af5); border-radius: 10px; padding: 6px 10px; }
.card-top .casino-logo img { width: 130px; height: 40px; object-fit: contain; }
.card-name { font-weight: 700; font-size: 1rem; color: var(--text); }
.card-rating { font-size: 0.8rem; color: #3a8a52; margin-top: 2px; }
.card-body { padding: 12px 16px; }
.card-bonus { font-size: 0.88rem; font-weight: 600; color: var(--gold); margin-bottom: 10px; line-height: 1.4; }
.card-payments { margin-bottom: 12px; }
.card-footer { padding: 0 16px 14px; }
.card-footer .conversion-btn { display: block; text-align: center; }

/* ── ARTICLE ── */
.article-section { margin-bottom: 20px; }
.article-section h2 { font-size: clamp(1.35rem, 2.5vw, 1.75rem); font-weight: 800; color: var(--text); margin-bottom: 16px; padding-top: 8px; }
.article-section h3 { font-size: 1.15rem; font-weight: 700; color: var(--blue); margin: 24px 0 10px; }
.article-section h4 { font-size: 1rem; font-weight: 700; color: var(--text); margin: 16px 0 6px; }
.article-section p { color: var(--text); margin-bottom: 14px; line-height: 1.8; }
.article-section ul, .article-section ol { color: var(--text); margin: 10px 0 18px 24px; line-height: 1.85; }
.article-section li { margin-bottom: 4px; }
.article-section strong { color: var(--text); font-weight: 700; }
.section-img-right { float: right; width: 42%; height: auto; border-radius: var(--radius); margin: 0 0 20px 28px; }
.clearfix::after { content: ''; display: table; clear: both; }

.highlight-box { background: rgba(22,81,232,0.05); border: 1px solid rgba(22,81,232,0.18); border-left: 4px solid var(--blue); border-radius: 0 var(--radius) var(--radius) 0; padding: 18px 20px; margin: 20px 0; }
.highlight-box p { margin-bottom: 0; }

/* STEPS */
.steps { counter-reset: step; list-style: none; margin: 0 0 18px; padding: 0; }
.steps li { counter-increment: step; display: flex; align-items: flex-start; gap: 16px; margin-bottom: 18px; color: var(--text); }
.steps li::before { content: counter(step); flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: #fff; font-size: 0.82rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.steps li strong { display: block; color: var(--text); font-weight: 700; margin-bottom: 4px; }

/* PROS/CONS */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 20px 0; }
.pros-box, .cons-box { background: var(--bg2); border-radius: var(--radius); padding: 20px; border: 1px solid var(--border); }
.pros-box h3 { color: #3a8a52; margin-bottom: 12px; font-size: 1rem; margin-top: 0; }
.cons-box h3 { color: #c0392b; margin-bottom: 12px; font-size: 1rem; margin-top: 0; }
.pros-box ul, .cons-box ul { margin: 0; padding: 0; list-style: none; }
.pros-box li, .cons-box li { padding: 6px 0; font-size: 0.9rem; color: var(--text); border-bottom: 1px solid rgba(0,0,0,0.06); }
.pros-box li:last-child, .cons-box li:last-child { border-bottom: none; }
.pros-box li::before { content: '✓ '; color: #3a8a52; font-weight: 700; }
.cons-box li::before { content: '✗ '; color: #c0392b; font-weight: 700; }

/* FAQ */
.faq-list { margin-top: 10px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-q { padding: 18px 20px; font-weight: 700; color: var(--text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; background: var(--bg2); transition: background 0.2s; }
.faq-q:hover { background: var(--bg3); }
.faq-q::after { content: '+'; font-size: 1.2rem; color: var(--blue); flex-shrink: 0; margin-left: 12px; }
.faq-a { padding: 0 20px 18px; color: var(--text); font-size: 0.95rem; line-height: 1.75; background: #fff; display: none; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-q::after { content: '−'; }

/* ARTICLE TABLES */
.article-section table { width: 100%; border-collapse: collapse; margin: 16px 0 24px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); font-size: 0.92rem; }
.article-section thead tr { background: linear-gradient(90deg, rgba(22,81,232,0.09), rgba(15,61,204,0.04)); }
.article-section th { padding: 11px 14px; text-align: left; font-weight: 700; color: var(--blue); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 1px solid var(--border); }
.article-section td { padding: 10px 14px; border-bottom: 1px solid rgba(0,0,0,0.05); color: var(--text); vertical-align: top; }
.article-section tbody tr:nth-child(even) td { background: rgba(22,81,232,0.02); }
.article-section tbody tr:last-child td { border-bottom: none; }

/* FOOTER */
footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 40px 0 24px; margin-top: 32px; }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.footer-disclaimer { font-size: 0.78rem; color: var(--text-dim); line-height: 1.7; margin-bottom: 24px; padding: 16px; background: rgba(0,0,0,0.02); border-radius: var(--radius); border: 1px solid rgba(0,0,0,0.07); }
.footer-links { display: flex; flex-wrap: wrap; gap: 6px 16px; margin-bottom: 16px; }
.footer-links a { color: var(--text-dim); text-decoration: none; font-size: 0.8rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--blue); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.78rem; color: var(--text-dim); }
.footer-logo { font-weight: 700; color: var(--blue); font-size: 1rem; }

/* RESPONSIVE */
@media (max-width: 1000px) { .page-layout { grid-template-columns: 1fr 190px; gap: 20px; } }
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; padding: 48px 20px; }
  .hero-img-wrap { order: -1; }
  .hero-img-wrap img { max-width: 320px; margin: 0 auto; }
  .page-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
}
@media (max-width: 750px) {
  .comparison-table { display: none; }
  .casino-comparison-cards { display: block; }
  .pros-cons { grid-template-columns: 1fr; }
  .section-img-right { float: none; width: 100%; margin: 0 0 18px; }
  .article-section table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}
