/**
 * RajSlot — обновлённая тёмная тема (настроение: reg.ru: чистота, воздух, стекло).
 * Подключается после main.css; шрифт Manrope — отдельной ссылкой в base.html.
 */

html,
body {
  --background-color: #0b0e14;
  --border-color: #1c2333;
  --text-color: #f1f5f9;
  --accent-color: #6366f1;
  --accent-hover: #818cf8;
  --surface-elevated: rgba(22, 28, 42, 0.85);
  --surface-input: rgba(0, 0, 0, 0.28);
  --ring-glow: rgba(99, 102, 241, 0.45);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text-color);
  background-color: #0b0e14;
  background-image:
    radial-gradient(ellipse 130% 70% at 50% -25%, rgba(99, 102, 241, 0.2), transparent 55%),
    radial-gradient(ellipse 90% 55% at 100% 20%, rgba(34, 211, 238, 0.07), transparent 50%),
    radial-gradient(ellipse 70% 50% at 0% 90%, rgba(99, 102, 241, 0.09), transparent 55%);
  background-attachment: fixed;
}

::selection {
  background: rgba(99, 102, 241, 0.35);
  color: #fff;
}

::-moz-selection {
  background: rgba(99, 102, 241, 0.35);
  color: #fff;
}

body::-webkit-scrollbar-track {
  background: #121826;
}

body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #4f46e5, #6366f1);
  border-radius: 8px;
  border: 3px solid #121826;
}

/* ——— Шапка ——— */
.header {
  height: 70px;
  background: rgba(11, 14, 20, 0.78) !important;
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.header__content {
  height: 70px;
}

.header__search {
  background-color: rgba(11, 14, 20, 0.95) !important;
  border-bottom-color: rgba(255, 255, 255, 0.06) !important;
}

.header__search input {
  background: var(--surface-input) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 12px !important;
}

@media (min-width: 1200px) {
  .header__nav-item {
    height: 70px;
    margin-left: 8px;
  }

  .header__nav-item a {
    color: #e2e8f0 !important;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -0.02em;
    padding: 9px 16px;
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  }

  .header__nav-item a:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.07);
  }

  .header__nav-link {
    color: #94a3b8 !important;
  }

  .header__nav-link:hover {
    color: #fff !important;
  }
}

