/* ============================================================
   Sekce Kasino — paraostrava2019.cz
   Paleta: Vínová & Zlatá (světlé pozadí)
   Single-theme by design (light).
   ============================================================ */

:root {
  --bg: #faf7f5;
  --surface: #ffffff;
  --surface-2: #f6eef0;
  --ink: #2a1418;
  --ink-soft: #6a5a5c;
  --line: #ece0e0;

  --accent: #8c2f39;          /* vínová (burgundy) */
  --accent-2: #a83c48;
  --accent-ink: #ffffff;
  --accent-soft: #f6e9ea;

  --amber: #c9992f;           /* zlatá (gold) — accent conversion */
  --amber-2: #e0b24a;
  --amber-ink: #3a2a00;

  --pos: #2f8f5b;
  --neg: #c0473f;
  --star: #c9992f;

  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 20px rgba(58, 21, 27, .08);
  --shadow-lg: 0 14px 38px rgba(58, 21, 27, .16);
  --wrap: 1080px;

  --font: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }

/* ---------- Header (static, not sticky) ---------- */
.g-header { position: relative; z-index: 50; background: var(--surface); border-bottom: 1px solid var(--line); }
.g-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 16px; }
.g-brand { display: flex; flex-direction: row; align-items: center; gap: 11px; }
.g-brand:hover { text-decoration: none; }
.g-brand .g-logo { height: 52px; width: auto; display: block; flex: 0 0 auto; }
.g-brand-txt { display: flex; flex-direction: column; gap: 3px; }
.g-brand-sub {
  /* System font (not Inter) so it renders final immediately — no FOUT reflow. */
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 9px; font-weight: 700; letter-spacing: .155em; text-transform: uppercase;
  color: var(--ink-soft); white-space: nowrap; padding-left: 1px;
}
@media (max-width: 420px) { .g-brand .g-logo { height: 42px; } .g-brand-sub { font-size: 8px; letter-spacing: .12em; } .g-wordmark { font-size: 17px; } .g-brand { gap: 8px; } }
.g-wordmark { font-weight: 800; font-size: 21px; letter-spacing: -.02em; color: var(--ink); line-height: 1; }
.g-wordmark .wm-accent { color: var(--accent); }
.g-nav-home { color: var(--ink); font-weight: 600; font-size: 15px; padding: 9px 14px; border-radius: 9px; transition: color .15s ease, background .15s ease; }
.g-nav-home:hover { color: var(--accent); background: var(--accent-soft); text-decoration: none; }

.g-nav { display: flex; align-items: center; gap: 6px; }
.g-nav > a, .g-drop-toggle { color: var(--ink); font-weight: 600; font-size: 15px; padding: 9px 14px; border-radius: 9px; display: inline-flex; align-items: center; gap: 7px; transition: color .15s ease, background .15s ease; }
.g-nav > a:hover, .g-drop-toggle:hover { color: var(--accent); background: var(--accent-soft); text-decoration: none; }
.g-drop-toggle.current { color: var(--ink); }
.nav-ic { color: var(--ink); font-size: 13px; }
.g-nav > a:hover .nav-ic, .g-drop-toggle:hover .nav-ic { color: var(--accent); }
.g-caret { font-size: 11px; transition: transform .2s ease; color: var(--ink-soft); }

/* dropdown */
.g-drop { position: relative; }
.g-dropmenu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 230px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow-lg); padding: 8px; z-index: 60;
  opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.g-drop:hover .g-dropmenu, .g-drop.open .g-dropmenu { opacity: 1; visibility: visible; transform: translateY(0); }
.g-drop:hover .g-caret, .g-drop.open .g-caret { transform: rotate(180deg); }
.g-dropmenu a { display: block; padding: 9px 12px; border-radius: 8px; color: var(--ink); font-size: 14px; font-weight: 500; }
.g-dropmenu a:hover { background: var(--accent-soft); color: var(--accent); text-decoration: none; }
.g-dropmenu .g-dropmenu-all { font-weight: 700; color: var(--accent); border-bottom: 1px solid var(--line); border-radius: 8px 8px 0 0; margin-bottom: 4px; }

