:root {
  --color-bg: #070A0B;
  --color-surface: #111618;
  --color-panel: #1A2022;
  --color-bronze: #D37B4D;
  --color-champagne: #F1E3CF;
  --color-cta: #D37B4D;
  --color-cta-hover: #B85F36;
  --color-text: #F1E3CF;
  --color-text-muted: #B8A99A;
  --color-border: #3F2A22;
  --color-shadow: #050607;
  --font-base: Georgia, "Times New Roman", serif;
  --font-ui: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-ui);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

h1, h2, h3 {
  font-family: var(--font-base);
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.header .container {
  padding-left: 20px;
  padding-right: 20px;
}

.section {
  padding: 64px 0;
}

.section--panel {
  background: var(--color-surface);
}

.section__eyebrow {
  color: var(--color-bronze);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 10px;
}

.section__title {
  font-size: 32px;
  margin-bottom: 16px;
  color: var(--color-champagne);
}

.section__lead {
  color: var(--color-text-muted);
  max-width: 640px;
  margin-bottom: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: var(--font-ui);
}

.btn--primary {
  background: linear-gradient(180deg, var(--color-cta-hover) 0%, var(--color-cta) 100%);
  color: #FFF6E9;
}

.btn--primary:hover {
  background: var(--color-cta-hover);
}

.btn--ghost {
  background: transparent;
  border-color: var(--color-bronze);
  color: var(--color-champagne);
}

.btn--ghost:hover {
  border-color: var(--color-champagne);
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 9, 13, 0.95);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(6px);
}

.header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}

.header__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 1;
  min-width: 0;
  line-height: 0;
}

.header__logo img {
  width: 100%;
  max-width: 180px;
  height: auto;
}


.header__mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--color-bronze);
  color: var(--color-bronze);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 17px;
  flex-shrink: 0;
}

.header__logo-text {
  font-family: var(--font-base);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
}

.header__logo-text span {
  display: block;
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-bronze);
}

.header__nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.header__nav a {
  font-size: 14px;
  color: var(--color-text-muted);
}

.header__nav a:hover {
  color: var(--color-champagne);
}

.header__actions {
  display: flex;
  gap: 12px;
}

.header__burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.header__burger span {
  width: 22px;
  height: 2px;
  background: var(--color-text);
}

.hero {
  padding: 76px 0;
  background: linear-gradient(90deg, rgba(13, 9, 13, 0.96) 0%, rgba(13, 9, 13, 0.72) 48%, rgba(13, 9, 13, 0.34) 100%), url("../img/banners/hero-1.webp");
  background-size: cover;
  background-position: center;
}

.hero__row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero__title {
  font-size: 46px;
  line-height: 1.12;
  margin-bottom: 20px;
  color: var(--color-text);
}

.hero__subtitle {
  color: var(--color-text-muted);
  font-size: 17px;
  max-width: 520px;
  margin-bottom: 30px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.hero__meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero__meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text-muted);
  font-size: 14px;
}

.hero__meta-item svg {
  color: var(--color-bronze);
  flex-shrink: 0;
}

.bonus-frame {
  background: linear-gradient(180deg, var(--color-panel) 0%, #08090A 100%);
  border: 1px solid var(--color-bronze);
  border-radius: 18px;
  padding: 38px 32px;
  text-align: center;
  box-shadow: 0 28px 54px rgba(5, 3, 5, 0.6);
  position: relative;
}

.bonus-frame::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  pointer-events: none;
}

.bonus-frame__label {
  color: var(--color-text-muted);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.bonus-frame__value {
  font-family: var(--font-base);
  font-size: 54px;
  font-weight: 700;
  color: var(--color-champagne);
  line-height: 1;
}

.bonus-frame__sub {
  color: var(--color-text);
  font-size: 18px;
  margin: 12px 0 26px;
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.trust-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 26px;
  text-align: center;
}

.trust-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--color-bronze);
  color: var(--color-bronze);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.trust-card__title {
  font-size: 17px;
  color: var(--color-champagne);
  margin-bottom: 8px;
}

.trust-card__text {
  font-size: 14px;
  color: var(--color-text-muted);
}

.slots__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.slots__arrows {
  display: flex;
  gap: 10px;
  margin-bottom: 36px;
}

.slots__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-bronze);
  background: transparent;
  color: var(--color-champagne);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slots__arrow:hover {
  background: var(--color-panel);
}

