:root {
  --color-bg: #04140F;
  --color-bg-alt: #072018;
  --color-card: #0B2B20;
  --color-accent: #B8C4CC;
  --color-accent-hover: #D9E2E8;
  --color-secondary: #3ED9A4;
  --color-text: #EDF2F0;
  --color-muted: #93A8A0;
  --color-border: #1D3A30;
  --radius: 16px;
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  font-size: 16px;
}

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

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  padding: 10px 22px;
}

.btn--accent {
  background: var(--color-accent);
  color: #06231A;
}

.btn--accent:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
}

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

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

.btn--lg {
  padding: 14px 30px;
  font-size: 16px;
}

.btn--sm {
  padding: 8px 18px;
  font-size: 14px;
}

.kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 10px;
}

.kicker--light {
  color: #8FF2CC;
}

.section {
  padding: 84px 0;
}

.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.2;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(4, 20, 15, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  border-radius: 10px;
}

.site-nav {
  display: flex;
  gap: 26px;
}

.site-nav a {
  color: var(--color-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--color-secondary);
}

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

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(4, 20, 15, 0.94) 0%, rgba(4, 20, 15, 0.72) 46%, rgba(4, 20, 15, 0.38) 100%),
    radial-gradient(1200px 600px at 78% 18%, rgba(62, 217, 164, 0.24), transparent 62%),
    linear-gradient(160deg, #07201A 0%, #04140F 58%, #030D0A 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/banners/hero-main.webp") center right / cover no-repeat;
  opacity: 0.1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(2px 2px at 12% 24%, rgba(237, 242, 240, 0.75) 45%, transparent 55%),
    radial-gradient(1.6px 1.6px at 30% 68%, rgba(237, 242, 240, 0.5) 45%, transparent 55%),
    radial-gradient(2px 2px at 46% 18%, rgba(184, 196, 204, 0.6) 45%, transparent 55%),
    radial-gradient(1.4px 1.4px at 62% 52%, rgba(237, 242, 240, 0.42) 45%, transparent 55%),
    radial-gradient(1.8px 1.8px at 78% 76%, rgba(184, 196, 204, 0.55) 45%, transparent 55%),
    radial-gradient(1.4px 1.4px at 90% 30%, rgba(237, 242, 240, 0.48) 45%, transparent 55%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: min(1180px, 92%);
  margin: 0 auto;
  padding: 110px 0;
}

.hero__content {
  max-width: 640px;
}

.hero__badge {
  display: inline-block;
  background: rgba(62, 217, 164, 0.12);
  border: 1px solid rgba(62, 217, 164, 0.45);
  color: #8FF2CC;
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.55);
}

.hero__sub {
  color: var(--color-muted);
  font-size: 18px;
  max-width: 560px;
  margin-bottom: 30px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 38px;
}

.hero__pluses {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
  max-width: 560px;
}

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

.plus-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(62, 217, 164, 0.12);
  border: 1px solid rgba(62, 217, 164, 0.35);
  color: var(--color-secondary);
  flex-shrink: 0;
}

.slots {
  background: var(--color-bg);
}

.slots-nav {
  display: flex;
  gap: 10px;
}

.slots-nav__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-card);
  color: var(--color-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.slots-nav__btn:hover {
  border-color: var(--color-secondary);
  color: var(--color-secondary);
}

.slots-nav__btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.slots__hint {
  color: var(--color-muted);
  font-size: 14px;
  margin-bottom: 18px;
}

.slots-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 4px 20px;
  scrollbar-width: none;
}

.slots-track::-webkit-scrollbar {
  display: none;
}

.slot-card {
  scroll-snap-align: start;
  flex: 0 0 258px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.slot-card:hover {
  border-color: rgba(62, 217, 164, 0.55);
  transform: translateY(-4px);
}

.slot-card__media {
  aspect-ratio: 4 / 3;
  background: #061A13;
}

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

.slot-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-grow: 1;
}

.slot-card__name {
  font-weight: 700;
  font-size: 15.5px;
  line-height: 1.35;
}

.slot-card__prov {
  color: var(--color-muted);
  font-size: 13px;
  margin-bottom: 8px;
}

.slot-card__body .btn {
  margin-top: auto;
  align-self: flex-start;
}

.tournament {
  position: relative;
  background:
    linear-gradient(100deg, rgba(4, 20, 15, 0.96) 0%, rgba(6, 29, 22, 0.88) 55%, rgba(6, 29, 22, 0.66) 100%),
    radial-gradient(900px 420px at 82% 30%, rgba(62, 217, 164, 0.2), transparent 60%),
    var(--color-bg-alt);
  overflow: hidden;
}

.tournament::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/banners/tournament-bg.webp") center right / cover no-repeat;
  opacity: 0.5;
}

.tournament__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.tournament__desc {
  color: var(--color-muted);
  font-size: 17px;
  margin: 16px 0 24px;
  max-width: 520px;
}

.tournament__promo {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  border: 1px dashed rgba(62, 217, 164, 0.5);
  background: rgba(62, 217, 164, 0.07);
  border-radius: 12px;
  padding: 12px 18px;
  margin-bottom: 26px;
}