/* CTA button */
.g-nav-cta { background: linear-gradient(135deg, var(--amber), var(--amber-2)); color: var(--amber-ink) !important; font-weight: 800 !important; box-shadow: 0 6px 16px -6px rgba(201,153,47,.55); }
.g-nav-cta:hover { background: linear-gradient(135deg, var(--amber), var(--amber-2)) !important; filter: brightness(1.04); transform: translateY(-1px); }
@keyframes cta-arrow { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(4px); } }
.g-nav-cta i { font-size: 12px; display: inline-block; animation: cta-arrow 1.3s ease-in-out infinite; }
.g-nav-cta:hover i { animation-duration: .8s; }

/* mobile header CTA (hidden on desktop — desktop uses the in-nav CTA) */
.g-header-cta { display: none; }
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 3px 9px -4px rgba(201,153,47,.35); }
  50%      { box-shadow: 0 4px 13px -5px rgba(201,153,47,.5); }
}
@keyframes cta-shine {
  0%   { transform: translateX(-140%) skewX(-20deg); }
  55%, 100% { transform: translateX(320%) skewX(-20deg); }
}

/* burger */
.g-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.g-burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.g-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.g-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.g-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 800px) {
  .g-burger { display: flex; }
  .g-header-cta {
    display: inline-flex; align-items: center; justify-content: center; text-align: center;
    position: relative; top: -2px; overflow: hidden; isolation: isolate;
    background: linear-gradient(135deg, var(--amber), var(--amber-2)); color: var(--amber-ink);
    font-weight: 800; font-size: 13.5px; line-height: 1; padding: 11px 16px 10px; border-radius: 10px; white-space: nowrap;
    box-shadow: 0 4px 12px -4px rgba(201,153,47,.5);
    transition: transform .12s ease, filter .12s ease;
  }
  .g-header-cta::before {
    content: ""; position: absolute; top: 0; left: 0; width: 45%; height: 100%; z-index: -1;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,.5), transparent);
    animation: cta-shine 3.8s ease-in-out infinite;
    will-change: transform; backface-visibility: hidden;
  }
  .g-header-cta:hover { text-decoration: none; color: var(--amber-ink); filter: brightness(1.05); transform: translateY(-1px); }
  .g-header-cta:active { transform: translateY(0) scale(.97); }
  @media (max-width: 380px) { .g-header-cta { font-size: 12.5px; padding: 9px 13px 10px; } }
  /* Fullscreen overlay menu (below the 72px header bar) in the footer palette */
  .g-nav {
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0; z-index: 45;
    flex-direction: column; align-items: center; justify-content: center; gap: 4px;
    background: linear-gradient(180deg, #2a1216 0%, #1c0d10 100%);
    padding: 32px 24px 48px; overflow-y: auto;
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
  }
  /* Keep header bar (logo + burger/close) clickable above the overlay */
  .g-header .wrap { position: relative; z-index: 46; }
  .g-nav.open { opacity: 1; visibility: visible; transform: none; }
  .g-nav > a, .g-drop-toggle { width: auto; font-size: 21px; padding: 14px 18px; color: #fff; justify-content: center; }
  .g-nav > a:hover, .g-drop-toggle:hover { background: rgba(255,255,255,.08); color: #fff; }
  .g-drop-toggle.current { color: #fff; }
  .nav-ic { color: var(--amber); }
  .g-caret { color: rgba(255,255,255,.7); }
  .g-drop { width: auto; display: flex; flex-direction: column; align-items: center; }
  .g-dropmenu {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    background: transparent; border: none; border-radius: 0; margin: 2px 0 8px; padding: 0; min-width: 0;
    display: none; text-align: center;
  }
  .g-drop.open .g-dropmenu { display: block; }
  .g-dropmenu a { color: rgba(255,255,255,.8); font-size: 16px; text-align: center; padding: 10px 12px; }
  .g-dropmenu a:hover { background: rgba(255,255,255,.08); color: #fff; }
  .g-dropmenu .g-dropmenu-all { color: var(--amber); border-bottom-color: rgba(255,255,255,.14); }
  .g-nav-cta { justify-content: center; margin-top: 14px; font-size: 17px !important; padding: 14px 28px; }
  /* Keep the header bar (logo + close button) above the overlay */
  .g-header { z-index: 50; }
}

/* ---------- Generic section spacing ---------- */
main { display: block; }
.section { padding: 40px 0; }

/* ---------- Review hero ---------- */
.rev-hero { padding: 14px 0 8px; }
.breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 5px; font-size: 13px; margin-bottom: 20px; }
.breadcrumb a { display: inline-flex; align-items: center; gap: 6px; color: var(--ink-soft); font-weight: 500; padding: 5px 9px; border-radius: 7px; transition: color .15s ease, background .15s ease; }
.breadcrumb a:hover { color: var(--accent); background: var(--accent-soft); text-decoration: none; }
.breadcrumb a i { font-size: 12px; }
.breadcrumb .sep { color: var(--ink-soft); opacity: .45; font-size: 9px; }
.breadcrumb .current { color: var(--ink); font-weight: 600; padding: 5px 4px; }

.rev-card {
  background: linear-gradient(162deg, #ffffff 0%, #fdf6f5 100%);
  border: 1px solid #ecd9dc;
  border-radius: 18px;
  box-shadow: 0 16px 44px -16px rgba(140,47,57, .22), 0 2px 10px rgba(58,21,27, .05);
  padding: 34px 28px 26px; display: grid; gap: 20px;
  grid-template-columns: 1fr;
  position: relative; overflow: hidden;
}
.rev-card::before {
  content: "\2660  \2665  \2666  \2663  \2660  \2665  \2666  \2663  \2660  \2665  \2666  \2663  \2660  \2665  \2666  \2663  \2660  \2665  \2666  \2663";
  position: absolute; top: 0; left: 0; right: 0; height: 20px;
  background: linear-gradient(135deg, #5c1f27 0%, #8c2f39 100%); color: #e8c15a;
  font-size: 10px; letter-spacing: 6px; line-height: 20px; text-align: center; overflow: hidden;
}
@media (max-width: 560px) {
  .rev-card { padding: 32px 18px 22px; }
  /* Logo above the h1 (stacked), so the title gets full width */
  .rev-top { flex-direction: column; align-items: flex-start; gap: 12px; }
  .rev-head { min-width: 0; width: 100%; }
}
.rev-top { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.rev-logo {
  width: 150px; height: 60px; border-radius: 10px; flex: 0 0 auto;
  display: grid; place-items: center; overflow: hidden;
  background: #fff;
}
.rev-logo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rev-logo .ph { font-weight: 800; font-size: 26px; color: var(--accent); letter-spacing: -.04em; }
@media (max-width: 480px) { .rev-logo { width: 132px; height: 53px; } }
.rev-head { flex: 1; min-width: 220px; }
.rev-head h1 { margin: 0 0 6px; font-size: clamp(28px, 6.4vw, 34px); line-height: 1.14; letter-spacing: -0.02em; text-wrap: wrap; }
.rev-head .tagline { color: var(--ink-soft); margin: 0; font-size: 15px; }

.rev-score { text-align: center; flex: 0 0 auto; padding: 10px 16px; border-radius: var(--radius-sm); background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; box-shadow: var(--shadow); }
.rev-score b { display: block; font-size: 30px; line-height: 1; font-variant-numeric: tabular-nums; }
.rev-score span { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; opacity: .9; }

.stars { display: inline-flex; align-items: center; gap: 8px; }
.stars .s { color: var(--star); font-size: 18px; letter-spacing: 2px; }
.stars small { color: var(--ink-soft); font-size: 13px; }

.bonus-box {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 18px; border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-soft) 0%, #fdf7f6 100%);
  border: 1px solid #eedddf;
}
.bonus-box .icon { flex: 0 0 auto; font-size: 26px; line-height: 1; color: var(--amber); }
.bonus-box .b-label { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--accent); font-weight: 700; margin-bottom: 2px; }
.bonus-box .b-value { font-weight: 800; font-size: 18px; line-height: 1.25; color: var(--ink); }

.cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 22px; border-radius: 12px; font-weight: 800; font-size: 16px;
  background: linear-gradient(135deg, var(--amber), var(--amber-2)); color: var(--amber-ink);
  border: none; cursor: pointer; text-align: center;
  box-shadow: 0 8px 20px -6px rgba(201,153,47, .55); transition: transform .12s ease, box-shadow .12s ease;
}
.cta:hover { transform: translateY(-2px); box-shadow: 0 12px 26px -6px rgba(201,153,47,.65); text-decoration: none; color: var(--amber-ink); }
.cta.block { display: flex; width: 100%; }
.cta, .article .cta { text-decoration: none; }
.cta.blue { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; box-shadow: 0 8px 20px -6px rgba(140,47,57,.5); }

.rev-terms { font-size: 10.5px; color: var(--ink-soft); opacity: .85; text-align: center; margin-top: -13px; letter-spacing: .01em; }
.rev-terms-age { font-weight: 700; color: var(--ink); }

/* facts row */
.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(158px, 1fr)); gap: 10px; }
.facts .fact { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 12px; background: var(--surface-2); border: 1px solid var(--line); }
.facts .fact > i { font-size: 17px; color: var(--accent); flex: 0 0 auto; width: 20px; text-align: center; }
.facts .fact .fact-txt { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.facts .fact .k { font-size: 10.5px; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-soft); font-weight: 600; }
.facts .fact .v { font-weight: 700; font-size: 14px; color: var(--ink); line-height: 1.25; }

/* pros / cons */
.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .proscons { grid-template-columns: 1fr; } }
.pc { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 18px; background: var(--surface); }
.pc h3 { margin: 0 0 10px; font-size: 14px; text-transform: uppercase; letter-spacing: .06em; display: flex; align-items: center; gap: 8px; }
.pc.pros h3 { color: var(--pos); }
.pc.cons h3 { color: var(--neg); }
.pc ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 9px; }
.pc li { font-size: 15px; line-height: 1.4; display: flex; gap: 9px; align-items: flex-start; }
.pc.pros li::before { content: "✓"; color: var(--pos); font-weight: 800; }
.pc.cons li::before { content: "✕"; color: var(--neg); font-weight: 800; }
/* When rendered inside .article, override the article's bullet-dot list styling */
.article .proscons ul { margin-left: 0; }
.article .proscons li { padding-left: 0; }
.article .proscons li::before { position: static; left: auto; top: auto; width: auto; height: auto; background: none; box-shadow: none; border-radius: 0; }
.article .proscons .pros li::before { content: "✓"; color: var(--pos); font-weight: 800; }
.article .proscons .cons li::before { content: "✕"; color: var(--neg); font-weight: 800; }

