
:root {
  --gold:          #fec600;
  --gold-dark:     #d4a600;
  --gold-light:    #fff0a0;
  --dark:          #111111;
  --dark2:         #1a1a1a;
  --dark3:         #242424;
  --text:          #1c1c1c;
  --text-muted:    #64635e;
  --text-faint:    #9b9a93;
  --bg:            #ffffff;
  --bg2:           #f7f7f5;
  --bg3:           #f0f0ed;
  --border:        #e5e4e0;
  --border-dark:   #2e2e2e;
  --footer-bg:     #111111;
  --footer-text:   #aeada6;
  --radius-sm:     4px;
  --radius:        8px;
  --radius-lg:     14px;
  --radius-pill:   999px;
  --shadow-sm:     0 1px 4px rgba(0,0,0,.07);
  --shadow:        0 3px 14px rgba(0,0,0,.10);
  --shadow-lg:     0 10px 36px rgba(0,0,0,.16);
  --max-w:         1080px;
  --max-w-text:    740px;
  --header-h:      64px;
  --ff-display:    'Playfair Display', Georgia, serif;
  --ff-body:       'Outfit', Helvetica, Arial, sans-serif;
  --transition:    .2s ease;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body  {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
}
img, video { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }

/* ── Utilities ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 20px;
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip-path: inset(50%); white-space: nowrap;
}
.text-muted  { color: var(--text-muted); }
.text-center { text-align: center; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: .65em 1.5em;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .01em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: #1a1a00;
}
.btn-gold:hover  { background: var(--gold-dark); transform: translateY(-1px); box-shadow: 0 4px 18px rgba(254,198,0,.35); }
.btn-gold:active { transform: translateY(0); }
.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.55);
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-sm { padding: .45em 1.1em; font-size: .82rem; }
.btn-lg { padding: .85em 2em;   font-size: 1rem; }

/* ── Header ─────────────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(17,17,17,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dark);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}
.logo img { height: 38px; width: auto; }

/* Hamburger */
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--radius);
  color: #fff;
  transition: background var(--transition);
}
.nav-toggle:hover { background: rgba(255,255,255,.1); }
.burger,
.burger::before,
.burger::after {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.burger { position: relative; }
.burger::before,
.burger::after {
  content: '';
  position: absolute; left: 0;
}
.burger::before { top: -6px; }
.burger::after  { top:  6px; }

/* Open state */
.nav-toggle[aria-expanded="true"] .burger           { background: transparent; }
.nav-toggle[aria-expanded="true"] .burger::before   { transform: rotate(45deg);  top: 0; }
.nav-toggle[aria-expanded="true"] .burger::after    { transform: rotate(-45deg); top: 0; }

/* Nav — mobile */
#primary-nav {
  display: none;
  position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: var(--dark2);
  border-bottom: 1px solid var(--border-dark);
  padding: 16px 20px 20px;
  flex-direction: column;
  gap: 4px;
}
#primary-nav.open { display: flex; }

.nav-list  { display: flex; flex-direction: column; gap: 2px; }
.nav-link  {
  display: block;
  padding: 9px 12px;
  border-radius: var(--radius);
  color: var(--footer-text);
  font-size: .92rem;
  font-weight: 500;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover,
.nav-link.current { color: #fff; background: rgba(255,255,255,.07); }
.nav-link.current { color: var(--gold); }
.nav-cta { margin-top: 12px; justify-content: center; }

/* Nav — desktop */
@media (min-width: 768px) {
  .nav-toggle { display: none; }
  #primary-nav {
    display: flex !important;
    position: static;
    flex-direction: row;
    align-items: center;
    background: none;
    border: none;
    padding: 0;
    gap: 2px;
  }
  .nav-list { flex-direction: row; gap: 0; }
  .nav-link { padding: 8px 12px; font-size: .88rem; }
  .nav-cta  { margin-top: 0; margin-left: 8px; }
}

/* ── Hero ────────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
/* Градиент-затемнение */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,.45) 0%,
    rgba(10,10,10,.5)  40%,
    rgba(10,10,10,.82) 75%,
    rgba(10,10,10,.97) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 60px 52px;
  max-width: 780px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(254,198,0,.15);
  border: 1px solid rgba(254,198,0,.3);
  color: var(--gold);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.hero-tag::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.hero-lead {
  font-size: clamp(.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 600px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.7);
  font-size: .88rem;
}
.hero-stars { color: var(--gold); font-size: 1rem; letter-spacing: 1px; }
.hero-rating strong { color: #fff; }

/* Scroll-down indicator */
.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.4);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: bounce 2.2s ease-in-out infinite;
}
.hero-scroll span { width: 1.5px; height: 32px; background: rgba(255,255,255,.25); border-radius: 1px; }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ── Quick-stats bar ─────────────────────────────────────────── */
#quick-stats {
  background: var(--dark3);
  border-bottom: 1px solid var(--border-dark);
}
.quick-stats-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.qs-item {
  flex: 1 1 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 18px 16px;
  border-right: 1px solid var(--border-dark);
  color: #fff;
}
.qs-item:last-child { border-right: none; }
.qs-label { font-size: .72rem; font-weight: 500; letter-spacing: .07em; text-transform: uppercase; color: var(--footer-text); margin-bottom: 4px; }
.qs-value { font-size: 1.05rem; font-weight: 600; color: #fff; }
.qs-value.gold { color: var(--gold); }

/* ── Layout: main + sidebar ──────────────────────────────────── */
#main-wrap {
  padding-block: 52px 64px;
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 900px) {
  .content-grid {
    grid-template-columns: 1fr 300px;
    gap: 48px;
  }
}