.header__action-btn--signin {
  border-radius: 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 4px 16px var(--ring-glow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease !important;
}

.header__action-btn--signin:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(99, 102, 241, 0.4);
  background: linear-gradient(135deg, var(--accent-hover) 0%, #6366f1 100%) !important;
}

.header__action-btn--profile {
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.header__action-btn--profile:hover {
  filter: brightness(1.08);
}

/* Баланс: дропдаун из header.html */
header.header .dropdown-toggle {
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 12px !important;
  font-family: "Manrope", "Inter", sans-serif !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 14px var(--ring-glow);
}

header.header .dropdown-toggle:hover {
  background: linear-gradient(135deg, #818cf8 0%, #6366f1 100%) !important;
}

header.header .balance-dropdown-menu {
  background: rgba(17, 22, 34, 0.96) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 14px !important;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45) !important;
  padding: 8px 0 !important;
}

header.header .dropdown-item {
  border-radius: 8px;
  margin: 0 6px;
  width: calc(100% - 12px);
  color: #cbd5e1 !important;
}

header.header .dropdown-item:hover {
  background: rgba(99, 102, 241, 0.12) !important;
  color: #fff !important;
}

/* Мобильное меню */
@media (max-width: 1199px) {
  .header__menu {
    background: rgba(11, 14, 20, 0.97) !important;
    backdrop-filter: blur(12px);
    border-left: 1px solid rgba(255, 255, 255, 0.06);
  }
}

/* Нижняя навигация (вне header — иначе fixed привязывается к шапке с backdrop-filter) */
.mobile-footer {
  position: fixed !important;
  bottom: 0 !important;
  top: auto !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 1000;
  height: 58px;
  background: rgba(11, 14, 20, 0.92) !important;
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
}

/* iOS safe area */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .mobile-footer {
    padding-bottom: env(safe-area-inset-bottom);
    height: calc(58px + env(safe-area-inset-bottom));
  }
}

.mobile-footer__nav-item a {
  font-family: "Manrope", "Inter", sans-serif;
  font-weight: 500;
  font-size: 11px;
  color: #94a3b8 !important;
}

.mobile-footer__nav-item.active .nav-icon,
.mobile-footer__nav-item.active .nav-icon .hover-element,
.mobile-footer__nav-item:hover .nav-icon .hover-element {
  fill: #6366f1 !important;
}

/* ——— Контент ——— */
.main {
  padding-bottom: 72px;
}

@media (min-width: 769px) {
  .main {
    padding-bottom: 60px;
  }
}

.main__title h1,
.main__title h2,
.main__title h3 {
  font-family: "Manrope", "Inter", sans-serif;
  letter-spacing: -0.03em;
}

/* Фильтр игр */
.main__filter {
  margin-top: 24px;
  padding: 18px 20px 14px;
  background: var(--surface-elevated) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 18px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
}

.main__filter-search input {
  background: var(--surface-input) !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  border-radius: 12px !important;
  font-family: "Manrope", "Inter", sans-serif !important;
}

/* Hero */
.hero {
  margin-top: 24px;
}

.hero .owl-stage-outer {
  border-radius: 20px !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero__slide {
  border-radius: 20px !important;
}

.hero .owl-dot span {
  border-radius: 4px !important;
  opacity: 0.5;
}

.hero .owl-dot.active span {
  opacity: 1;
  box-shadow: 0 0 12px var(--ring-glow);
}

.hero__btn {
  border-radius: 12px !important;
  font-family: "Manrope", "Inter", sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em;
}

.hero__btn--clr {
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 4px 20px var(--ring-glow);
}

.hero__btn--clr:hover {
  color: #fff !important;
  filter: brightness(1.05);
}

/* Карточки игр */
.card {
  margin-top: 18px;
  border-radius: 18px !important;
  background: linear-gradient(
    155deg,
    rgba(28, 35, 51, 0.95) 0%,
    rgba(14, 17, 26, 0.98) 100%
  ) !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(99, 102, 241, 0.55) !important;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(99, 102, 241, 0.2);
}

.card__title,
.card__title a {
  font-family: "Manrope", "Inter", sans-serif !important;
  font-weight: 600 !important;
  font-size: 13px !important;
}

/* Пагинация */
.paginator {
  border-radius: 18px !important;
  background: var(--surface-elevated) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.paginator__list a {
  border-radius: 12px !important;
  background: rgba(0, 0, 0, 0.25) !important;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.paginator__list li.active a {
  background: rgba(99, 102, 241, 0.25) !important;
  border-color: rgba(99, 102, 241, 0.4);
}

/* Лоадер сетки */
.games-loader {
  backdrop-filter: blur(8px) !important;
  background: radial-gradient(
    ellipse at center,
    rgba(11, 14, 20, 0.65) 0%,
    rgba(11, 14, 20, 0.35) 50%,
    transparent 85%
  ) !important;
}

.spinner {
  border-color: rgba(255, 255, 255, 0.12) !important;
  border-top-color: var(--accent-color) !important;
}

/* Select2 */
.select2-dropdown {
  background: rgba(20, 26, 40, 0.98) !important;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4) !important;
  border-radius: 14px !important;
}

/* Футер */
.footer {
  background: linear-gradient(180deg, #0d1018 0%, #07080c 100%) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px 0 28px !important;
}

.footer__tagline {
  color: #94a3b8 !important;
  line-height: 1.65 !important;
  max-width: 52ch;
}

.footer__links a {
  font-family: "Manrope", "Inter", sans-serif;
  font-weight: 500;
  border-radius: 8px;
  padding: 4px 0;
}

.footer__social a svg {
  transition: transform 0.2s ease, fill 0.2s ease;
}

.footer__social a:hover svg {
  transform: scale(1.08);
}

.footer__content {
  border-top-color: rgba(255, 255, 255, 0.06) !important;
}

.footer__copyright {
  color: #64748b !important;
}

/* Формы входа / регистрация */
.sign__form {
  border-radius: 20px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  background: var(--surface-elevated) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.sign__title {
  font-family: "Manrope", "Inter", sans-serif !important;
  letter-spacing: -0.02em;
}

.sign__input,
.sign__select {
  background: var(--surface-input) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 12px !important;
}

.sign__btn {
  border-radius: 12px !important;
  font-family: "Manrope", "Inter", sans-serif !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 16px var(--ring-glow);
}

/* Вход / регистрация — компактный вид на телефонах (375–430px и меньше) */
@media (max-width: 576px) {
  .main .sign__content {
    padding: 8px 0 4px !important;
    align-items: stretch !important;
  }

  .main .sign__form {
    max-width: min(100%, 400px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 18px 14px 16px !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.28) !important;
  }

  .main .sign__logo {
    margin-bottom: 16px !important;
  }

  .main .sign__logo img {
    height: 34px !important;
    width: auto !important;
  }

  .main .sign__group {
    margin-bottom: 11px !important;
  }

  .main .sign__input,
  .main .sign__select {
    height: 44px !important;
    padding: 0 13px !important;
    font-size: 16px !important; /* ≥16px — без авто-зума в iOS Safari */
    border-radius: 10px !important;
  }

  .main .sign__group--checkbox input:not(:checked) + label,
  .main .sign__group--checkbox input:checked + label {
    font-size: 12px !important;
    line-height: 18px !important;
    padding-left: 28px !important;
  }

  .main .sign__group--checkbox input:not(:checked) + label:before,
  .main .sign__group--checkbox input:checked + label:before,
  .main .sign__group--checkbox input:not(:checked) + label:after,
  .main .sign__group--checkbox input:checked + label:after {
    width: 18px !important;
    height: 18px !important;
  }

  .main .sign__btn {
    height: 44px !important;
    margin: 8px auto 6px !important;
    font-size: 12px !important;
    letter-spacing: 0.06em !important;
    border-radius: 10px !important;
    box-shadow: 0 3px 12px var(--ring-glow) !important;
  }

  .main .sign__text {
    font-size: 12px !important;
    line-height: 18px !important;
    margin-top: 8px !important;
  }

  .main .sign__delimiter {
    font-size: 12px !important;
    margin: 6px 0 !important;
  }

  .password-group .eye-wrapper {
    right: 11px !important;
    width: 22px !important;
    height: 22px !important;
  }
}

@media (max-width: 360px) {
  .main .sign__form {
    padding: 14px 11px 14px !important;
    border-radius: 14px !important;
  }

  .main .sign__logo img {
    height: 30px !important;
  }

  .main .sign__group {
    margin-bottom: 9px !important;
  }
}

/* Тосты */
.toast-container .toast,
#toastContainer .toast {
  border-radius: 14px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35) !important;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .header__action-btn--signin:hover,
  .card:hover {
    transform: none;
  }
}

/* ——— Кошелёк / модалки (перекрывают локальные <style> страниц) ——— */
.method-tile {
  background: rgba(22, 28, 42, 0.8) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 14px !important;
  font-family: "Manrope", "Inter", sans-serif !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.method-tile:hover {
  background: rgba(30, 38, 58, 0.9) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
}

.method-tile.active {
  border-color: rgba(99, 102, 241, 0.65) !important;
  background: rgba(99, 102, 241, 0.12) !important;
  box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.25);
}

.modal-content {
  background: rgba(17, 22, 34, 0.96) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 18px !important;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45) !important;
}

/*
 * #bonusSuccessModal: в main.css у .modal стоит display:block — без этого блока
 * модалка оказывается в потоке и выглядит как пустая «карточка» под контентом.
 */
#bonusSuccessModal {
  display: none !important;
  position: fixed !important;
  inset: 0;
  z-index: 2000;
  margin: 0 !important;
  max-width: none !important;
  width: 100% !important;
  height: 100% !important;
  padding: 0 !important;
  border-radius: 0 !important;
  overflow: auto !important;
  background: rgba(0, 0, 0, 0.6) !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
}

#bonusSuccessModal.show {
  display: flex !important;
}

