:root {
  --color-bg: #080D0F;
  --color-bg-soft: #10171A;
  --color-card: #151D1F;
  --color-green-dark: #1C2F18;
  --color-green: #6E8B32;
  --color-gold: #D3B46A;
  --color-heading: #E8D9B2;
  --color-text: #D7D1C1;
  --color-muted: #8D9187;
  --color-border: #2F3428;
  --font-ui: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(180deg, #080D0F 0%, #10171A 48%, #080D0F 100%);
  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;
}

.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__eyebrow {
  color: var(--color-green);
  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-heading);
  text-align: center;
}

.section__title--left {
  text-align: left;
}

.section__lead {
  color: var(--color-muted);
  max-width: 640px;
  margin: 0 auto 36px;
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn--green {
  background: linear-gradient(180deg, #7D9B3B 0%, #526D25 100%);
  color: #F2E7C8;
}

.btn--green:hover {
  background: var(--color-green);
}

.btn--gold {
  background: var(--color-gold);
  color: #1C1A12;
}

.btn--gold:hover {
  background: #E5C87E;
}

.btn--ghost {
  background: transparent;
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.btn--ghost:hover {
  border-color: var(--color-heading);
  color: var(--color-heading);
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 13, 15, 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: 10px;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 17px;
  flex-shrink: 0;
}

.header__logo-text {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-heading);
  line-height: 1.2;
}

.header__logo-text span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-green);
}

.header__nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.header__nav a {
  font-size: 14px;
  color: var(--color-muted);
}

.header__nav a:hover {
  color: var(--color-heading);
}

.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 {
  position: relative;
  overflow: hidden;
}

.hero__slide {
  display: none;
  padding: 72px 0;
  background-size: cover;
  background-position: center;
  min-height: 460px;
}

.hero__slide.is-active {
  display: block;
}

.hero__slide--1 {
  background-image: linear-gradient(90deg, rgba(8, 13, 15, 0.95) 0%, rgba(8, 13, 15, 0.75) 52%, rgba(8, 13, 15, 0.4) 100%), url("../img/banners/hero-1.webp");
}

.hero__slide--2 {
  background-image: linear-gradient(90deg, rgba(8, 13, 15, 0.95) 0%, rgba(8, 13, 15, 0.75) 52%, rgba(8, 13, 15, 0.4) 100%), url("../img/banners/hero-2.webp");
}

.hero__slide--3 {
  background-image: linear-gradient(90deg, rgba(8, 13, 15, 0.95) 0%, rgba(8, 13, 15, 0.75) 52%, rgba(8, 13, 15, 0.4) 100%), url("../img/banners/hero-3.webp");
}

