:root {
  --bg: #100C1A;
  --bg-hero: #171025;
  --bg-section: #211633;
  --surface: #2B1D3B;
  --surface-hover: #39254A;
  --accent: #F0A07E;
  --accent-hover: #D47D66;
  --accent-muted: #A86C86;
  --accent-secondary: #7A5FA3;
  --text-main: #F6EDF1;
  --text-muted: #B7A8BD;
  --border: #463154;
  --button-text-dark: #1D1016;
  --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: linear-gradient(180deg, var(--bg) 0%, var(--bg-hero) 48%, var(--bg) 100%);
  color: var(--text-main);
  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;
}

.section {
  padding: 64px 0;
}

.section--alt {
  background: var(--bg-section);
}

.section__eyebrow {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 12px;
  text-align: center;
}

.section__title {
  font-size: 30px;
  margin-bottom: 16px;
  color: var(--text-main);
  text-align: center;
}

.section__lead {
  color: var(--text-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 26px;
  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(--accent) 0%, var(--accent-hover) 100%);
  color: var(--button-text-dark);
}

.btn--primary:hover {
  background: var(--accent-hover);
}

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

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(16, 12, 26, 0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(6px);
}

.header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}

.header .container {
  padding-left: 20px;
  padding-right: 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: 150px;
  height: auto;
  display: block;
}

.header__nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.header__nav a {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
}

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

.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(--text-main);
}

.hero {
  padding: 64px 0 40px;
  background: radial-gradient(circle at 72% 22%, rgba(240, 160, 126, 0.24), transparent 38%), linear-gradient(135deg, var(--bg) 0%, var(--bg-section) 100%);
}

.hero__row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.hero__title {
  font-size: 42px;
  line-height: 1.14;
  margin-bottom: 16px;
  color: var(--text-main);
}

.hero__title span {
  color: var(--accent);
}

.hero__subtitle {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 480px;
  margin-bottom: 26px;
}

.hero__actions {
  margin-bottom: 30px;
}

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

.hero__stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
}

.hero__stat-icon {
  color: var(--accent);
  margin: 0 auto 8px;
  display: flex;
  justify-content: center;
}

.hero__stat b {
  display: block;
  font-size: 16px;
  color: var(--text-main);
  margin-bottom: 2px;
}

.hero__stat span {
  font-size: 11px;
  color: var(--text-muted);
}

.hero__art {
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  background: linear-gradient(150deg, var(--surface), var(--bg-hero));
  background-image: url("../img/banners/hero-1.webp");
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
  box-shadow: 0 30px 55px rgba(0, 0, 0, 0.45);
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.slot-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

.slot-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.slot-card__body {
  padding: 12px 14px 16px;
}

.slot-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
}

.slot-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 12, 26, 0.68);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.slot-card:hover .slot-card__overlay {
  opacity: 1;
}

.slot-card__btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: var(--button-text-dark);
}

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

.offer-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}

.offer-tile__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.offer-tile__value {
  font-family: var(--font-base);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 10px;
}

.offer-tile__text {
  font-size: 13px;
  color: var(--text-muted);
}

.about {
  background: var(--bg-hero);
}

.about__content {
  max-width: 100%;
}

.about h2 {
  font-size: 28px;
  margin-bottom: 18px;
  color: var(--accent);
}

.about h3 {
  font-size: 19px;
  margin-top: 26px;
  margin-bottom: 10px;
  color: var(--text-main);
}

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

.about ul {
  color: var(--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(--accent);
}

.closing-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, var(--surface-hover) 0%, var(--accent-muted) 120%);
  border-radius: 18px;
  padding: 30px 34px;
}

.closing-banner__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(16, 12, 26, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  flex-shrink: 0;
}

.closing-banner__text {
  flex: 1 1 260px;
}

.closing-banner__text h3 {
  font-size: 20px;
  color: var(--text-main);
  margin-bottom: 4px;
}

.closing-banner__text p {
  font-size: 14px;
  color: var(--text-muted);
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface);
}

.faq-item__q {
  padding: 18px 22px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-main);
}

.faq-item__q .chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  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(--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(--border);
  padding: 50px 0 30px;
  background: var(--bg-section);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr auto;
  gap: 30px;
  margin-bottom: 34px;
  align-items: start;
}

.footer__brand {
  color: var(--text-muted);
  font-size: 14px;
  max-width: 260px;
  margin-top: 14px;
}

.footer__title {
  font-size: 14px;
  margin-bottom: 14px;
  color: var(--accent);
  font-weight: 700;
}

.footer__col a {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.footer__col a:hover {
  color: var(--accent);
}

.footer__pay {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  max-width: 180px;
}

.footer__pay span {
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 11px;
  color: var(--text-muted);
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 18px;
  font-size: 12px;
  color: var(--text-muted);
}

@media (max-width: 960px) {
  .hero__row {
    grid-template-columns: 1fr;
  }

  .hero__stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 2px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 8px 20px 16px;
  }

  .header__nav.is-open {
    display: flex;
  }

  .header__nav a {
    padding: 10px 0;
    border-bottom: 1px solid var(--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;
  }

  .hero__stats, .slots-grid, .offers-grid, .footer__grid {
    grid-template-columns: 1fr;
  }

  .header__row {
    padding: 14px 0;
  }

  .header__actions .btn {
    padding: 10px 14px;
    font-size: 13px;
  }
}