.tournament__promo-label {
  color: var(--color-muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.tournament__promo-code {
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--color-secondary);
}

.tournament__promo-note {
  color: var(--color-muted);
  font-size: 14px;
}

.tournament__panel {
  background: rgba(11, 43, 32, 0.82);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 30px 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.tournament__panel-title {
  font-weight: 700;
  color: var(--color-muted);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
  margin-bottom: 18px;
}

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

.countdown__cell {
  background: rgba(4, 20, 15, 0.65);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 14px 6px;
  text-align: center;
}

.countdown__num {
  display: block;
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 900;
  color: var(--color-accent);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}

.countdown__label {
  display: block;
  font-size: 12px;
  color: var(--color-muted);
  text-transform: lowercase;
  margin-top: 4px;
}

.tournament__facts {
  list-style: none;
  display: grid;
  gap: 10px;
}

.tournament__facts li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 10px;
  font-size: 15px;
}

.tournament__facts span {
  color: var(--color-muted);
}

.tournament__facts strong {
  color: var(--color-secondary);
  font-size: 17px;
  white-space: nowrap;
}

.vip {
  background: var(--color-bg);
}

.vip__note {
  color: var(--color-muted);
  max-width: 620px;
  margin-bottom: 30px;
}

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

.vip-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vip-card--mid {
  border-color: rgba(184, 196, 204, 0.4);
}

.vip-card--top {
  border-color: rgba(62, 217, 164, 0.55);
  background: linear-gradient(170deg, rgba(62, 217, 164, 0.1), var(--color-card) 55%);
}

.vip-card__ico {
  color: var(--color-secondary);
  margin-bottom: 10px;
}

.vip-card--mid .vip-card__ico {
  color: var(--color-accent);
}

.vip-card__title {
  font-size: 21px;
  font-weight: 800;
}

.vip-card__tag {
  color: var(--color-muted);
  font-size: 13.5px;
  margin-bottom: 12px;
}

.vip-card__list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.vip-card__list li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  color: var(--color-text);
}

.vip-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-secondary);
}

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

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

.review-card {
  background: rgba(11, 43, 32, 0.55);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-card__stars {
  display: flex;
  gap: 4px;
  color: var(--color-secondary);
}

.review-card__stars svg:last-child {
  color: rgba(62, 217, 164, 0.35);
}

.review-card__text {
  font-size: 15px;
  flex-grow: 1;
}

.review-card__meta {
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 600;
}

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

.about__inner {
  max-width: 860px;
}

.about h2 {
  margin-bottom: 18px;
}

.about p {
  color: var(--color-muted);
  margin-bottom: 16px;
}

.about p:first-of-type {
  font-size: 17.5px;
  color: var(--color-text);
}

.about h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 34px 0 14px;
  color: var(--color-text);
}

.about ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 6px 0 10px;
}

.about ul li {
  position: relative;
  padding-left: 26px;
  color: var(--color-muted);
}

.about ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  transform: rotate(45deg);
  background: rgba(62, 217, 164, 0.75);
}

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

.faq__inner {
  max-width: 860px;
}

.faq__inner h2 {
  margin-bottom: 26px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: rgba(11, 43, 32, 0.55);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 4px 22px;
  transition: border-color 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(62, 217, 164, 0.5);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 46px 18px 0;
  font-weight: 700;
  font-size: 16.5px;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before,
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 50%;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-secondary);
  transition: transform 0.25s ease;
}

.faq-item summary::before {
  transform: translateY(-50%) rotate(90deg);
}

.faq-item summary::after {
  transform: translateY(-50%);
}

.faq-item[open] summary::before {
  transform: translateY(-50%) rotate(0deg);
}

.faq-item p {
  color: var(--color-muted);
  padding-bottom: 20px;
  font-size: 15px;
}

.site-footer {
  background: #030D0A;
  border-top: 1px solid var(--color-border);
  padding: 54px 0 30px;
}

.site-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

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

.site-footer__nav a {
  color: var(--color-muted);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 600;
}

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

.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--color-border);
}

.site-footer__title {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--color-text);
}

.site-footer__col p {
  color: var(--color-muted);
  font-size: 14px;
}

.site-footer__bottom {
  padding-top: 22px;
  color: var(--color-muted);
  font-size: 13.5px;
}

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

  .vip-grid,
  .reviews-grid,
  .site-footer__cols {
    grid-template-columns: repeat(2, 1fr);
  }

  .slot-card {
    flex: 0 0 240px;
  }
}

@media (max-width: 760px) {
  .site-nav {
    display: none;
  }

  .section {
    padding: 60px 0;
  }

  .hero__inner {
    padding: 80px 0;
  }

  .hero__pluses {
    grid-template-columns: 1fr;
  }

  .section__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

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

@media (max-width: 560px) {
  .vip-grid,
  .reviews-grid,
  .site-footer__cols,
  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .site-header__actions .btn--ghost {
    display: none;
  }

  .slot-card {
    flex: 0 0 78%;
  }
}