/* ── Article content ─────────────────────────────────────────── */
.article-content h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  margin-top: 2.4rem;
  margin-bottom: .75rem;
  scroll-margin-top: calc(var(--header-h) + 16px);
}
.article-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 1.8rem;
  margin-bottom: .6rem;
  scroll-margin-top: calc(var(--header-h) + 16px);
}
.article-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 1.4rem;
  margin-bottom: .4rem;
}
.article-content p  { margin-bottom: 1.1rem; }
.article-content ul,
.article-content ol { padding-left: 1.4em; margin-bottom: 1.1rem; }
.article-content li { margin-bottom: .35rem; }
.article-content a  { color: var(--gold-dark); text-decoration: underline; text-underline-offset: 3px; }
.article-content a:hover { color: var(--dark); }
.article-content img {
  border-radius: var(--radius-lg);
  margin-block: 1.5rem;
  width: 100%;
}
.article-content strong { font-weight: 600; }

/* First paragraph lead style */
.article-content .lead {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* CTA inside content */
.cta-block {
  display: flex;
  justify-content: center;
  margin-block: 2rem;
}

/* ── Info table ──────────────────────────────────────────────── */
.info-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  font-size: .92rem;
  margin-block: 1.5rem;
}
.info-table th,
.info-table td {
  padding: 11px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
}
.info-table tr:last-child th,
.info-table tr:last-child td { border-bottom: none; }
.info-table th {
  width: 38%;
  background: var(--bg2);
  font-weight: 600;
  color: var(--text-muted);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.info-table td { background: var(--bg); color: var(--text); }

/* ── Payment methods table ───────────────────────────────────── */
.payment-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
  margin-block: 1.2rem;
}
.payment-table thead th {
  padding: 8px 12px;
  text-align: left;
  background: var(--bg2);
  border-bottom: 2px solid var(--border);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-muted);
  font-weight: 600;
}
.payment-table tbody tr { border-bottom: 1px solid var(--border); }
.payment-table tbody tr:last-child { border-bottom: none; }
.payment-table td { padding: 10px 12px; vertical-align: middle; }
.payment-table td:first-child { font-weight: 600; }

/* ── FAQ section ─────────────────────────────────────────────── */
.faq-list { margin-block: 1.5rem; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  font-size: .95rem;
  background: var(--bg2);
  transition: background var(--transition);
}
.faq-question:hover { background: var(--bg3); }
.faq-question[aria-expanded="true"] { background: var(--bg3); }
.faq-icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--border);
  display: grid;
  place-items: center;
  font-size: .75rem;
  transition: transform var(--transition), background var(--transition);
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
}
.faq-answer {
  display: none;
  padding: 14px 16px;
  font-size: .93rem;
  line-height: 1.7;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
}
.faq-answer.open { display: block; }

/* ── Sidebar ─────────────────────────────────────────────────── */
.sidebar { display: flex; flex-direction: column; gap: 20px; }

