@font-face {
  font-family: "Baloo 2";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/baloo2-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Baloo 2";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/baloo2-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --bg:            #F8F6FA;
  --surface:       #ffffff;
  --elevated:      #F0EBF5;
  --border:        rgba(96,24,136,.16);

  --dark-bg:       #1A0629;
  --dark-surface:  #2A0F3D;

  --accent:        #601888;
  --accent-2:      #7220A0;
  --accent-hover:  #3A0C50;

  --gold:          #FBBF24;
  --gold-dark:     #F59E0B;
  --gold-pale:     #FDE68A;

  --text:          #111827;
  --text-soft:     #4B5563;
  --text-muted:    #6B7280;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 40px;
  --space-5: 64px;

  --font: "Baloo 2", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --container: 1100px;
  --shadow: 0 8px 28px rgba(26,6,41,.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { font: 400 16px/1.6 var(--font); color: var(--text); background: var(--bg); }
img, svg { display: block; max-width: 100%; height: auto; }

:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px var(--accent);
  border-radius: 2px;
}

.skip-link {
  position: absolute; top: -48px; left: var(--space-2); z-index: 100;
  background: var(--dark-bg); color: #fff; padding: 10px 18px;
  border-radius: var(--radius-sm); font-weight: 600; font-size: 14px;
}
.skip-link:focus-visible {
  top: var(--space-2);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }
main p a { text-decoration: underline; text-underline-offset: 2px; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { line-height: 1.25; font-weight: 700; text-align: center; }
button { font: inherit; cursor: pointer; background: none; border: 0; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--space-2); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

.section { padding-top: var(--space-4); padding-bottom: var(--space-5); }
.section--alt { background: var(--surface); }
.prose-block { padding-top: var(--space-4); padding-bottom: var(--space-5); }
.prose-block--alt { background: linear-gradient(180deg, var(--elevated), var(--surface)); }
.section__title { font-size: 28px; margin-bottom: var(--space-3); }
#top-izbor-title { margin-bottom: var(--space-1); }
.section__lead { color: var(--text-soft); max-width: 640px; margin-bottom: var(--space-3); text-align: center; margin-inline: auto; }
#recenzje .section__lead { max-width: none; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 13px 24px; border-radius: var(--radius-md); font-weight: 700;
  white-space: nowrap;
}
.btn--primary { background: linear-gradient(135deg, var(--accent-2), var(--accent)); color: #fff; }
.btn--gold { background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%); color: #1A0A00; }
.btn:hover { filter: brightness(.92); }
.btn:active { transform: translateY(1px); }

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.site-header.is-scrolled { background: var(--surface); box-shadow: var(--shadow); border-color: var(--border); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-2); padding-block: 2px; min-height: 64px; }
.site-header__logo { display: flex; align-items: center; }
.site-header__logo img { display: block; height: 60px; width: auto; }
.site-header__nav { display: none; gap: var(--space-3); }
.site-header__nav-link { font-weight: 600; font-size: 15px; color: var(--text-soft); }
.site-header__nav-link.is-current, .site-header__nav-link:hover { color: var(--accent); }
.mob-menu-btn { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; flex-shrink: 0; color: var(--text); }

main { padding-top: 64px; scroll-margin-top: 64px; }
body:has(.hero) .site-header:not(.is-scrolled) .site-header__nav-link,
body:has(.page-hero) .site-header:not(.is-scrolled) .site-header__nav-link { color: rgba(255,255,255,.85); }
body:has(.hero) .site-header:not(.is-scrolled) .site-header__nav-link.is-current,
body:has(.hero) .site-header:not(.is-scrolled) .site-header__nav-link:hover,
body:has(.page-hero) .site-header:not(.is-scrolled) .site-header__nav-link.is-current,
body:has(.page-hero) .site-header:not(.is-scrolled) .site-header__nav-link:hover { color: #fff; }
body:has(.hero) .site-header:not(.is-scrolled) .mob-menu-btn,
body:has(.page-hero) .site-header:not(.is-scrolled) .mob-menu-btn { color: #fff; }

.site-header__actions a.site-header__nav-link { display: none; }

@media (min-width: 860px) {
  .site-header__nav { display: flex; align-items: center; }
  .site-header__actions { display: flex; align-items: center; gap: 20px; }
  .site-header__actions a.site-header__nav-link { display: inline; }
  .mob-menu-btn { display: none; }
}
@media (max-width: 859px) {
  .site-header__inner { padding-block: 2px; min-height: 64px; }
}

.mob-menu { position: fixed; inset: 0; z-index: 50; visibility: hidden; }
.mob-menu.is-open { visibility: visible; }
.mob-menu__backdrop { position: absolute; inset: 0; background: rgba(26,6,41,.55); opacity: 0; }
.mob-menu.is-open .mob-menu__backdrop { opacity: 1; }
.mob-menu__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(320px, 84%);
  background: var(--surface); padding: var(--space-3);
  transform: translateX(100%);
  display: flex; flex-direction: column; gap: var(--space-3);
}
.mob-menu.is-open .mob-menu__panel { transform: translateX(0); }
.mob-menu__close { align-self: flex-end; display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; margin: -10px -10px 0 0; }
.mob-menu__nav { display: flex; flex-direction: column; gap: var(--space-1); }
.mob-menu__link { display: block; padding-block: 10px; font-weight: 600; font-size: 17px; color: var(--text); }
.mob-menu__link.is-current { color: var(--accent); }
.mob-menu__link--divider { margin-top: var(--space-2); padding-top: 18px; border-top: 1px solid var(--border); }

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  margin-top: -64px;
  padding-top: calc(var(--space-4) + 64px);
  padding-bottom: var(--space-3);
  background: linear-gradient(135deg, #0C0210 0%, #220633 30%, #3F0B5E 55%, #220633 80%, #000000 100%);
}
@media (max-width: 640px) {
  .hero { padding-top: calc(var(--space-3) + 64px); }
}
.hero .container { position: relative; z-index: 1; }
.hero__image {
  position: absolute; right: 0; top: calc(var(--space-4) + 64px);
  width: clamp(320px, 46vw, 600px); height: auto;
  pointer-events: none;
}
@media (max-width: 640px) {
  .hero__image { display: none; }
}
.hero__title { font-size: clamp(28px, 4vw, 42px); margin-bottom: var(--space-2); max-width: 620px; text-align: center; }
.hero__lead {
  color: rgba(255,255,255,.78); max-width: 560px; margin-bottom: var(--space-1); text-align: center;
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 4; overflow: hidden;
}
.hero__lead.is-expanded { display: block; -webkit-line-clamp: unset; overflow: visible; }
.hero__lead-toggle {
  display: block; margin: 0 auto var(--space-3);
  color: #D8B4FE; font-weight: 700; font-size: 14px; text-decoration: underline;
}
@media (min-width: 641px) {
  .hero__lead { display: block; -webkit-line-clamp: unset; overflow: visible; }
  .hero__lead-toggle { display: none; }
}

.hero:not(:has(.hero__image)) .hero__title,
.hero:not(:has(.hero__image)) .hero__lead {
  max-width: none;
}
.hero:not(:has(.hero__image)) .hero__author {
  display: flex;
  justify-content: center;
}
.hero__author {
  font-size: 13px; color: rgba(255,255,255,.65);
  padding-bottom: var(--space-3); border-bottom: 1px solid rgba(255,255,255,.15);
}
.hero__author-inner {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px;
  max-width: 560px;
}
.hero__avatar { width: 36px; height: 36px; border-radius: 50%; overflow: hidden; flex-shrink: 0; object-fit: cover; }
.hero__author strong { color: rgba(255,255,255,.9); }

.hero__author-name { display: flex; flex-direction: column; gap: 1px; line-height: 1.2; }
.hero__author-name-label { font-size: 10px; text-transform: uppercase; letter-spacing: .04em; color: rgba(255,255,255,.5); }
.hero__author-name a { font-size: 13px; }

.hero__avatar-wrap { position: relative; flex-shrink: 0; }
.verified-badge {
  position: absolute; bottom: -2px; right: -2px;
  display: flex; align-items: center; justify-content: center;
  width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0;
  background: var(--accent-2); color: #fff; font-size: 9px; font-weight: 700;
  border: 2px solid var(--dark-bg);
}

.page-hero {
  position: relative; overflow: hidden; color: #fff;
  margin-top: -64px;
  padding-top: calc(var(--space-4) + 64px);
  padding-bottom: var(--space-4);
  background: linear-gradient(135deg, #0C0210 0%, #220633 30%, #3F0B5E 55%, #220633 80%, #000000 100%);
}
@media (max-width: 640px) {
  .page-hero { padding-top: calc(var(--space-3) + 64px); padding-bottom: var(--space-3); }
}
.page-hero .breadcrumbs { display: flex; justify-content: center; }
.page-hero .breadcrumbs__list { color: rgba(255,255,255,.6); }
.page-hero .breadcrumbs__list a { color: rgba(255,255,255,.75); }
.page-hero .breadcrumbs__list a:hover { color: #fff; }
.page-hero .breadcrumbs__list li:not(:last-child)::after { color: rgba(255,255,255,.3); }
.page-hero .breadcrumbs__list li[aria-current="page"] { color: #fff; }
.page-hero h1 { color: #fff; }
.page-hero .info-lead { color: rgba(255,255,255,.78); margin-bottom: 0; }
.page-hero + .container { padding-top: var(--space-4); }

.hero__author-date {
  display: flex; flex-direction: column; gap: 1px; line-height: 1.2;
  padding-left: var(--space-2); border-left: 1px solid rgba(255,255,255,.2);
}
.hero__author-date-label { font-size: 10px; text-transform: uppercase; letter-spacing: .04em; color: rgba(255,255,255,.5); }
.hero__author-date time { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.9); }

.stars { display: inline-flex; gap: 2px; }
.star--full  { color: var(--gold); }
.star--half  { color: var(--gold); opacity: .5; }
.star--empty { color: var(--border); }

.review-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: var(--space-2); box-shadow: var(--shadow); margin-bottom: var(--space-3);
}
.review-card:last-child { margin-bottom: 0; }
#recenzje { padding-bottom: 0; }
.review-card > * + * { margin-top: var(--space-2); }
@media (max-width: 640px) {
  .review-card > .btn { display: block; width: 100%; text-align: center; margin-top: var(--space-1); }
}

.review-card__media img {
  width: 100%; height: auto; aspect-ratio: 2874 / 1400;
  border-radius: var(--radius-md); object-fit: cover; display: block;
}

.review-card__id { position: relative; display: flex; align-items: center; gap: 12px; scroll-margin-top: 154px; }
.review-card__id-extra { display: none; align-items: center; gap: var(--space-2); margin-left: auto; flex-shrink: 0; }
.review-card__id-bonus { font-weight: 800; font-size: 18px; color: var(--text); white-space: nowrap; }

@media (min-width: 641px) {
  .review-card__id { flex-wrap: wrap; }
  .review-card__id-extra { display: flex; }
  .review-card__bonus-block,
  .review-card > .btn {
    display: none;
  }
}
.review-card__id .brand-logo-bg { width: 122px; }

.review-card__carousel {
  display: flex; gap: var(--space-2); overflow-x: auto;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  padding-bottom: var(--space-2);
}
.review-card__carousel .review-card__media { flex: 0 0 90%; scroll-snap-align: start; }
@media (min-width: 641px) {
  .review-card__carousel { display: none; }
}

.review-card__bonus-block { background: var(--elevated); border-radius: var(--radius-md); padding: var(--space-2); }
.review-card__bonus-label {
  font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: .04em;
  text-align: center; color: var(--accent); margin-bottom: 4px;
}
.review-card__bonus-amount { font-weight: 800; font-size: 22px; text-align: center; margin-bottom: 8px; }
.review-card__checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 1px 8px; }
.review-card__checklist li {
  position: relative; padding-left: 16px; font-size: 14px; color: var(--text-soft);
}
.review-card__checklist li strong { font-size: 15px; font-weight: 700; color: var(--text); white-space: nowrap; }
.review-card__checklist li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}

.review-nav {
  position: sticky; top: 64px; z-index: 30;
  display: flex; gap: var(--space-2); align-items: center;
  padding: 20px 10px 10px; margin-bottom: var(--space-3);
  background: var(--bg); border-bottom: 1px solid var(--border);
  overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.review-nav::-webkit-scrollbar { display: none; }
@media (min-width: 641px) {
  .review-nav { justify-content: center; }
  .review-nav__item .brand-logo-bg { width: 118px; height: 82px; padding: 11px; }
}
.review-nav__item { position: relative; flex-shrink: 0; border-radius: var(--radius-md); }
.review-nav__item .brand-logo-bg { width: 64px; height: 44px; padding: 6px; transition: transform .2s ease, box-shadow .2s ease; }
.review-nav__item.is-active .brand-logo-bg {
  transform: scale(1.15);
  box-shadow: 0 0 0 2px var(--accent), 0 10px 20px rgba(96,24,136,.35);
}

.brand-logo-rank--lg { width: 34px; height: 34px; font-size: 15px; }

.review-card__summary {
  background: var(--elevated); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: var(--space-2); margin-bottom: var(--space-2);
}

.review-card__body { position: relative; max-height: 4.8em; overflow: hidden; transition: max-height .3s ease; }
.review-card__body::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2em;
  background: linear-gradient(transparent, var(--elevated));
}
.review-card__body.is-expanded { max-height: 999px; }
.review-card__body.is-expanded::after { display: none; }
.review-card__body p { color: var(--text-soft); font-size: 14px; margin-bottom: var(--space-1); text-align: center; }

.review-card__readmore {
  display: block; margin: 4px auto 0;
  font-size: 13px; font-weight: 700; color: var(--accent);
}
.review-card__readmore:hover { color: var(--accent-hover); }

@media (min-width: 860px) {
  .review-card__body { max-height: none; overflow: visible; }
  .review-card__body::after { display: none; }
  .review-card__readmore { display: none; }
}

.review-card__quote {
  border-left: 3px solid var(--accent); padding-left: var(--space-2);
}
.review-card__quote p { font-style: italic; color: var(--text-soft); font-size: 14px; }
.review-card__quote cite { display: block; margin-top: 4px; font-style: normal; font-size: 12px; color: var(--text-muted); }

.ctable { width: 100%; border-collapse: collapse; background: var(--surface); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.ctable th, .ctable td { padding: 14px 16px; text-align: left; vertical-align: middle; border-bottom: 1px solid var(--border); font-size: 14px; }
.ctable thead tr { background: linear-gradient(90deg, #3F0B5E, #220633); }
.ctable th {
  background: transparent; text-align: center;
  color: #fff; font-size: 12px; text-transform: uppercase; letter-spacing: .04em;
}
.ctable:not(.brand-table) tbody tr:nth-child(even) { background: var(--elevated); }
.ctable tr:last-child td { border-bottom: 0; }
.ctable-wrap { overflow-x: auto; }

.brand-table { table-layout: fixed; }
.brand-table td { word-break: break-word; }

.brand-table__cols col:nth-child(1) { width: 32%; }
.brand-table__cols col:nth-child(2) { width: 23%; }
.brand-table__cols col:nth-child(3) { width: 11%; }
.brand-table__cols col:nth-child(4) { width: 11%; }
.brand-table__cols col:nth-child(5) { width: 12%; }
.brand-table__cols col:nth-child(6) { width: 13%; }

td.bonus-cell { font-weight: 700; color: #000; font-size: 16px; padding-left: 28px; }
.bonus-cell__mobile, .bonus-cell__label { display: none; }
.brand-table__stat--percent, .brand-table__stat--wager { display: none; }

.brand-table__name { position: relative; display: flex; align-items: center; gap: 12px; }
.brand-logo-bg {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 128px; height: 84px; padding: 10px; flex-shrink: 0;
  border-radius: var(--radius-md);
}
.brand-logo { width: 100%; height: 100%; border-radius: 0; flex-shrink: 0; object-fit: contain; }
.brand-logo-text {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%; text-align: center;
  color: #fff; font-weight: 800; font-size: 15px; line-height: 1.15;
  letter-spacing: .01em;
}
.brand-logo-rank {
  position: absolute; top: -10px; left: -10px; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-pale), var(--gold), var(--gold-dark));
  color: #1A0A00; font-weight: 700; font-size: 13px;
  box-shadow: var(--shadow);
}
.brand-table tbody tr:first-child .brand-logo-rank {
  width: 34px; height: 34px; font-size: 15px;
}
.brand-table__info { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.brand-table tbody tr:first-child .brand-table__info {
  gap: 0;
}
.brand-table__title { font-weight: 700; font-size: 17px; text-align: left; }
.brand-table__founded { font-size: 15px; font-weight: 600; color: var(--text-soft); }
.brand-table__founded-year { color: var(--text); }
.brand-table__top-badge {
  display: inline-flex; align-items: center; gap: 5px; align-self: flex-start;
  padding: 3px 10px; border-radius: 999px;
  background: var(--elevated); border: 1px solid var(--border);
  font-size: 14px; font-weight: 600; color: var(--text-soft);
}
.brand-table__rating { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; }
.brand-table__rating .star:not(:first-child) { display: none; }
.brand-table__rating .stars { font-size: 18px; }
.brand-table__rating .rating-num { font-size: 16px; color: var(--text-soft); }
.brand-table__rating .rating-word { font-size: 15px; font-weight: 600; color: var(--text-soft); }
.rating-num { font-size: 13px; color: var(--text-muted); font-weight: 600; }
.rating-word { font-size: 12px; color: var(--text-muted); }
.brand-table td:last-child .btn { display: flex; width: 100%; justify-content: center; text-align: center; }

@media (max-width: 640px) {
  .brand-table, .brand-table thead, .brand-table tbody, .brand-table tr, .brand-table th, .brand-table td {
    display: block; width: auto;
  }
  .brand-table thead { display: none; }

  .brand-table tr {
    position: relative; overflow: hidden;
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
    box-shadow: var(--shadow); padding: var(--space-2); margin-bottom: var(--space-2);
  }
  .brand-table tr:last-child { margin-bottom: 0; }

  .brand-table td { border-bottom: none; padding: 0; }

  .brand-table td.brand-table__name {
    display: flex; align-items: center; flex-wrap: wrap;
    padding-bottom: 8px; margin-bottom: 8px;
  }
  .brand-table__info { gap: 2px; }
  .brand-table__title { font-size: 19px; }
  .brand-table td.brand-table__name::after {
    content: ""; flex: 1 0 100%; height: 1px; margin-top: 3px;
    background: linear-gradient(to right, transparent 5%, var(--border) 5%, var(--border) 95%, transparent 95%);
  }

  .bonus-cell__full { display: none; }
  .bonus-cell__label {
    display: block; margin-bottom: 2px;
    font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: .04em;
    color: var(--accent);
  }
  .bonus-cell__mobile {
    display: block; font-weight: 800; font-size: 26px;
  }
  .brand-table td.bonus-cell {
    text-align: center;
    padding-bottom: 4px; margin-bottom: 4px;
  }
  .brand-table td.bonus-cell::after {
    content: ""; display: block; width: 90%; height: 1px; background: var(--border);
    margin: 4px auto 0;
  }

  .brand-table td.brand-table__stats {
    display: flex;
    padding-bottom: 4px; margin-bottom: 4px;
  }
  .brand-table__stat {
    flex: 1; display: flex; flex-direction: column; align-items: center; gap: 0;
    font-weight: 700; font-size: 16px;
  }
  .brand-table__stat + .brand-table__stat { border-left: 1px solid var(--border); }
  .brand-table__stat--percent { color: var(--text); }
  .brand-table__stat::before {
    content: attr(data-label);
    font-weight: 600; font-size: 11px; text-transform: uppercase; letter-spacing: .03em;
    color: var(--text-muted);
  }

  .brand-table td[data-label="Licenc"], .brand-table td[data-label="Megforgatás"] { display: none; }

  .brand-table td:last-child .btn { font-size: 17px; padding: 15px 24px; }
}

.hero-podium { margin-top: var(--space-3); }
.hero-podium__title { color: #fff; font-size: 18px; margin-bottom: var(--space-3); }
.hero-podium__row { display: flex; align-items: stretch; justify-content: center; gap: var(--space-2); }

.hero-podium__item {
  position: relative;
  flex: 1; max-width: 200px;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  background: var(--surface); border-radius: var(--radius-lg); box-shadow: var(--shadow);
  padding: var(--space-2);
}
.hero-podium__badge {
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 5px; white-space: nowrap;
  padding: 7px 16px; border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-pale), var(--gold), var(--gold-dark));
  color: #1A0A00; font-weight: 800; font-size: 14px;
  box-shadow: var(--shadow);
}
.hero-podium__badge--sm { top: -14px; padding: 5px 12px; font-size: 12px; }
.hero-podium__logo-bg {
  display: flex; align-items: center; justify-content: center;
  width: 100%; padding: 12px 0; border-radius: var(--radius-md);
}
.hero-podium__logo-bg img { height: 32px; width: auto; max-width: 85%; object-fit: contain; }
.hero-podium__name {
  font-weight: 700; font-size: 13px; text-align: center; max-width: 100%;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  color: var(--text);
}
.hero-podium__bonus {
  display: flex; flex-direction: column; align-items: center;
  margin-top: 2px; margin-bottom: 4px;
}
.hero-podium__bonus-amount { font-weight: 800; font-size: 24px; color: var(--text); line-height: 1.15; }
.hero-podium__bonus-spins { font-weight: 700; font-size: 12px; color: var(--text-muted); line-height: 1.2; }
.hero-podium__btn { width: 100%; padding: 10px; font-size: 13px; }

@media (max-width: 640px) {
  .hero-podium__row { gap: 8px; }
  .hero-podium__item { padding: var(--space-1); gap: 2px; }
  .hero-podium__badge { top: -16px; padding: 6px 12px; font-size: 12px; }
  .hero-podium__badge--sm { top: -12px; padding: 4px 9px; font-size: 10px; }
  .hero-podium__logo-bg img { height: 26px; }
  .hero-podium__name { font-size: 11px; }
  .hero-podium__bonus { margin-top: 1px; margin-bottom: 2px; }
  .hero-podium__bonus-amount { font-size: 16px; }
  .hero-podium__bonus-spins { font-size: 10px; }
  .hero-podium__btn { padding: 8px; font-size: 11px; }
}

.prose-block .container { max-width: 720px; }
.prose-block h2 {
  font-size: 26px; margin-top: var(--space-4); margin-bottom: var(--space-2);
  position: relative; padding-bottom: var(--space-1);
}
.prose-block h2::after {
  content: ""; display: block; width: 56px; height: 4px; margin: var(--space-1) auto 0;
  border-radius: 999px; background: linear-gradient(135deg, var(--accent-2), var(--accent));
}
.prose-block h3 { font-size: 19px; margin-top: var(--space-3); margin-bottom: var(--space-1); color: var(--accent-hover); }
.prose-block p  { color: var(--text-soft); margin-bottom: var(--space-2); text-align: center; }

.faq__item { border-bottom: 1px solid var(--border); }
.faq__question { margin: 0; }
.faq__btn {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: var(--space-2);
  text-align: left; font-size: 16px; font-weight: 600; padding: var(--space-2) 0;
}
.faq__btn svg { flex-shrink: 0; }
.faq__item--open .faq__btn svg { transform: rotate(180deg); }
.faq__panel { overflow: hidden; max-height: 0; }
.faq__panel p { color: var(--text-soft); padding-bottom: var(--space-2); text-align: center; }

.site-footer { background: var(--dark-bg); color: rgba(255,255,255,.65); padding-block: var(--space-4); font-size: 14px; }

.site-footer__inner {
  display: grid; grid-template-columns: 1fr auto; gap: var(--space-3);
  align-items: start; padding-bottom: var(--space-3);
  border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: var(--space-2);
}
.site-footer__brand { display: flex; flex-direction: column; gap: var(--space-2); }
.site-footer__logo { display: inline-flex; align-items: center; }
.site-footer__logo img { display: block; height: 60px; width: auto; }
.site-footer__desc { font-size: 13px; line-height: 1.6; max-width: 480px; color: rgba(255,255,255,.75); }

.site-footer__social { display: flex; gap: 12px; margin-top: 4px; }
.site-footer__social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.75);
}
.site-footer__social-link svg { width: 16px; height: 16px; }
.site-footer__social-link:hover { background: rgba(255,255,255,.16); color: #fff; }

.site-footer__links { display: flex; gap: var(--space-4); }
.site-footer__col { display: flex; flex-direction: column; gap: 8px; }
.site-footer__col-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.75); margin-bottom: 4px; }
.site-footer__link { color: rgba(255,255,255,.75); }
.site-footer__link:hover { color: #fff; }
.site-footer__address { font-style: normal; color: rgba(255,255,255,.75); line-height: 1.6; }

@media (max-width: 640px) {
  .site-footer__inner { grid-template-columns: 1fr; }
}

.site-footer__disclaimer { color: rgba(255,255,255,.6); font-size: 12px; max-width: 760px; margin-top: var(--space-2); }
.site-footer__responsible { color: rgba(255,255,255,.6); font-size: 12px; max-width: 760px; margin-top: var(--space-2); }
.site-footer__responsible a { color: rgba(255,255,255,.85); text-decoration: underline; }
.site-footer__responsible a:hover { color: #fff; }

.page { padding-top: calc(var(--space-4) + 64px); padding-bottom: var(--space-5); }
.page .container { max-width: 720px; }
@media (max-width: 640px) {
  .page { padding-top: calc(var(--space-5) + 64px); }
}
.page:has(> .page-hero) { padding-top: 64px; }
.page h1 { font-size: 32px; margin-bottom: var(--space-2); }
.page h2 { font-size: 22px; margin-top: var(--space-4); margin-bottom: var(--space-1); }
.page p { color: var(--text-soft); margin-bottom: var(--space-2); text-align: center; }
.page .checklist { margin-top: var(--space-1); }
.contact-address { font-style: normal; color: var(--text-soft); line-height: 1.8; margin-bottom: var(--space-2); }
.contact-address a { color: var(--accent); }

.breadcrumbs { margin-bottom: var(--space-3); font-size: 13px; }
.breadcrumbs__list { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; color: var(--text-muted); }
.breadcrumbs__list a { color: var(--text-muted); }
.breadcrumbs__list a:hover { color: var(--accent); }
.breadcrumbs__list li { display: flex; align-items: center; gap: 6px; }
.breadcrumbs__list li:not(:last-child)::after { content: "/"; color: var(--border); }
.breadcrumbs__list li[aria-current="page"] { color: var(--text); font-weight: 600; }

.hero .breadcrumbs { display: flex; justify-content: center; }
.hero .breadcrumbs__list { color: rgba(255,255,255,.6); }
.hero .breadcrumbs__list a { color: rgba(255,255,255,.75); }
.hero .breadcrumbs__list a:hover { color: #fff; }
.hero .breadcrumbs__list li:not(:last-child)::after { color: rgba(255,255,255,.3); }
.hero .breadcrumbs__list li[aria-current="page"] { color: #fff; }

.proscons { display: grid; grid-template-columns: 1fr; gap: var(--space-2); margin-bottom: var(--space-2); }
@media (min-width: 560px) { .proscons { grid-template-columns: 1fr 1fr; } }
.proscons--pros, .proscons--cons {
  border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-2);
}
.proscons h3, .proscons h4 { font-size: 16px; margin-bottom: var(--space-1); }
.proscons ul { list-style: none; font-size: 13px; color: var(--text-soft); }
.proscons li { position: relative; padding-left: 32px; margin-bottom: var(--space-1); min-height: 24px; }
.proscons li::before {
  position: absolute; left: 0; top: 0;
  display: flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%; font-size: 12px; font-weight: 700;
}
.proscons--pros li::before { content: "✓"; background: #dcfce7; color: #16a34a; }
.proscons--cons li::before { content: "✗"; background: #fee2e2; color: #dc2626; }

.checklist { list-style: none; margin-bottom: var(--space-2); }
.checklist li { position: relative; padding-left: 30px; margin-bottom: 8px; color: var(--text-soft); font-size: 14px; }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: -1px;
  display: flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%;
  background: #dcfce7; color: #16a34a; font-size: 12px; font-weight: 700;
}

.steps { list-style: none; counter-reset: step; margin-bottom: var(--space-2); }
.steps li { position: relative; padding-left: 36px; margin-bottom: var(--space-2); color: var(--text-soft); }
.steps li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: 0; width: 24px; height: 24px; border-radius: 50%;
  background: var(--accent); color: #fff; font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* Informational pages: intro, cards, callouts, contact card */
.info-lead {
  max-width: 600px; margin: 0 auto var(--space-3); font-size: 17px; line-height: 1.6;
}
.info-section { margin-top: var(--space-4); }
.info-section:first-of-type { margin-top: var(--space-3); }
.info-section > h2 { text-align: center; }
.info-section > p { max-width: 620px; margin-inline: auto; }

.info-grid {
  display: grid; grid-template-columns: 1fr; gap: var(--space-2);
  margin-top: var(--space-2); margin-bottom: var(--space-2);
}
@media (min-width: 640px) {
  .info-grid--2 { grid-template-columns: 1fr 1fr; }
  .info-grid--3 { grid-template-columns: repeat(3, 1fr); }
}

.info-card {
  display: flex; flex-direction: column; gap: 6px; text-align: left;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: var(--space-2);
}
.info-card__icon {
  width: 40px; height: 40px; border-radius: var(--radius-md); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--elevated); font-size: 19px;
}
.info-card__title { font-size: 16px; font-weight: 700; color: var(--text); text-align: left; }
.info-card__text { font-size: 14px; color: var(--text-soft); line-height: 1.6; text-align: left; margin: 0; }

.callout {
  display: flex; gap: var(--space-2); align-items: flex-start; text-align: left;
  background: var(--elevated); border: 1px solid var(--border); border-left: 4px solid var(--accent);
  border-radius: var(--radius-lg); padding: var(--space-2); margin: var(--space-2) 0;
}
.callout__icon { font-size: 22px; line-height: 1; flex-shrink: 0; }
.callout__body { font-size: 14px; color: var(--text-soft); line-height: 1.6; margin: 0; text-align: left; }
.callout__body strong { color: var(--text); }
.callout--support { border-left-color: var(--gold-dark); }

.contact-card {
  display: flex; align-items: center; gap: var(--space-2); text-align: left;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: var(--space-2); margin: var(--space-2) 0;
}
.contact-card__icon {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); font-size: 19px;
}
.contact-card__body { min-width: 0; }
.contact-card__label { font-size: 12px; text-transform: uppercase; letter-spacing: .03em; color: var(--text-muted); }
.contact-card__value {
  display: inline-block; font-size: 16px; font-weight: 700; color: var(--accent);
  word-break: break-word; padding: 2px 0;
}
.contact-card__value:hover { color: var(--accent-hover); }

.person-card {
  display: flex; align-items: center; gap: var(--space-2); text-align: left;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: var(--space-2); margin: var(--space-2) 0;
}
.person-card__avatar {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff;
  font-size: 20px; font-weight: 700;
}
.person-card__name { font-size: 16px; font-weight: 700; color: var(--text); }
.person-card__role { font-size: 13px; color: var(--text-muted); }

.lightbox { position: fixed; inset: 0; z-index: 60; visibility: hidden; }
.lightbox.is-open { visibility: visible; }
.lightbox__backdrop { position: absolute; inset: 0; background: rgba(26,6,41,.85); opacity: 0; transition: opacity .2s ease; }
.lightbox.is-open .lightbox__backdrop { opacity: 1; }
.lightbox__img {
  position: relative; z-index: 1;
  display: block; max-width: min(90vw, 1000px); max-height: 85vh;
  margin: auto; top: 50%; transform: translateY(-50%);
  border-radius: var(--radius-md);
  opacity: 0; transition: opacity .2s ease;
}
.lightbox.is-open .lightbox__img { opacity: 1; }
.lightbox__close {
  position: absolute; top: var(--space-2); right: var(--space-2); z-index: 2;
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.12); color: #fff;
}
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.12); color: #fff;
}
.lightbox__nav--prev { left: var(--space-2); }
.lightbox__nav--next { right: var(--space-2); }
.lightbox__nav:hover, .lightbox__close:hover { background: rgba(255,255,255,.22); }

