:root {
  --color-bg: #090B0F;
  --color-bg-alt: #13161B;
  --color-panel: #191C21;
  --color-accent: #B91F24;
  --color-accent-hover: #E3343A;
  --color-gold: #C99A4E;
  --color-text: #F5EFE7;
  --color-text-muted: #A9A9A9;
  --color-border: #3F3022;
  --radius-md: 14px;
  --radius-lg: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: "Georgia", "Times New Roman", serif;
  line-height: 1.5;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { margin: 0; padding: 0; list-style: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .15s ease;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
  color: var(--color-text);
}

.btn--primary:hover { transform: translateY(-1px); }

.btn--ghost {
  background: transparent;
  border-color: var(--color-border);
  color: var(--color-text);
}

.btn--outline {
  background: transparent;
  border-color: var(--color-gold);
  color: var(--color-gold);
  padding: 9px 20px;
  font-size: 13px;
}

.btn--lg { padding: 16px 34px; font-size: 17px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #050608;
  border-bottom: 1px solid var(--color-border);
}

.site-header__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-header__logo img { height: 34px; width: auto; }

.site-header__nav {
  flex: 1;
  display: flex;
  gap: 22px;
  justify-content: center;
}

.site-header__nav a {
  font-size: 14px;
  color: var(--color-text-muted);
  letter-spacing: .02em;
}

.site-header__nav a:hover { color: var(--color-text); }

.site-header__actions { display: flex; gap: 12px; }

.site-header__burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.site-header__burger span {
  width: 22px;
  height: 2px;
  background: var(--color-text);
}

.hero { padding: 64px 24px; background: var(--color-bg); }

.hero__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}

.hero__badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid var(--color-accent);
  color: var(--color-accent-hover);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: 18px;
}

.hero__title {
  margin: 0 0 10px;
  font-size: 52px;
  line-height: 1.05;
  color: var(--color-text);
}

.hero__offer {
  margin: 0 0 16px;
  font-size: 28px;
  color: var(--color-text);
}

.hero__offer strong { color: var(--color-accent-hover); }

.hero__text {
  margin: 0 0 28px;
  max-width: 460px;
  color: var(--color-text-muted);
  font-size: 16px;
}

.hero__trust {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.hero__trust li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--color-text-muted);
}

.hero__trust img {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-accent));
}

.hero__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 4.5;
  background: radial-gradient(circle at 30% 20%, #2a1214, var(--color-bg-alt) 70%);
  border: 1px solid var(--color-border);
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo { padding: 0 24px 64px; }

.promo__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.promo__icon { margin: 0 auto 12px; }

.promo__title {
  font-size: 26px;
  margin: 0 0 24px;
}

.promo__panel {
  background: var(--color-panel);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.promo__label {
  flex: 1 1 220px;
  text-align: left;
  color: var(--color-text-muted);
  font-size: 14px;
}

.promo__code-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 10px 12px 10px 24px;
}

.promo__code {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--color-accent-hover);
}

.promo__note {
  flex: 1 1 220px;
  text-align: right;
  color: var(--color-text-muted);
  font-size: 13px;
}

.slots { padding: 0 24px 64px; }

.slots__inner { max-width: 1240px; margin: 0 auto; }

.slots__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
}

.slots__title { font-size: 28px; margin: 0; }

.slots__all { color: var(--color-gold); font-size: 14px; font-weight: 700; }

.slots__row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.slot-card {
  background: var(--color-panel);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.slot-card img { width: auto; height: 200px; aspect-ratio: 4 / 3; object-fit: cover; }

.slot-card__title {
  padding: 12px 12px 0;
  font-size: 14px;
  font-weight: 700;
}

.slot-card__provider {
  padding: 2px 12px 10px;
  font-size: 12px;
  color: var(--color-text-muted);
}

.slot-card__actions { padding: 0 12px 14px; }

.slot-card__btn {
  display: block;
  text-align: center;
  padding: 8px;
  border-radius: 999px;
  background: var(--color-accent);
  font-size: 13px;
  font-weight: 700;
}

.slot-card__btn:hover { background: var(--color-accent-hover); }

.bonuses { padding: 0 24px 64px; background: var(--color-bg-alt); }

.bonuses__inner { max-width: 1240px; margin: 0 auto; padding: 64px 0; }

.bonuses__title { font-size: 28px; margin: 0 0 28px; }

.bonuses__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bonus-card {
  background: var(--color-panel);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.bonus-card__media {
  height: 120px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-bg-alt));
}

