/* ============================================================
   Казино Олимп – main stylesheet  v1.7
   Palette:
     --bg-deep:    #0d0e18  (page background)
     --bg-card:    #161828  (card / raised surface)
     --bg-raised:  #1e2035
     --gold:       #c9963a
     --gold-light: #e0b55a
     --gold-dark:  #8c6520
     --green:      #2db37a
     --text:       #f0efea
     --muted:      #8a8a9a
     --border:     #2a2c44
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: #0d0e18;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #f0efea;
  background: #0d0e18;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Container ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 16px;
}

/* ── Site wrap ─────────────────────────────────────────────── */
.site-wrap-r4f {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1;
  text-align: center;
  transition: opacity .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover  { opacity: .88; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

/* hero */
.btn-hero-signup {
  background: #c9963a;
  color: #0d0e18;
  font-size: 1rem;
  padding: 15px 32px;
  border-radius: 10px;
  box-shadow: 0 0 18px 3px rgba(201,150,58,.55);
  animation: pulse-gold 2.4s ease-in-out infinite;
}
@keyframes pulse-gold {
  0%,100% { box-shadow: 0 0 16px 2px rgba(201,150,58,.55); }
  50%      { box-shadow: 0 0 30px 7px rgba(201,150,58,.80); }
}
.btn-hero-demo {
  background: transparent;
  color: #f0efea;
  border: 1.5px solid rgba(240,239,234,.35);
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 10px;
}
.btn-hero-demo:hover { border-color: #c9963a; color: #c9963a; }

/* header */
.btn-login {
  background: transparent;
  color: #c9963a;
  border: 1.5px solid #c9963a;
  padding: 8px 18px;
  border-radius: 7px;
  font-size: .813rem;
}
.btn-login:hover { background: rgba(201,150,58,.12); }
.btn-signup {
  background: #c9963a;
  color: #0d0e18;
  padding: 8px 18px;
  border-radius: 7px;
  font-size: .813rem;
}

/* tournament */
.btn-tournament {
  background: #2db37a;
  color: #0d0e18;
  padding: 10px 22px;
  border-radius: 8px;
  margin-top: 6px;
  width: 100%;
}
.btn-tournament:hover { background: #34cc8c; }

/* bonus */
.btn-bonus-cta {
  background: #c9963a;
  color: #0d0e18;
  width: 100%;
  padding: 11px 18px;
  border-radius: 8px;
  margin-top: auto;
}

/* game */
.btn-play-demo {
  background: rgba(13,14,24,.75);
  color: #f0efea;
  border: 1.5px solid rgba(240,239,234,.5);
  padding: 9px 16px;
  border-radius: 7px;
  font-size: .813rem;
}
.btn-play-real {
  background: #c9963a;
  color: #0d0e18;
  width: 100%;
  padding: 9px 12px;
  border-radius: 7px;
  font-size: .813rem;
}

/* ── Section helpers ───────────────────────────────────────── */
.section-title {
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-weight: 700;
  color: #c9963a;
  margin-bottom: 8px;
  line-height: 1.25;
}
.section-subtitle {
  font-size: .938rem;
  color: #8a8a9a;
  margin-bottom: 28px;
}

/* ── HEADER ────────────────────────────────────────────────── */
.site-header-z8w {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(13,14,24,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #2a2c44;
  height: 64px;
  display: flex;
  align-items: center;
}
.site-header-z8w .container { height: 100%; }

.hdr-x9a2.hdr-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 100%;
}

/* logo */
.hdr-logo-link { display: flex; align-items: center; flex-shrink: 0; }
.hdr-logo-img  { height: 40px; width: auto; object-fit: contain; }

/* online count */
.hdr-online-cnt {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  color: #8a8a9a;
  white-space: nowrap;
  margin-right: auto;
}
.hdr-dot-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2db37a;
  animation: dot-pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes dot-pulse {
  0%,100% { opacity: 1; }
  50%      { opacity: .4; }
}
.hdr-online-num { color: #f0efea; font-weight: 600; }

/* nav */
.hdr-nav { display: flex; align-items: center; gap: 20px; }
.hdr-nav-list { display: flex; gap: 4px; }
.hdr-nav-link {
  padding: 6px 10px;
  border-radius: 6px;
  font-size: .875rem;
  color: #c8c7c2;
  transition: color .15s, background .15s;
}
.hdr-nav-link:hover { color: #c9963a; background: rgba(201,150,58,.08); }
.hdr-nav-btns { display: none; } /* shown inside nav on mobile */

/* auth buttons beside nav */
.hdr-auth-btns { display: flex; gap: 8px; flex-shrink: 0; }

/* burger */
.hdr-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 9px 11px;
  margin-left: auto;
  background: #c9963a;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background .2s;
}
.hdr-burger:hover { background: #e0aa45; }
.hdr-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

/* mobile nav open state */
.hdr-nav.is-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0a0b14;
  padding: 24px 20px;
  gap: 8px;
  z-index: 9999;
  border-top: 2px solid #c9963a;
  overflow-y: auto;
}
.hdr-nav.is-open .hdr-nav-list { flex-direction: column; gap: 4px; }
.hdr-nav.is-open .hdr-nav-link {
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px 18px;
  display: block;
  color: #f0efea;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  border-left: 3px solid #c9963a;
  letter-spacing: 0.02em;
}
.hdr-nav.is-open .hdr-nav-link:hover { background: rgba(201,150,58,0.18); color: #c9963a; }
.hdr-nav.is-open .hdr-nav-btns { display: flex; gap: 10px; padding-top: 16px; }

/* ── HERO ──────────────────────────────────────────────────── */
.hero-section-q3p {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: url('/olymp-casino-banner.png') center/cover no-repeat;
  overflow: hidden;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,14,24,.92) 50%, rgba(13,14,24,.70));
  pointer-events: none;
}
.hero-section-q3p .container { position: relative; z-index: 1; padding-block: 60px; }

.hero-inner-v2k { max-width: 700px; }

.hero-badge-wrap { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(201,150,58,.15);
  border: 1px solid rgba(201,150,58,.45);
  color: #c9963a;
  font-size: .75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.hero-badge--green {
  background: rgba(45,179,122,.12);
  border-color: rgba(45,179,122,.4);
  color: #2db37a;
}

.hero-title-m6c {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
  background: linear-gradient(90deg, #e0b55a 0%, #c9963a 50%, #e0b55a 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer-text 3s linear infinite;
}
@keyframes shimmer-text {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.hero-subtitle-x1r {
  font-size: clamp(.938rem, 2vw, 1.125rem);
  color: #c8c7c2;
  margin-bottom: 28px;
  line-height: 1.55;
}
.hero-subtitle-x1r strong { color: #c9963a; }

.hero-cta-wrap { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }

.hero-trust-row { display: flex; flex-wrap: wrap; gap: 18px; }
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .813rem;
  color: #c8c7c2;
}
.hero-trust-item svg { color: #2db37a; flex-shrink: 0; }

/* ── BREADCRUMBS ───────────────────────────────────────────── */
.breadcrumbs-blk-f2c { padding-block: 18px 0; }
.breadcrumbs-list { display: flex; align-items: center; flex-wrap: wrap; gap: 4px; }
.breadcrumbs-item { font-size: .813rem; color: #8a8a9a; }
.breadcrumbs-link { color: #8a8a9a; }
.breadcrumbs-link:hover { color: #c9963a; }
.breadcrumbs-item--active { color: #c8c7c2; }
.breadcrumbs-sep { color: #2a2c44; font-size: .875rem; }

/* ── TOC ───────────────────────────────────────────────────── */
.toc-blk-h8n {
  background: #161828;
  border: 1px solid #2a2c44;
  border-radius: 12px;
  padding: 20px 24px;
  margin-block: 28px;
}
.toc-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1rem;
  color: #c9963a;
  margin-bottom: 14px;
}
.toc-list { counter-reset: toc; display: flex; flex-direction: column; gap: 4px; }
.toc-list li { counter-increment: toc; }
.toc-link {
  display: block;
  padding: 5px 8px;
  border-radius: 6px;
  font-size: .875rem;
  color: #c8c7c2;
  transition: color .15s, background .15s;
}
.toc-link:hover { color: #c9963a; background: rgba(201,150,58,.08); }

/* ── SECTION SPACING ───────────────────────────────────────── */
.advantages-blk-p5c,
.winners-blk-n2d,
.tournaments-blk-u4w,
.bonuses-blk-g6c,
.games-blk-s9m,
.review-blk-m3p,
.faq-blk-w7s,
.author-blk-k5n {
  padding-block: 48px;
  border-bottom: 1px solid #1a1c2e;
}

/* ── ADVANTAGES ────────────────────────────────────────────── */
.adv-grid-r7x {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.adv-card-e3t {
  background: #161828;
  border: 1px solid #2a2c44;
  border-radius: 12px;
  padding: 24px;
  transition: border-color .2s, transform .2s;
}
.adv-card-e3t:hover { border-color: #c9963a; transform: translateY(-3px); }
.adv-icon {
  width: 54px;
  height: 54px;
  background: rgba(201,150,58,.1);
  border: 1px solid rgba(201,150,58,.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9963a;
  margin-bottom: 14px;
}
.adv-title { font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: #f0efea; }
.adv-text  { font-size: .875rem; color: #8a8a9a; line-height: 1.55; }

/* ── WINNERS TABLE ─────────────────────────────────────────── */
.winners-table-wrap { overflow-x: auto; border-radius: 12px; border: 1px solid #2a2c44; margin-top: 8px; }
.winners-table-v6s {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
}
.winners-table-v6s thead { background: #1e2035; }
.winners-table-v6s th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  font-size: .813rem;
  color: #c9963a;
  text-transform: uppercase;
  letter-spacing: .04em;
  white-space: nowrap;
}
.winners-table-v6s td { padding: 11px 16px; color: #c8c7c2; border-top: 1px solid #1a1c2e; }
.winners-table-v6s tbody tr:hover { background: rgba(201,150,58,.04); }
.winner-row--top td { color: #c9963a; font-weight: 700; }
.winner-amount { color: #2db37a; font-weight: 700; white-space: nowrap; }

/* ── SLIDERS (shared) ──────────────────────────────────────── */
.tournaments-slider-wrap,
.bonuses-slider-wrap,
.games-slider-wrap {
  overflow: hidden;
  position: relative;
}
.tournaments-track,
.bonuses-track,
.games-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
  scrollbar-width: none;
}
.tournaments-track::-webkit-scrollbar,
.bonuses-track::-webkit-scrollbar,
.games-track::-webkit-scrollbar { display: none; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2a2c44;
  transition: background .2s, transform .2s;
}
.slider-dot.active { background: #c9963a; transform: scale(1.25); }

/* ── TOURNAMENT CARDS ──────────────────────────────────────── */
.tournament-card-f8b {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: #161828;
  border: 1px solid #2a2c44;
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .2s;
}
.tournament-card-f8b:hover { border-color: #c9963a; }

.tc-label {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  align-self: flex-start;
}
.tc-label--gold  { background: rgba(201,150,58,.2); color: #c9963a; }
.tc-label--blue  { background: rgba(59,130,246,.2); color: #60a5fa; }
.tc-label--red   { background: rgba(239,68,68,.2);  color: #f87171; }

.tc-title  { font-size: 1.125rem; font-weight: 700; color: #f0efea; }
.tc-desc   { font-size: .85rem; color: #8a8a9a; line-height: 1.55; flex: 1; }
.tc-prize  { display: flex; flex-direction: column; gap: 2px; }
.tc-prize-label  { font-size: .75rem; color: #8a8a9a; text-transform: uppercase; letter-spacing: .04em; }
.tc-prize-amount { font-size: 1.25rem; font-weight: 800; color: #c9963a; }
.tc-timer-wrap   { display: flex; align-items: center; gap: 6px; font-size: .813rem; color: #8a8a9a; }
.tc-timer        { color: #2db37a; font-weight: 700; font-variant-numeric: tabular-nums; }

/* ── BONUS CARDS ───────────────────────────────────────────── */
.bonus-card-t2v {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: #161828;
  border: 1px solid #2a2c44;
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .2s;
}
.bonus-card-t2v:hover { border-color: #c9963a; }

.bc-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  align-self: flex-start;
}
.bc-badge--welcome  { background: rgba(201,150,58,.2);  color: #c9963a; }
.bc-badge--app      { background: rgba(45,179,122,.15); color: #2db37a; }
.bc-badge--cashback { background: rgba(139,92,246,.15); color: #a78bfa; }

.bc-icon { color: #c9963a; }
.bc-title { font-size: 1.25rem; font-weight: 800; color: #f0efea; }
.bc-text  { font-size: .875rem; color: #8a8a9a; line-height: 1.55; flex: 1; }
.bc-terms {
  list-style: disc;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bc-terms li { font-size: .813rem; color: #8a8a9a; }

/* ── GAME CARDS ────────────────────────────────────────────── */
.game-card-c4k {
  flex: 0 0 180px;
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  background: #161828;
  border: 1px solid #2a2c44;
  transition: border-color .2s, transform .2s;
}
.game-card-c4k:hover { border-color: #c9963a; transform: translateY(-3px); }

.gc-img-wrap {
  position: relative;
  overflow: hidden;
}
.gc-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}
.game-card-c4k:hover .gc-img { transform: scale(1.04); }
.gc-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,14,24,.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .2s;
}
.game-card-c4k:hover .gc-overlay { opacity: 1; }

.gc-info {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gc-provider { font-size: .75rem; color: #8a8a9a; text-transform: uppercase; letter-spacing: .04em; }
.gc-name     { font-size: .938rem; font-weight: 700; color: #f0efea; }

/* ── REVIEW CONTENT ────────────────────────────────────────── */
.review-content-wrap {
  margin-top: 20px;
  font-size: .938rem;
  color: #c8c7c2;
  line-height: 1.75;
}
.review-content-wrap h2 { font-size: 1.375rem; font-weight: 700; color: #c9963a; margin-top: 36px; margin-bottom: 12px; }
.review-content-wrap h3 { font-size: 1.125rem; font-weight: 700; color: #f0efea; margin-top: 28px; margin-bottom: 10px; }
.review-content-wrap p  { margin-bottom: 14px; }
.review-content-wrap ul,
.review-content-wrap ol { padding-left: 20px; margin-bottom: 14px; }
.review-content-wrap ul { list-style: disc; }
.review-content-wrap ol { list-style: decimal; }
.review-content-wrap li { margin-bottom: 6px; }
.review-content-wrap strong { color: #f0efea; font-weight: 700; }
.review-content-wrap a { color: #c9963a; }
.review-content-wrap a:hover { text-decoration: underline; }
.review-content-wrap table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  font-size: .875rem;
}
.review-content-wrap th {
  background: #1e2035;
  padding: 10px 14px;
  text-align: left;
  color: #c9963a;
  font-weight: 700;
  border-bottom: 1px solid #2a2c44;
}
.review-content-wrap td {
  padding: 10px 14px;
  border-top: 1px solid #1a1c2e;
  color: #c8c7c2;
}
.review-content-wrap tr:hover td { background: rgba(201,150,58,.04); }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; }
.faq-item-r1z {
  background: #161828;
  border: 1px solid #2a2c44;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item-r1z:has(.faq-q[aria-expanded="true"]) { border-color: rgba(201,150,58,.4); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  font-size: .938rem;
  font-weight: 600;
  color: #f0efea;
  text-align: left;
  background: none;
  border: none;
  transition: color .15s;
}
.faq-q:hover { color: #c9963a; }

.faq-arrow {
  flex-shrink: 0;
  color: #8a8a9a;
  transition: transform .25s;
}
.faq-q[aria-expanded="true"] .faq-arrow { transform: rotate(-180deg); color: #c9963a; }

.faq-a {
  padding: 0 20px 18px;
  font-size: .875rem;
  color: #8a8a9a;
  line-height: 1.65;
}
.faq-a--closed { display: none; }

/* ── AUTHOR ────────────────────────────────────────────────── */
.author-card-x8c {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: #161828;
  border: 1px solid #2a2c44;
  border-radius: 14px;
  padding: 28px;
  margin-top: 20px;
}
.author-photo-wrap { flex-shrink: 0; }
.author-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #c9963a;
}
.author-name { font-size: 1.125rem; font-weight: 700; color: #f0efea; margin-bottom: 4px; }
.author-role { font-size: .813rem; color: #c9963a; font-weight: 600; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .04em; }
.author-bio  { font-size: .875rem; color: #8a8a9a; line-height: 1.65; margin-bottom: 14px; }
.author-social { display: flex; gap: 12px; }
.author-social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #c9963a;
  font-size: .813rem;
  font-weight: 600;
  border: 1px solid rgba(201,150,58,.35);
  padding: 6px 12px;
  border-radius: 7px;
  transition: background .15s;
}
.author-social-link:hover { background: rgba(201,150,58,.1); }

/* ── FOOTER ────────────────────────────────────────────────── */
.site-footer-v3d {
  background: #0a0b14;
  border-top: 1px solid #1a1c2e;
  padding-block: 40px 28px;
  margin-top: auto;
}
.ftr-x7k1 { display: flex; flex-direction: column; gap: 28px; }

.ftr-top { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.ftr-logo-img { height: 36px; width: auto; object-fit: contain; }
.ftr-nav-list { display: flex; flex-wrap: wrap; gap: 4px; }
.ftr-nav-link { font-size: .813rem; color: #8a8a9a; padding: 4px 8px; border-radius: 5px; }
.ftr-nav-link:hover { color: #c9963a; }

.ftr-section-label { font-size: .75rem; color: #8a8a9a; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 10px; }

.ftr-pay-logos,
.ftr-prov-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ftr-pay-item,
.ftr-prov-item {
  background: #161828;
  border: 1px solid #2a2c44;
  color: #8a8a9a;
  font-size: .75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
}

.ftr-legal { border-top: 1px solid #1a1c2e; padding-top: 20px; display: flex; align-items: flex-start; gap: 16px; }
.ftr-legal-text { font-size: .75rem; color: #555669; line-height: 1.65; flex: 1; }
.ftr-age-badge {
  flex-shrink: 0;
  background: rgba(239,68,68,.15);
  border: 1px solid rgba(239,68,68,.35);
  color: #f87171;
  font-size: .875rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 7px;
}

/* ── STICKY WIDGET ─────────────────────────────────────────── */
.sticky-widget-b2r {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 950;
  transform: translateY(120px);
  opacity: 0;
  transition: transform .35s cubic-bezier(.22,1,.36,1), opacity .35s;
  pointer-events: none;
}
.sticky-widget-b2r.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.sw-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #161828;
  border: 1px solid rgba(201,150,58,.45);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,.5);
  max-width: 320px;
}
.sw-text { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.sw-bonus { font-size: 1rem; font-weight: 800; color: #c9963a; }
.sw-desc  { font-size: .75rem; color: #8a8a9a; }
.sw-btn {
  display: inline-flex;
  align-items: center;
  background: #c9963a;
  color: #0d0e18;
  font-weight: 700;
  font-size: .813rem;
  padding: 9px 14px;
  border-radius: 8px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .15s;
}
.sw-btn:hover { background: #e0b55a; }
.sw-close {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: #8a8a9a;
  flex-shrink: 0;
  transition: color .15s, background .15s;
}
.sw-close:hover { color: #f0efea; background: rgba(240,239,234,.08); }

/* ── MAIN ──────────────────────────────────────────────────── */
.site-main-w5n { flex: 1; }
.site-main-w5n .container { padding-bottom: 60px; }

/* desktop: all 6 game cards in one row */
@media (min-width: 901px) {
  .games-track { display: grid; grid-template-columns: repeat(6, 1fr); overflow-x: visible; }
  .game-card-c4k { flex: none; }
}

/* content article card */
.review-content-wrap {
  background: #13152a;
  border: 1px solid #2a2c44;
  border-radius: 14px;
  padding: 28px 32px;
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hdr-nav      { display: none; }
  .hdr-auth-btns{ display: none; }
  .hdr-burger   { display: flex; }
  .hdr-online-cnt { margin-right: 0; }
}

@media (max-width: 640px) {
  .hero-section-q3p { min-height: 420px; }
  .hero-cta-wrap { flex-direction: column; }
  .btn-hero-signup, .btn-hero-demo { width: 100%; font-size: .938rem; }
  .tournament-card-f8b { flex: 0 0 280px; }
  .bonus-card-t2v      { flex: 0 0 260px; }
  .game-card-c4k       { flex: 0 0 160px; }
  .gc-img              { height: 170px; }
  .author-card-x8c { flex-direction: column; align-items: center; text-align: center; }
  .author-social { justify-content: center; }
  .sw-inner { max-width: 260px; }
}

@media (max-width: 480px) {
  .adv-grid-r7x { grid-template-columns: 1fr; }
  .winners-table-v6s th,
  .winners-table-v6s td { padding: 9px 10px; font-size: .8rem; }
}