.mob-offer { display: none; }

@media (max-width: 640px) {
  .mob-offer {
    display: block;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 45;
    background: var(--surface); border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(26,6,41,.12);
    transform: translateY(100%);
    transition: transform .35s cubic-bezier(.22,.68,0,1.2);
    padding: 10px var(--space-2) 12px;
  }
  .mob-offer.is-visible { transform: translateY(0); }

  .mob-offer__close {
    position: absolute; top: 8px; right: 10px; z-index: 1;
    display: flex; align-items: center; justify-content: center;
    width: 22px; height: 22px; border-radius: 50%;
    color: var(--text-muted); font-size: 12px;
  }
  .mob-offer__close:hover { color: var(--text); background: var(--elevated); }

  .mob-offer__label {
    display: flex; align-items: center; gap: 5px;
    font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
    color: var(--accent); margin-bottom: 6px;
  }
  .mob-offer__label::before {
    content: ""; width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
    background: var(--accent); animation: mob-offer-pulse 1.6s ease-in-out infinite;
  }
  @keyframes mob-offer-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .4; transform: scale(.7); }
  }

  .mob-offer__body { display: flex; align-items: center; gap: 10px; }
  .mob-offer__logo {
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    width: 68px; height: 44px; padding: 5px; border-radius: var(--radius-sm);
  }
  .mob-offer__logo img { width: 100%; height: 100%; object-fit: contain; }
  .mob-offer__info { flex: 1; min-width: 0; }
  .mob-offer__name { font-size: 12px; font-weight: 700; color: var(--text); line-height: 1.2; }
  .mob-offer__bonus { font-size: 16px; color: var(--text-soft); line-height: 1.3; }
  .mob-offer__bonus strong { color: var(--text); }
  .mob-offer__btn { flex-shrink: 0; padding: 9px 16px; font-size: 12px; }
}