/* TOC widget */
.widget {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.widget-title {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 14px 16px 10px;
  border-bottom: 1px solid var(--border);
}
.toc-list { padding: 10px 16px 14px; display: flex; flex-direction: column; gap: 3px; }
.toc-list a {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 5px 8px;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
}
.toc-list a:hover,
.toc-list a.active { color: var(--gold-dark); background: rgba(254,198,0,.07); }
.toc-num { font-size: .75rem; color: var(--text-faint); flex-shrink: 0; min-width: 1.6em; }

.toc-sub { margin-left: 20px; }

/* Visit casino widget */
.widget-visit {
  background: var(--dark);
  border-color: var(--border-dark);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.widget-visit img { width: 130px; height: auto; margin-inline: auto; }
.widget-visit-bonus {
  font-size: .82rem;
  color: var(--gold);
  font-weight: 600;
}
.widget-visit-sub {
  font-size: .75rem;
  color: var(--footer-text);
}
.widget-visit .btn { width: 100%; justify-content: center; }

/* Rating widget */
.widget-rating { padding: 16px; }
.rating-score {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.rating-big {
  font-size: 2.8rem;
  font-weight: 700;
  font-family: var(--ff-display);
  line-height: 1;
  color: var(--text);
}
.rating-stars-col { display: flex; flex-direction: column; gap: 2px; }
.rating-stars { color: var(--gold); font-size: 1.1rem; }
.rating-label { font-size: .78rem; color: var(--text-muted); }
.rating-bars { display: flex; flex-direction: column; gap: 8px; }
.rating-bar-row { display: grid; grid-template-columns: 100px 1fr 30px; align-items: center; gap: 8px; }
.rating-bar-label { font-size: .78rem; color: var(--text-muted); }
.rating-bar-track { height: 5px; background: var(--bg3); border-radius: 3px; overflow: hidden; }
.rating-bar-fill  { height: 100%; background: var(--gold); border-radius: 3px; }
.rating-bar-val   { font-size: .78rem; font-weight: 600; text-align: right; }

/* ── Bonus callout ───────────────────────────────────────────── */
.bonus-block {
  background: linear-gradient(135deg, #1a1400 0%, #2a2000 100%);
  border: 1px solid rgba(254,198,0,.25);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  margin-block: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
.bonus-block-text .bonus-amount {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}
.bonus-block-text p {
  font-size: .85rem;
  color: var(--footer-text);
  margin-top: 4px;
  margin-bottom: 0;
}

/* ── Footer ─────────────────────────────────────────────────── */
#site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  border-top: 1px solid var(--border-dark);
  padding-top: 52px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-dark);
}
@media (min-width: 600px) {
  .footer-top { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .footer-top { grid-template-columns: 1.8fr 1fr 1fr 1.4fr; }
}

.footer-brand {}
.footer-logo img { height: 34px; width: auto; margin-bottom: 16px; }
.footer-disclaimer {
  font-size: .8rem;
  line-height: 1.65;
  color: #6e6e68;
  max-width: 260px;
}

.footer-nav-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #5a5a54;
  margin-bottom: 12px;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 7px; }
.footer-nav a {
  font-size: .85rem;
  color: var(--footer-text);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold); }

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.trust-logos a {
  opacity: .65;
  transition: opacity var(--transition);
}
.trust-logos a:hover { opacity: 1; }
.trust-logos img { height: 30px; width: auto; }

.footer-operator {
  padding-block: 16px;
  border-bottom: 1px solid var(--border-dark);
  font-size: .78rem;
  color: #4a4a45;
  line-height: 1.6;
}
.footer-bottom {
  padding-block: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-size: .82rem;
  color: #4a4a45;
}
.footer-copy a { color: #5a5a54; }
.footer-copy a:hover { color: var(--gold); }
.footer-rg { margin-left: 10px; color: #3a3a35; }

/* ── Cookie notice ───────────────────────────────────────────── */
.cookie-notice {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--dark2);
  border-top: 1px solid var(--border-dark);
  padding: 14px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: .85rem;
  color: var(--footer-text);
}
.cookie-notice[hidden] { display: none !important; }

/* ── Scroll progress bar ─────────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: var(--header-h);
  left: 0;
  height: 2px;
  background: var(--gold);
  z-index: 99;
  width: 0%;
  transition: width .1s linear;
}

/* ── Animations ─────────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease, transform .5s ease;
  }
  .fade-in.visible {
    opacity: 1;
    transform: none;
  }
}