#bonusSuccessModal .modal-content {
  margin: 1.5rem;
  width: calc(100% - 3rem);
  max-width: 420px;
}

/* ——— Бонусы ——— */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.bonus-page {
  padding-bottom: 1.5rem;
}

.bonus-list {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .bonus-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .bonus-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bonus-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 1.25rem 1.35rem 1.35rem;
  border-radius: 20px;
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  color: var(--text-color);
  background:
    linear-gradient(
      155deg,
      rgba(30, 36, 54, 0.92) 0%,
      rgba(14, 17, 26, 0.96) 48%,
      rgba(12, 15, 24, 0.98) 100%
    );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 20px 48px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  isolation: isolate;
}

.bonus-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(99, 102, 241, 0.85) 35%,
    rgba(129, 140, 248, 0.65) 65%,
    transparent
  );
  opacity: 0.95;
  pointer-events: none;
}

.bonus-card--promo::before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(34, 211, 238, 0.5) 40%,
    rgba(99, 102, 241, 0.6) 60%,
    transparent
  );
}

.bonus-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.bonus-card__title {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: #f8fafc;
}

.bonus-card__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.bonus-card__notice {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.bonus-card__notice-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.22);
  color: #a5b4fc;
}

.bonus-card__notice-icon svg {
  width: 18px;
  height: 18px;
  opacity: 0.95;
}