.slots-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 10px;
  scrollbar-width: none;
}

.slots-slider::-webkit-scrollbar {
  display: none;
}

.slot-card {
  flex: 0 0 240px;
  scroll-snap-align: start;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  overflow: hidden;
}

.slot-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.slot-card__body {
  padding: 14px 16px 18px;
}

.slot-card__title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.slot-card__provider {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 14px;
}

.slot-card__btn {
  display: none;
  text-align: center;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  background: linear-gradient(180deg, var(--color-cta-hover) 0%, var(--color-cta) 100%);
  color: #FFF6E9;
}

.slot-card:hover .slot-card__btn {
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.slot-card:hover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 10, 11, 0.55);
}

.slot-card__btn:hover {
  background: var(--color-cta-hover);
}

.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: var(--color-panel);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 44px;
  align-items: center;
}

.checklist__title {
  font-size: 30px;
  color: var(--color-champagne);
  margin-bottom: 16px;
}

.checklist__text {
  color: var(--color-text-muted);
  margin-bottom: 26px;
}

.checklist__items {
  display: grid;
  gap: 16px;
}

.checklist__items li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--color-text);
  font-size: 15px;
}

.checklist__items svg {
  color: var(--color-bronze);
  flex-shrink: 0;
  margin-top: 3px;
}

.about__content {
  max-width: 100%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 44px;
}

.about h2 {
  font-size: 30px;
  margin-bottom: 18px;
  color: var(--color-champagne);
}

.about h3 {
  font-size: 19px;
  margin-top: 26px;
  margin-bottom: 10px;
  color: var(--color-champagne);
}

.about p {
  color: var(--color-text-muted);
  margin-bottom: 14px;
  font-size: 15px;
}

.about ul {
  color: var(--color-text-muted);
  margin: 0 0 14px 0;
  display: grid;
  gap: 8px;
}

.about ul li {
  padding-left: 22px;
  position: relative;
  font-size: 14px;
}

.about ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-bronze);
}

.closing-cta {
  text-align: center;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 44px 0;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--color-panel);
}

.faq-item__q {
  padding: 18px 22px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-text);
}

.faq-item__q .chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color-bronze);
  border-bottom: 2px solid var(--color-bronze);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-item.is-open .chevron {
  transform: rotate(-135deg);
}

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  color: var(--color-text-muted);
  font-size: 14px;
  transition: max-height 0.25s ease, padding 0.25s ease;
}

.faq-item.is-open .faq-item__a {
  padding: 0 22px 20px;
  max-height: 400px;
}

.footer {
  border-top: 1px solid var(--color-border);
  padding: 50px 0 30px;
  background: var(--color-bg);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 34px;
}

