/* review-1 — кастомизации поверх базового style.css */

body {
  overflow-x: clip;
}

.section-title {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  color: #f5f5f5;
}

.nav__list {
  align-items: center;
}

.nav__item {
  display: flex;
  align-items: center;
}

.deposit-method__title,
.bonus-card__type {
  font-weight: 600;
}

.deposit-method__logos img {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

/* CTA banner */
.cta-banner {
  padding: 20px 0 0;
}

.cta-banner__inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  border-radius: 18px;
  border: 1px solid rgba(255, 204, 77, 0.35);
  background:
    radial-gradient(circle at top left, rgba(79, 70, 229, 0.35), transparent 55%),
    radial-gradient(circle at bottom right, rgba(249, 115, 22, 0.25), transparent 50%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(5, 8, 20, 0.98));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.cta-banner__content {
  flex: 1 1 auto;
  min-width: 0;
}

.cta-banner__label {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffcc4d;
}

.cta-banner__title {
  margin: 0 0 8px;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.cta-banner__text {
  margin: 0 0 16px;
  max-width: 560px;
  font-size: 14px;
  line-height: 1.5;
  color: #d6d7e0;
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}

.cta-banner__btn {
  font-size: 14px;
  padding: 10px 22px;
}

.cta-banner__note {
  margin: 0;
  font-size: 12px;
  color: #9fa3c0;
}

.cta-banner__perks {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cta-banner__perk {
  position: relative;
  padding: 8px 14px 8px 28px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: #f5f5f5;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.35);
  white-space: nowrap;
}

.cta-banner__perk::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #ff7a18, #ffcc4d);
}

/* Rating table — 7 колонок */
.rating-table--cards .rating-table__row {
  grid-template-columns: 40px 72px 1.1fr 0.9fr 1.3fr 1.1fr 110px;
}

/* Bonus carousel */
.bonus-carousel {
  position: relative;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  min-width: 0;
  overflow: hidden;
  padding-top: 44px;
}

.bonus-carousel__controls {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.bonus-carousel__track {
  width: 100%;
  min-width: 0;
  padding: 20px 10px;
  overflow-x: auto;
}

.bonus-card {
  flex: 1 0 260px;
}

/* Slots — фон + overlay */
.slots-list {
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}

.slots-list__item {
  position: relative;
  aspect-ratio: 1;
  min-height: 150px;
}

.slots-list__link {
  position: absolute;
  inset: 0;
  display: block;
  padding: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: #0f172a;
}

.slots-list__thumb {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slots-list__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  text-align: center;
  background: rgba(5, 8, 20, 0.72);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.slots-list__link:hover .slots-list__overlay,
.slots-list__link:focus-visible .slots-list__overlay {
  opacity: 1;
}

.slots-list__name {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.slots-list__play {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #050814;
  background: linear-gradient(135deg, #ffcc4d, #ff7a18);
  text-decoration: none;
}

/* FAQ */
.faq {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  border: none;
  background: transparent;
}

.faq-item {
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.25), rgba(15, 23, 42, 0.95));
  overflow: hidden;
}

.faq-item + .faq-item {
  border-top: none;
}

@media (max-width: 720px) {
  .cta-banner {
    padding-top: 16px;
  }

  .cta-banner__inner {
    flex-direction: column;
    padding: 18px 16px;
  }

  .cta-banner__content {
    flex: 1 1 auto;
    min-width: 0;
    text-align: center;
  }

  .cta-banner__actions {
    flex-direction: column;
  }

  .cta-banner__perks {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cta-banner__perk {
    white-space: normal;
  }

  .hero.rv-tpm-intro {
    padding-top: 28px;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .bonus-card {
    flex: 0 0 calc(100% - 20px);
  }
}