/* ---------- Article content ---------- */
.article { max-width: none; margin: 0 auto; }
.article > * + * { margin-top: 1.1em; }
.article h2 {
  font-size: 28px; font-weight: 800; line-height: 1.25; letter-spacing: -0.025em;
  margin-top: 2em; padding-bottom: 14px; position: relative; text-wrap: balance;
}
.article h2::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 52px; height: 3px;
  border-radius: 2px; background: linear-gradient(90deg, var(--accent), var(--accent-2));
}
.article h3 { font-size: 20px; font-weight: 700; line-height: 1.3; margin-top: 1.7em; color: var(--ink); }
.article p { color: #3a2229; }
.article > p:first-of-type { font-size: 18.5px; line-height: 1.7; color: var(--ink); }
.article a { text-decoration: underline; text-underline-offset: 2px; }
.article ul, .article ol { padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; margin-left: 4px; }
.article ul li, .article ol li { position: relative; padding-left: 28px; line-height: 1.55; }
.article ul li::before { content: "\25C6"; position: absolute; left: 3px; top: .08em; font-size: 15px; color: #c9992f; }
.article ol { counter-reset: li; }
.article ol li { counter-increment: li; }
.article ol li::before { content: counter(li); position: absolute; left: 0; top: .05em; width: 22px; height: 22px; border-radius: 6px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; font-size: 12px; font-weight: 700; display: grid; place-items: center; }
.article img { border-radius: var(--radius-sm); margin: 1.4em auto; }
.article blockquote { margin: 1.4em 0; padding: 12px 18px; border-left: 4px solid var(--accent); background: var(--surface-2); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; color: var(--ink-soft); }

.table-scroll { overflow-x: auto; margin: 1.6em 0; border-radius: 12px; border: 1px solid var(--line); box-shadow: var(--shadow); }
.article table { width: 100%; border-collapse: collapse; font-size: 15px; background: var(--surface); }
.article th, .article td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--line); }
.article thead th { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%); color: #fff; font-weight: 700; font-size: 12.5px; text-transform: uppercase; letter-spacing: .05em; border-bottom: none; }
.article thead th:first-child { border-top-left-radius: 11px; }
.article thead th:last-child { border-top-right-radius: 11px; }
.article tbody tr:nth-child(even) td { background: rgba(140,47,57, .028); }
.article tbody tr:hover td { background: var(--accent-soft); }
.article tbody td:first-child { font-weight: 600; color: var(--ink); }
.article tbody tr:last-child td { border-bottom: none; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq h2 { font-size: 28px; font-weight: 800; letter-spacing: -0.025em; padding-bottom: 14px; margin-bottom: 22px; position: relative; }
.faq h2::after { content: ""; position: absolute; left: 0; bottom: 0; width: 52px; height: 3px; border-radius: 2px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); }
.faq details { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); margin-bottom: 12px; overflow: hidden; }
.faq summary { cursor: pointer; padding: 16px 18px; font-weight: 700; font-size: 16px; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 22px; color: var(--accent); font-weight: 400; transition: transform .2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0; padding: 0 18px 18px; color: #331e24; }

/* ---------- Sticky footer CTA (style adfp, palette Bleu Royal) ---------- */
@keyframes sc-slideUp { 0% { transform: translateY(100%); opacity: 0; } 100% { transform: translateY(0); opacity: 1; } }
@keyframes sc-pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.06); } }
@keyframes sc-spin { 0%,80% { transform: perspective(600px) rotateY(0); } 100% { transform: perspective(600px) rotateY(360deg); } }
@keyframes sc-dot { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .45; transform: scale(1.25); } }
@keyframes sc-arrow { 0%,100% { transform: translateX(0); } 50% { transform: translateX(5px); } }