.bonus-card--welcome .bonus-card__media { background-image: url("../img/banners/bonus-welcome.webp"); background-size: cover; background-position: center; }
.bonus-card--cashback .bonus-card__media { background-image: url("../img/banners/bonus-cashback.webp"); background-size: cover; background-position: center; }
.bonus-card--tournament .bonus-card__media { background-image: url("../img/banners/bonus-tournaments.webp"); background-size: cover; background-position: center; }

.bonus-card__body { padding: 20px; }

.bonus-card__title { margin: 0 0 8px; font-size: 17px; }

.bonus-card__value {
  margin: 0 0 16px;
  color: var(--color-gold);
  font-weight: 700;
  font-size: 15px;
}

.reviews { padding: 64px 24px; }

.reviews__inner { max-width: 1240px; margin: 0 auto; }

.reviews__head { margin-bottom: 24px; }

.reviews__title { font-size: 28px; margin: 0; }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--color-panel);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px;
}

.review-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.review-card__head img { border-radius: 50%; }

.review-card__name { font-weight: 700; font-size: 15px; }

.review-card__stars { display: flex; gap: 3px; }

.star {
  width: 13px;
  height: 13px;
  background: var(--color-gold);
  clip-path: polygon(50% 0%, 63% 35%, 100% 38%, 72% 60%, 82% 96%, 50% 76%, 18% 96%, 28% 60%, 0% 38%, 37% 35%);
}

.review-card__text {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 14px;
}

.about {
  padding: 64px 24px;
  background: var(--color-bg-alt);
}

.about__inner {
  max-width: 900px;
  margin: 0 auto;
  background: var(--color-panel);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
}

.about__title { font-size: 28px; margin: 0 0 18px; }

.about h3 { font-size: 19px; margin: 28px 0 10px; color: var(--color-gold); }

.about p {
  margin: 0 0 14px;
  color: var(--color-text-muted);
  font-size: 15px;
}

.about ul { margin: 12px 0 14px; padding-left: 20px; list-style: disc; }

.about ul li { margin-bottom: 6px; color: var(--color-text-muted); font-size: 15px; }

.faq { padding: 0 24px 72px; }

.faq__inner { max-width: 900px; margin: 0 auto; }

.faq__title { font-size: 28px; margin: 0 0 24px; }

.faq__list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: var(--color-panel);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  color: var(--color-text);
  padding: 18px 22px;
  cursor: pointer;
  text-align: left;
}

.faq-item__q h3 { margin: 0; font-size: 15px; font-weight: 600; }

.faq-item__icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  background: var(--color-gold);
  border-radius: 2px;
}

.faq-item__icon::before { width: 14px; height: 2px; top: 6px; left: 0; }
.faq-item__icon::after { width: 2px; height: 14px; top: 0; left: 6px; transition: transform .2s ease; }

.faq-item.is-open .faq-item__icon::after { transform: scaleY(0); }

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}

.faq-item__a p {
  margin: 0;
  padding: 0 22px 18px;
  color: var(--color-text-muted);
  font-size: 14px;
}

.site-footer {
  background: #0C0E12;
  border-top: 1px solid var(--color-border);
  padding: 28px 24px;
}

.site-footer__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
}

.site-footer__logo img { height: 28px; width: auto; opacity: .9; }

.site-footer__nav { display: flex; gap: 18px; flex-wrap: wrap; }

.site-footer__nav a { font-size: 13px; color: var(--color-text-muted); }

.site-footer__nav a:hover { color: var(--color-text); }

.site-footer__copy { font-size: 12px; color: var(--color-text-muted); }

@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { order: -1; aspect-ratio: 16 / 9; }
  .slots__row { grid-template-columns: repeat(3, 1fr); }
  .bonuses__grid, .reviews__grid { grid-template-columns: 1fr; }
  .site-header__nav { display: none; }
  .site-header__burger { display: flex; }
}

@media (max-width: 640px) {
  .hero__title { font-size: 38px; }
  .slots__row { grid-template-columns: repeat(2, 1fr); }
  .about__inner { padding: 32px 24px; }
  .promo__panel { flex-direction: column; align-items: stretch; text-align: center; }
  .promo__label, .promo__note { text-align: center; }
}

@media (max-width: 480px) {
    header .btn.btn--primary {
        display: none;
    }
}