/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(12, 14, 20, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.logo img {
  width: auto;
  height: 22px;
  max-width: 140px;
}

.logo--text span {
  font-weight: 800;
  letter-spacing: 0.04em;
}

.logo--text .logo-accent {
  color: var(--color-accent);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 20px;
}

.nav-desktop a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color var(--transition);
}

.nav-desktop a:hover {
  color: var(--color-text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu-toggle {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--color-text);
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--color-text);
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.nav-mobile {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--color-bg);
  padding: 24px;
  transform: translateX(100%);
  transition: transform var(--transition);
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-mobile.is-open {
  transform: translateX(0);
}

.nav-mobile a {
  padding: 14px 12px;
  border-radius: var(--radius);
  background: var(--color-surface);
  font-weight: 600;
}

@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .nav-mobile {
    display: none;
  }
}

/* Hero — container-aligned, natural aspect (no cover stretch) */
.hero {
  position: relative;
  overflow: hidden;
  width: min(100% - 32px, var(--container));
  max-width: var(--container);
  margin: 12px auto 0;
  height: auto;
  background: var(--color-bg-elevated);
  border-radius: var(--radius);
}

.hero__slides {
  position: relative;
  width: 100%;
  height: auto;
}

.hero__slide {
  position: relative;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 0.5s ease;
  background-color: #0d0d10;
}

.hero__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero__img {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center center;
}

.hero__hit {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding: 40px 0;
}

.hero__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 0.4em;
  color: var(--color-text);
}

.hero__text {
  margin-bottom: 1.25em;
  color: rgba(255, 255, 255, 0.8);
}

.hero__dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.hero__dot.is-active {
  background: var(--color-accent);
  width: 22px;
  border-radius: 999px;
}

/* Intro */
.intro {
  padding: 32px 0 8px;
}

.intro__lead {
  font-size: 1.05rem;
  max-width: 70ch;
}

/* Two-column media sections */
.split {
  display: grid;
  gap: 24px;
  align-items: center;
}

@media (min-width: 768px) {
  .split {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .split--reverse {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .split--reverse .split__media {
    order: -1;
  }
}

.split__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  min-height: 200px;
}

.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
}

/* Promo banner */
.promo-banner {
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, var(--color-accent-soft), transparent 55%),
    var(--color-surface);
  border: 1px solid var(--color-border);
  display: grid;
  gap: 12px;
  align-items: center;
}

@media (min-width: 640px) {
  .promo-banner {
    grid-template-columns: 1fr auto;
  }
}

.promo-banner__title {
  margin: 0 0 4px;
  color: var(--color-text);
}

.promo-banner__text {
  margin: 0;
}

.join-banner {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top, var(--color-accent-soft), transparent 55%),
    var(--color-surface);
  border: 1px solid var(--color-border);
}

.join-banner h2 {
  margin-bottom: 0.4em;
}

.join-banner p {
  margin-bottom: 1.25em;
}

/* Max win card */
.max-win {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  text-align: center;
}

.max-win__label {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.max-win__value {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-accent);
  margin: 8px 0 16px;
}

/* VIP list */
.vip-perks {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.vip-perks li {
  padding: 14px 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.vip-perks strong {
  display: block;
  margin-bottom: 4px;
  color: var(--color-text);
}

.vip-perks span {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* Sports */
.sports-grid {
  display: grid;
  gap: 12px;
}

@media (min-width: 640px) {
  .sports-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .sports-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sport-card {
  padding: 14px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.sport-card__time {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sport-card__live {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.sport-card__match {
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-text);
}

.sport-card__odds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.odd {
  text-align: center;
  padding: 8px 4px;
  background: var(--color-bg);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
}

.odd span {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: 2px;
}

/* Footer */
.site-footer {
  padding: 48px 0 100px;
  background: #080a10;
  border-top: 1px solid var(--color-border);
}

.footer-grid {
  display: grid;
  gap: 28px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
  }
}

.footer-col h4 {
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.footer-col a,
.footer-col p {
  display: block;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.footer-col a:hover {
  color: var(--color-text);
}

.footer-disclaimer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.footer-badges img {
  height: 28px;
  width: auto;
  display: block;
  opacity: 0.9;
}

.footer-badges img[alt="18+"] {
  height: 36px;
}

.hero__slide {
  background-color: #0d0d10;
}

.max-win__value {
  color: var(--color-accent);
}

.link-all {
  color: var(--color-accent);
}

.badge-18 {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  font-weight: 800;
  font-size: 0.85rem;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.payment-icons span {
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

/* Sticky mobile bottom bar */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(12, 14, 20, 0.96);
  border-top: 1px solid var(--color-border);
  backdrop-filter: blur(8px);
}

.mobile-bar a {
  display: grid;
  place-items: center;
  gap: 4px;
  padding: 10px 4px 12px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-align: center;
}

.mobile-bar a:hover,
.mobile-bar a.is-active {
  color: var(--color-text);
}

@media (min-width: 900px) {
  .mobile-bar {
    display: none;
  }

  .site-footer {
    padding-bottom: 48px;
  }
}

/* Floating bonus */
.float-bonus {
  position: fixed;
  right: 16px;
  bottom: 80px;
  z-index: 95;
  width: min(240px, calc(100vw - 32px));
  padding: 16px;
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.float-bonus.is-hidden {
  display: none;
}

.float-bonus__close {
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 1.1rem;
  color: var(--color-text-muted);
}

.float-bonus__label {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.float-bonus__value {
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--color-text);
}

@media (min-width: 900px) {
  .float-bonus {
    bottom: 24px;
  }
}

body.nav-open {
  overflow: hidden;
}