.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: linear-gradient(135deg, var(--accent) 0%, #6d1f2a 100%);
  color: #fff; border-top: 3px solid var(--amber);
  box-shadow: 0 -4px 24px rgba(58,21,27, .38);
  padding: 14px 0;
  transform: translateY(110%); transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.sticky-cta.show { transform: translateY(0); animation: sc-slideUp .55s ease-out; }
.sc-wrap { display: flex; align-items: center; justify-content: center; gap: 30px; position: relative; }

.sticky-cta .sc-logo { flex: 0 0 auto; width: 54px; height: 44px; border-radius: 8px; background: #fff; display: grid; place-items: center; overflow: hidden; animation: sc-pulse 2s ease-in-out infinite; }
.sticky-cta .sc-logo img { max-width: 46px; max-height: 34px; object-fit: contain; animation: sc-spin 5s ease-in-out infinite; }

.sc-bonus { display: flex; align-items: center; gap: 10px; }
.sc-bonus .sc-gift { font-size: 22px; line-height: 1; }
.sc-bonus-txt b { font-size: 15px; font-weight: 800; line-height: 1.2; }

.sc-players { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #e6d2d5; white-space: nowrap; }
.sc-players .sc-dot { width: 9px; height: 9px; border-radius: 50%; background: #38d67a; box-shadow: 0 0 0 3px rgba(56,214,122,.28); animation: sc-dot 1.6s ease-in-out infinite; }
.sc-players .sc-count { color: #fff; font-weight: 800; font-variant-numeric: tabular-nums; }

.sticky-cta .sc-btn { padding: 12px 24px; font-size: 15px; }
.sticky-cta .sc-btn .sc-arrow { display: inline-block; animation: sc-arrow 1.3s ease-in-out infinite; }

.sticky-cta .sc-close { position: absolute; right: 4px; top: 50%; transform: translateY(-50%); background: none; border: none; color: rgba(255,255,255,.7); font-size: 22px; line-height: 1; cursor: pointer; padding: 4px 8px; }
.sticky-cta .sc-close:hover { color: #fff; }

@media (max-width: 860px) {
  .sc-wrap { gap: 16px; }
  .sc-players { display: none; }
}
@media (max-width: 560px) {
  .sc-wrap { gap: 12px; justify-content: space-between; padding-right: 26px; }
  .sticky-cta .sc-logo { display: none; }
  .sc-bonus-txt b { font-size: 13px; }
  .sticky-cta .sc-btn { padding: 11px 16px; font-size: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  .sticky-cta .sc-logo, .sticky-cta .sc-logo img, .sc-players .sc-dot, .sticky-cta .sc-btn .sc-arrow { animation: none !important; }
}

/* ---------- Listing (/kasino) ---------- */
.list-hero { padding: 48px 0 12px; text-align: center; }
.list-hero .kicker { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); font-weight: 700; }
.list-hero h1 { font-size: clamp(28px, 5vw, 44px); line-height: 1.08; letter-spacing: -0.03em; margin: 10px 0 12px; text-wrap: balance; }
.list-hero p { color: var(--ink-soft); max-width: 60ch; margin: 0 auto; }

/* Vertical list of reviews (blog-archive style, not a card grid) */
.review-list { max-width: 940px; margin: 0 auto; padding: 30px 0 8px; display: flex; flex-direction: column; gap: 18px; }

/* Professional casino comparison card: brand | info | offer */
.ccard {
  display: grid; grid-template-columns: 208px 1fr 240px; align-items: stretch;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}
.ccard:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--accent-2); }

/* Brand zone */
.ccard-brand {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 13px;
  padding: 24px 18px; text-align: center;
  background: linear-gradient(180deg, #fffdfc 0%, #f8eff0 100%);
  border-right: 1px solid var(--line);
}
.ccard-logo { display: block; width: 152px; height: 61px; border-radius: 10px; overflow: hidden; }
.ccard-logo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ccard-logo .ph { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; background: var(--surface-2); color: var(--accent); font-weight: 800; font-size: 22px; letter-spacing: -.02em; }
.ccard-badge {
  font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em;
  color: var(--amber-ink); background: linear-gradient(180deg, var(--amber-2), var(--amber));
  padding: 5px 11px; border-radius: 999px; white-space: nowrap; line-height: 1.4;
  box-shadow: 0 3px 8px -3px rgba(201,153,47,.7);
}

/* Info zone */
.ccard-main { display: flex; flex-direction: column; justify-content: center; padding: 22px 26px; min-width: 0; }
.ccard-name { margin: 0 0 8px; font-size: 21px; line-height: 1.15; letter-spacing: -.02em; }
.ccard-name a { color: var(--ink); }
.ccard-name a:hover { color: var(--accent); text-decoration: none; }
.ccard a, .ccard a:hover { text-decoration: none; }
.ccard-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 8px; font-size: 12.5px; color: var(--ink-soft); margin-bottom: 11px; }
.ccard-meta span:not(:first-child)::before { content: "•"; margin-right: 8px; color: #dcc8ca; }
.ccard-desc {
  margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.55;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* Offer zone */
.ccard-offer {
  display: flex; flex-direction: column; justify-content: center; gap: 12px;
  padding: 22px 22px; text-align: center;
  background: linear-gradient(180deg, #fff9ef 0%, #fdf2df 100%);
  border-left: 1px solid var(--line);
}
.ccard-bonus-label { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: #b06d00; }
.ccard-bonus { font-size: 14.5px; font-weight: 700; line-height: 1.32; color: var(--ink); }
.ccard-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(180deg, var(--accent-2), var(--accent)); color: var(--accent-ink);
  font-weight: 800; font-size: 14px; padding: 11px 16px; border-radius: 10px;
  box-shadow: 0 7px 16px -7px rgba(140,47,57,.65);
  transition: transform .15s ease, box-shadow .15s ease;
}
.ccard-cta:hover { color: #fff; text-decoration: none; transform: translateY(-1px); box-shadow: 0 11px 22px -8px rgba(140,47,57,.75); }
.ccard-cta span { display: inline-block; transition: transform .15s ease; }
.ccard-cta:hover span { transform: translateX(3px); }

/* Tablet/mobile: stack the three zones */
@media (max-width: 720px) {
  .ccard { grid-template-columns: 1fr; }
  .ccard-brand {
    flex-direction: row; justify-content: flex-start; gap: 16px; text-align: left;
    border-right: none; border-bottom: 1px solid var(--line); padding: 18px 20px;
  }
  .ccard-main { padding: 18px 20px; }
  .ccard-desc { -webkit-line-clamp: 3; }
  .ccard-offer {
    border-left: none; border-top: 1px solid var(--line);
    padding: 18px 20px; gap: 10px;
  }
}

/* intro / content block on listing */
.list-intro { max-width: 760px; margin: 0 auto; padding: 24px 0 0; }

/* ---------- Footer (professionnel, sombre, style adfp) ---------- */
.g-footer { margin-top: 64px; background: linear-gradient(180deg, #2a1216 0%, #1c0d10 100%); color: #dcc8ca; }
.g-footer .wrap { padding: 48px 20px 28px; }
.footer-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 36px 40px; }

.fcol h4 { font-size: 14px; font-weight: 700; color: #fff; margin: 0 0 16px; display: flex; align-items: center; gap: 9px; }
.fcol h4 i { color: var(--amber); font-size: 14px; }
.fcol ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.fcol a { color: #cdb8ba; font-size: 14px; transition: color .15s ease; }
.fcol a:hover { color: #fff; text-decoration: none; }

.fcol-about .f-logo { display: inline-flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.fcol-about .f-logo-img { height: 48px; width: auto; display: block; flex: 0 0 auto; }
.f-wordmark { font-weight: 800; font-size: 20px; letter-spacing: -.02em; color: #fff; }
.f-wordmark .wm-accent { color: var(--amber-2); }
.f-desc { font-size: 14px; line-height: 1.6; color: #c3aeb0; margin: 0 0 18px; max-width: 34ch; }
.f-social { display: flex; gap: 10px; }
.f-social a { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.09); color: #fff; font-size: 15px; transition: background .2s ease, transform .15s ease; }
.f-social a:hover { background: var(--accent); transform: translateY(-2px); text-decoration: none; }

/* Responsible gaming badges */
.footer-rg { margin-top: 34px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.1); text-align: center; }
.footer-rg .rg-title { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: #a68f91; margin-bottom: 16px; font-weight: 700; }
.rg-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 28px; }
.rg-badge { display: inline-flex; align-items: center; justify-content: center; opacity: .82; transition: opacity .15s ease, transform .15s ease; }
.rg-badge:hover { opacity: 1; transform: translateY(-1px); text-decoration: none; }
.rg-badge.rg-img img { height: 36px; width: auto; display: block; }
.rg-badge.rg-wide img { height: 24px; }
.rg-badge.rg-anjf img { height: 30px; }
.rg-badge.rg-txt { padding: 7px 13px; font-size: 12px; font-weight: 700; color: #fff; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: 8px; opacity: 1; }
.rg-badge.rg-txt:hover { background: rgba(255,255,255,.15); }

.f-disclaimer { margin: 26px 0 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: 12.5px; line-height: 1.65; color: #a68f91; }
.f-disclaimer .age { display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--amber); color: var(--amber); font-weight: 800; font-size: 12px; margin-right: 8px; vertical-align: middle; }

.f-bottom { background: rgba(0,0,0,.28); border-top: 1px solid rgba(255,255,255,.08); }
.f-bottom .wrap { padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.f-bottom p { margin: 0; font-size: 12.5px; color: #9a8385; }
.f-bottom .f-help a { color: #cdb8ba; }
.f-bottom .f-help a:hover { color: #fff; }

/* ---------- Mobile: center all blocks ---------- */
@media (max-width: 720px) {
  .footer-cols { text-align: center; }
  .fcol h4 { justify-content: center; }
  .fcol ul { align-items: center; }
  .fcol-about { display: flex; flex-direction: column; align-items: center; }
  .fcol-about .f-desc { max-width: 42ch; }
  .f-social { justify-content: center; }
  .f-bottom .wrap { flex-direction: column; justify-content: center; text-align: center; gap: 6px; }

  .list-intro { text-align: center; }
  .article { text-align: left; }        /* keep long copy readable */
}

/* scroll-to-top */
.to-top {
  position: fixed; right: 20px; bottom: 24px; z-index: 55;
  width: 46px; height: 46px; border-radius: 14px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%); color: #fff;
  border: none; cursor: pointer; font-size: 15px; display: grid; place-items: center;
  box-shadow: 0 8px 22px -6px rgba(140,47,57, .5), inset 0 1px 0 rgba(255, 255, 255, .18);
  opacity: 0; transform: translateY(12px) scale(.9); pointer-events: none;
  transition: opacity .25s ease, transform .25s cubic-bezier(.34, 1.56, .64, 1), box-shadow .2s ease;
}
.to-top.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.to-top:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 14px 30px -6px rgba(140,47,57, .62), inset 0 1px 0 rgba(255, 255, 255, .18); }
.to-top:active { transform: translateY(-1px) scale(.97); }
.to-top i { transition: transform .2s ease; }
.to-top:hover i { transform: translateY(-2px); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition: none !important; scroll-behavior: auto !important; }
}