.footer__title {
  font-size: 14px;
  margin-bottom: 14px;
  color: var(--color-bronze);
  font-family: var(--font-ui);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__col a {
  display: block;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

.footer__col a:hover {
  color: var(--color-champagne);
}

.footer__bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 18px;
  font-size: 12px;
  color: var(--color-text-muted);
}

@media (max-width: 960px) {
  .hero__row {
    grid-template-columns: 1fr;
  }

  .trust__grid {
    grid-template-columns: 1fr;
  }

  .checklist {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .about__content {
    padding: 12px;
  }

  .header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 2px;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    padding: 8px 20px 16px;
  }

  .header__nav.is-open {
    display: flex;
  }

  .header__nav a {
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border);
  }

  .header__nav a:last-child {
    border-bottom: none;
  }

  .header__burger {
    display: flex;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .hero__title {
    font-size: 32px;
  }

  .bonus-frame__value {
    font-size: 42px;
  }

  .slot-card {
    flex: 0 0 200px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .header__row {
    padding: 14px 0;
  }

  .header__actions .btn {
    padding: 10px 14px;
    font-size: 13px;
  }
}

@media (max-width: 420px) {
  .header__actions .btn--ghost {
    display: none;
  }
}

.section__title--left {
  text-align: left;
}

.spin-widget {
  background: linear-gradient(180deg, var(--color-panel) 0%, #08090A 100%);
  border: 1px solid var(--color-bronze);
  border-radius: 18px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 28px 54px rgba(5, 6, 7, 0.6);
}

.spin-widget__timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--color-text-muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spin-widget__timer b {
  color: var(--color-champagne);
  font-size: 22px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
}

.spin-widget__reels {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 22px;
}

.spin-widget__reel {
  width: 90px;
  height: 90px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  overflow: hidden;
  background: var(--color-surface);
}

.spin-widget__strip {
  display: flex;
  flex-direction: column;
}

.spin-widget__strip img {
  width: 90px;
  height: 90px;
  object-fit: cover;
}

.spin-widget__strip--1 {
  animation: reel-spin 2.4s linear infinite;
}

.spin-widget__strip--2 {
  animation: reel-spin 3.1s linear infinite;
}

.spin-widget__strip--3 {
  animation: reel-spin 3.7s linear infinite;
}

@keyframes reel-spin {
  from { transform: translateY(0); }
  to { transform: translateY(-270px); }
}

.spin-widget__stats {
  display: flex;
  justify-content: center;
  gap: 26px;
  margin-bottom: 22px;
}

.spin-widget__stat b {
  display: block;
  color: var(--color-champagne);
  font-size: 18px;
}

.spin-widget__stat span {
  font-size: 12px;
  color: var(--color-text-muted);
}

.plat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.plat-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 26px;
}

.plat-item__num {
  font-family: Georgia, serif;
  font-size: 34px;
  color: var(--color-bronze);
  opacity: 0.6;
  margin-bottom: 10px;
}

.plat-item__title {
  font-weight: 700;
  color: var(--color-champagne);
  font-size: 16px;
  margin-bottom: 8px;
}

.plat-item__text {
  font-size: 13px;
  color: var(--color-text-muted);
}

.promo-bar {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  background: linear-gradient(180deg, var(--color-panel) 0%, #08090A 100%);
  border: 1px dashed var(--color-bronze);
  border-radius: 18px;
  padding: 30px 36px;
}

.promo-bar__info {
  flex: 1 1 280px;
}

.promo-bar__title {
  font-size: 24px;
  color: var(--color-champagne);
}

.promo-bar__code {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--color-champagne);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 12px 26px;
}

.promo-bar__copied {
  font-size: 13px;
  color: var(--color-bronze);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.promo-bar__copied.is-visible {
  opacity: 1;
}

.faq-open {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.faq-open__item {
  border: 1px solid var(--color-bronze);
  border-radius: 14px;
  background: var(--color-panel);
  padding: 26px;
}

.faq-open__q {
  font-weight: 700;
  font-size: 15px;
  color: var(--color-champagne);
  margin-bottom: 10px;
}

.faq-open__a {
  color: var(--color-text-muted);
  font-size: 14px;
}

.live-wins {
  overflow: hidden;
}

.live-wins__viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.live-wins__track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: live-wins-scroll 30s linear infinite;
}

.live-wins__track:hover {
  animation-play-state: paused;
}

@keyframes live-wins-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.live-win-card {
  flex: 0 0 220px;
  display: flex;
  gap: 12px;
  align-items: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 12px;
}

.live-win-card__img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.live-win-card__body {
  min-width: 0;
}

.live-win-card__top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

.live-win-card__game {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--color-text);
}

.live-win-card__amount {
  color: var(--color-champagne);
  font-weight: 800;
  font-size: 17px;
}

@media (max-width: 960px) {
  .plat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-open {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .plat-grid {
    grid-template-columns: 1fr;
  }

  .spin-widget__reel, .spin-widget__strip img {
    width: 72px;
    height: 72px;
  }

  @keyframes reel-spin {
    from { transform: translateY(0); }
    to { transform: translateY(-216px); }
  }
}
/* footer layout refresh */
.footer__grid { grid-template-columns: minmax(260px, 1fr) minmax(260px, 1fr); align-items: center; gap: 28px; }
.footer__grid > div:first-child { order: 2; display: flex; justify-content: center; }
.footer__col { order: 1; display: flex; flex-wrap: wrap; gap: 12px 18px; }
.footer__title { flex-basis: 100%; margin-bottom: 0; }
.footer__col a { margin-bottom: 0; }
.footer__bottom { text-align: center; }
@media (max-width: 720px) {
  .footer__grid, .footer__row { grid-template-columns: 1fr; justify-items: center; justify-content: center; text-align: center; }
  .footer__grid > div:first-child, .footer__col, .footer__nav { justify-content: center; justify-self: center; text-align: center; }
  .footer__col { border-left: 0; padding-left: 0; display: flex; flex-wrap: wrap; gap: 10px 16px; }
  .footer__title { flex-basis: 100%; text-align: center; }
}
/* end footer layout refresh */