.bonus-card__description {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #94a3b8;
  font-weight: 500;
}

.bonus-card__stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(7.5rem, 1fr));
  gap: 0.65rem;
  margin: 0;
}

.bonus-card__stat {
  margin: 0;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.bonus-card__stat dt,
.bonus-card__stat dd {
  margin: 0;
}

.bonus-card__stat-label {
  margin: 0 0 0.2rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

.bonus-card__stat-value {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #e2e8f0;
  letter-spacing: -0.02em;
}

/* Переключатель Вкл / Выкл */
.bonus-card .toggle-switch {
  flex-shrink: 0;
  width: 108px;
  height: 34px;
  user-select: none;
}

.bonus-card .toggle-track {
  display: flex;
  position: relative;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) inset;
}

.bonus-card .toggle-option {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #64748b;
  z-index: 1;
  position: relative;
  cursor: pointer;
  transition: color 0.22s ease;
}

.bonus-card .toggle-track.active .toggle-option[data-value="on"] {
  color: #fff;
}

.bonus-card .toggle-track:not(.active) .toggle-option[data-value="off"] {
  color: #fff;
}

.bonus-card .toggle-track.active .toggle-option[data-value="off"] {
  color: #64748b;
}

.bonus-card .toggle-track:not(.active) .toggle-option[data-value="on"] {
  color: #64748b;
}

.bonus-card .toggle-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(50% - 4px);
  height: calc(100% - 4px);
  background: linear-gradient(145deg, #6366f1, #4f46e5);
  border-radius: 999px;
  transition: transform 0.28s cubic-bezier(0.32, 0.72, 0, 1);
  z-index: 0;
  box-shadow: 0 2px 12px rgba(99, 102, 241, 0.45);
  transform: translateX(calc(100% + 4px));
}

.bonus-card .toggle-track.active .toggle-slider {
  transform: translateX(0);
}

/* Промокод — та же сетка карточки */
.bonus-card--promo .bonus-card__header {
  margin-bottom: 0.85rem;
}

.bonus-card--promo .bonus-card__field {
  width: 100%;
}

.bonus-card--promo input {
  width: 100%;
  height: 48px;
  padding: 0 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: rgba(0, 0, 0, 0.28) !important;
  color: #f1f5f9 !important;
  font-family: "Manrope", "Inter", sans-serif !important;
  font-size: 0.9375rem !important;
  font-weight: 600;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bonus-card--promo input::placeholder {
  color: #64748b;
}

.bonus-card--promo input:focus {
  border-color: rgba(99, 102, 241, 0.55) !important;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.bonus-card--promo .bonus-card__error:empty {
  display: none;
}

.bonus-card--promo .bonus-card__error:not(:empty) {
  min-height: 1.25rem;
  font-size: 0.8125rem;
  color: #f87171;
  font-weight: 500;
}

.bonus-card--promo .submit-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.6rem 1.5rem;
  margin-top: 0.25rem;
  border: none;
  border-radius: 12px;
  background: linear-gradient(145deg, #6366f1, #4f46e5) !important;
  color: #fff !important;
  font-family: "Manrope", "Inter", sans-serif !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.bonus-card--promo .submit-button:hover {
  filter: brightness(1.06);
  box-shadow: 0 10px 28px rgba(79, 70, 229, 0.45);
}

.bonus-card--promo .submit-button:active {
  transform: scale(0.98);
}

.bonus-card--promo .submit-button.loading .btn-text {
  opacity: 0;
  visibility: hidden;
  width: 0;
}

.bonus-card--promo .submit-button.loading .load-spinner {
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -10px 0 0 -10px;
  --track: rgba(255, 255, 255, 0.22);
  --accent: #fff;
}

.bonus-tag {
  background: rgba(99, 102, 241, 0.15) !important;
  color: #c4b5fd !important;
  border-radius: 8px !important;
  border: 1px solid rgba(99, 102, 241, 0.25);
}