.hero__row {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero__badge {
  display: inline-block;
  border: 1px solid var(--color-green);
  border-radius: 999px;
  color: var(--color-green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  margin-bottom: 18px;
}

.hero__title {
  font-size: 44px;
  line-height: 1.14;
  margin-bottom: 20px;
  color: var(--color-heading);
  font-weight: 800;
}

.hero__title span {
  color: var(--color-green);
}

.hero__subtitle {
  color: var(--color-muted);
  font-size: 17px;
  max-width: 520px;
  margin-bottom: 30px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--color-gold);
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.hero__dot.is-active {
  background: var(--color-gold);
}

.promo-card {
  background: linear-gradient(145deg, #1C2F18 0%, #0D1711 100%);
  border: 1px solid var(--color-green);
  border-radius: 16px;
  padding: 34px 30px;
  text-align: center;
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.5);
}

.promo-card__label {
  color: var(--color-muted);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.promo-card__value {
  font-size: 46px;
  font-weight: 800;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 18px;
}

.promo-card__list {
  display: grid;
  gap: 10px;
  text-align: left;
  margin-bottom: 24px;
}

.promo-card__list li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--color-text);
  font-size: 14px;
}

.promo-card__list svg {
  color: var(--color-green);
  flex-shrink: 0;
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.trust-card {
  background: linear-gradient(145deg, #151D1F 0%, #10171A 100%);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.trust-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--color-green);
  color: var(--color-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-card__title {
  font-size: 16px;
  color: var(--color-heading);
  margin-bottom: 6px;
  font-weight: 700;
}

.trust-card__text {
  font-size: 14px;
  color: var(--color-muted);
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.slot-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  overflow: hidden;
}

.slot-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  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-muted);
  margin-bottom: 14px;
}

.slot-card__btn {
  display: block;
  text-align: center;
  padding: 10px 0;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  background: linear-gradient(180deg, #7D9B3B 0%, #526D25 100%);
  color: #F2E7C8;
}

.slot-card__btn:hover {
  background: var(--color-green);
}

.why {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: stretch;
}

.why__panel {
  background: linear-gradient(145deg, #151D1F 0%, #10171A 100%);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 36px;
}

.why__panel h2 {
  font-size: 28px;
  color: var(--color-heading);
  margin-bottom: 16px;
  font-weight: 800;
}

.why__panel p {
  color: var(--color-muted);
  margin-bottom: 22px;
}

.why__list {
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
}

.why__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--color-text);
  font-size: 14px;
}

.why__list svg {
  color: var(--color-green);
  flex-shrink: 0;
  margin-top: 3px;
}

.why__offers {
  display: grid;
  gap: 22px;
}

.offer-tile {
  background: linear-gradient(145deg, #1C2F18 0%, #0D1711 100%);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 12px;
}

.offer-tile__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.offer-tile__title {
  font-size: 15px;
  color: var(--color-muted);
  margin-bottom: 4px;
}

.offer-tile__value {
  font-size: 26px;
  font-weight: 800;
  color: var(--color-gold);
  margin-bottom: 8px;
}

.offer-tile__text {
  font-size: 13px;
  color: var(--color-muted);
}

.about__content {
  background: linear-gradient(145deg, #151D1F 0%, #10171A 100%);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 44px;
}

.about h2 {
  font-size: 30px;
  margin-bottom: 18px;
  color: var(--color-heading);
  font-weight: 800;
}

.about h3 {
  font-size: 19px;
  margin-top: 26px;
  margin-bottom: 10px;
  color: var(--color-gold);
  font-weight: 700;
}

.about p {
  color: var(--color-muted);
  margin-bottom: 14px;
  font-size: 15px;
}

.about ul {
  color: var(--color-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: "\2713";
  position: absolute;
  left: 0;
  color: var(--color-green);
  font-weight: 700;
}

.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-card);
}

.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-green);
  border-bottom: 2px solid var(--color-green);
  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-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: 13px;
  margin-bottom: 14px;
  color: var(--color-gold);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer__col a {
  display: block;
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 10px;
}

.footer__col a:hover {
  color: var(--color-heading);
}

.footer__bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 18px;
  font-size: 12px;
  color: var(--color-muted);
}

@media (max-width: 960px) {
  .hero__row {
    grid-template-columns: 1fr;
  }

  .trust__grid {
    grid-template-columns: 1fr;
  }

  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why {
    grid-template-columns: 1fr;
  }

  .about__content {
    padding: 12px;
  }

  .header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 2px;
    background: var(--color-card);
    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: 30px;
  }

  .promo-card__value {
    font-size: 36px;
  }

  .slots-grid, .footer__grid {
    grid-template-columns: 1fr;
  }

  .header__row {
    padding: 14px 0;
  }

  .header__actions .btn {
    padding: 10px 14px;
    font-size: 13px;
  }
}

.slots-toolbar {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.slots-toolbar button {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  color: var(--color-muted);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
}

.slots-toolbar button.is-active {
  background: linear-gradient(180deg, #7D9B3B 0%, #526D25 100%);
  border-color: transparent;
  color: #F2E7C8;
}

.slot-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 13, 15, 0.62);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.slot-card {
  position: relative;
}

.slot-card:hover .slot-card__overlay {
  opacity: 1;
}

.slot-card__overlay .slot-card__btn {
  display: inline-block;
  padding: 12px 32px;
}

.deals {
  display: grid;
  gap: 16px;
}

.deal {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 24px;
  align-items: center;
  background: linear-gradient(145deg, #151D1F 0%, #10171A 100%);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 24px 28px;
}

.deal__value {
  font-size: 26px;
  font-weight: 800;
  color: var(--color-gold);
}

.deal__name {
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 4px;
}

.deal__text {
  font-size: 13px;
  color: var(--color-muted);
}

.lobby-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.lobby-chip {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: var(--color-card);
  padding: 16px 24px;
  min-width: 170px;
  transition: border-color 0.2s ease;
}

.lobby-chip:hover {
  border-color: var(--color-gold);
}

.lobby-chip b {
  color: var(--color-heading);
  font-size: 15px;
}

.lobby-chip span {
  color: var(--color-muted);
  font-size: 12px;
}

@media (max-width: 960px) {
  .deal {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
/* footer layout refresh */
.footer__grid { grid-template-columns: 1fr; justify-items: stretch; gap: 22px; }
.footer__grid > div:first-child { display: flex; justify-content: center; }
.footer__col { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer__title { 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 */