.games-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--space-2);
  list-style: none; margin-top: var(--space-3);
}
@media (max-width: 900px) {
  .games-grid { grid-template-columns: repeat(3, 1fr); }
}

.game-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow .2s ease, transform .2s ease;
}
.game-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.game-card__thumb {
  height: 140px; background: var(--elevated);
}
.game-card__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.game-card__body { padding: 10px 12px 3px; text-align: center; flex: 1; }
.game-card__name { display: block; font-weight: 700; font-size: 14px; color: var(--text); }
.game-card__provider {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  margin-top: 2px; font-size: 12px; color: var(--text-muted);
}
.game-card__provider img { width: auto; height: 14px; max-width: 24px; object-fit: contain; flex-shrink: 0; }
.game-card__cta {
  display: block; margin: 5px 12px 12px; padding: 8px 10px; text-align: center;
  border-radius: var(--radius-sm); font-size: 13px; font-weight: 700;
  background: linear-gradient(135deg, var(--gold-pale), var(--gold), var(--gold-dark)); color: #1A0A00;
}
.game-card__cta:hover { filter: brightness(.92); }

.games-carousel__dots { display: none; }

@media (max-width: 640px) {
  .games-grid {
    display: flex; gap: var(--space-2); overflow-x: auto;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    padding-block: 26px; padding-inline: 13%; scrollbar-width: none;
  }
  .games-grid::-webkit-scrollbar { display: none; }
  .game-card {
    flex: 0 0 74%; scroll-snap-align: center;
    opacity: .55; transform: scale(.88); transition: opacity .25s ease, transform .25s ease;
  }
  .game-card.is-active { opacity: 1; transform: scale(1.16); z-index: 1; }

  .games-carousel__dots { display: flex; justify-content: center; gap: 6px; margin-top: var(--space-2); }
  .games-carousel__dot {
    width: 6px; height: 6px; padding: 0; border-radius: 50%; background: var(--border);
    transition: width .2s ease, border-radius .2s ease, background .2s ease;
  }
  .games-carousel__dot.is-active { width: 18px; border-radius: 3px; background: var(--accent); }
}
