/* ═══════════════════════════════════════
   СТРАНИЦА БОНУСОВ — redesign
═══════════════════════════════════════ */

@keyframes bon-pulse-ring {
  0%   { transform: scale(0.95); opacity: 0.7; }
  70%  { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(1.18); opacity: 0; }
}
@keyframes bon-tick {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.35; }
}
@keyframes bon-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@keyframes bon-streak-pop {
  from { transform: scale(0.75) rotate(-6deg); opacity: 0; }
  to   { transform: scale(1)    rotate(0deg);  opacity: 1; }
}

/* ── Страница ── */
.bon-page {
  max-width: 1100px; margin: 0 auto;
  padding: 32px 32px 72px;
  display: flex; flex-direction: column; gap: 14px;
  width: 100%;
}

/* ── Заголовок секции ── */
.bon-section-hdr {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700;
  color: var(--text-dim); margin-top: 8px;
}
.bon-section-hdr-icon {
  width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0;
  background: rgba(var(--accent-rgb),0.12);
  border: 1px solid rgba(var(--accent-rgb),0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 14px;
}
.bon-section-hdr-text { display: flex; flex-direction: column; gap: 2px; }
.bon-section-hdr-title { font-size: 13px; font-weight: 700; color: var(--text); letter-spacing: 0.2px; }
.bon-section-hdr-sub   { font-size: 11px; color: var(--text-mute); }

/* ── Сетка 2 колонки ── */
.bon-grid-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}

/* ══════════════════════════════════════════════════════════════
   БОЛЬШИЕ БАННЕРЫ
══════════════════════════════════════════════════════════════ */
.bon-banner {
  position: relative; border-radius: 18px; overflow: hidden;
  padding: 28px 28px 24px; min-height: 210px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: border-color 0.3s, box-shadow 0.3s;
  cursor: default;
}
.bon-banner:hover { box-shadow: 0 0 40px rgba(0,0,0,0.35); }
.bon-banner--link { display: block; text-decoration: none; cursor: pointer; }
.bon-banner--link:hover .bon-banner-btn--gold { opacity: 0.88; transform: translateY(-1px); }

.bon-banner--gold {
  background: linear-gradient(135deg, #1a1000 0%, #2e1e00 40%, #3d2800 70%, #4a3200 100%);
  border: 1px solid rgba(232,200,74,0.2);
}
.bon-banner--gold:hover { border-color: rgba(232,200,74,0.4); box-shadow: 0 0 40px rgba(232,200,74,0.07); }

.bon-banner--green {
  background: linear-gradient(135deg, #001a0a 0%, #012e12 40%, #003d18 70%, #004a1e 100%);
  border: 1px solid rgba(74,212,118,0.15);
}
.bon-banner--green:hover { border-color: rgba(74,212,118,0.35); box-shadow: 0 0 40px rgba(74,212,118,0.06); }

/* Шум-текстура */
.bon-banner-noise {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* Glow-пятно */
.bon-banner-glow {
  position: absolute; border-radius: 50%;
  pointer-events: none; z-index: 1;
}
.bon-banner--gold .bon-banner-glow {
  right: -20px; top: -20px; width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(232,200,74,0.12) 0%, transparent 70%);
}
.bon-banner--green .bon-banner-glow {
  right: -30px; top: -30px; width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(74,212,118,0.08) 0%, transparent 70%);
}

/* Декор справа — приз или цепочка */
.bon-banner-deco {
  position: absolute; right: 24px; top: 50%; transform: translateY(-50%);
  z-index: 2; pointer-events: none; opacity: 0.65;
  animation: bon-float 3s ease-in-out infinite;
}
.bon-banner--gold .bon-banner-deco {
  width: 110px; height: 70px;
  border-radius: 10px;
  background: repeating-linear-gradient(45deg, rgba(232,200,74,0.06) 0px, rgba(232,200,74,0.06) 2px, transparent 2px, transparent 10px);
  border: 1px dashed rgba(232,200,74,0.22);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
.bon-banner-deco-gun  { font-size: 22px; }
.bon-banner-deco-lbl  { font-size: 9px; color: rgba(232,200,74,0.5); letter-spacing: 0.5px; font-family: monospace; }

.bon-banner-content { position: relative; z-index: 3; display: flex; flex-direction: column; gap: 0; }

/* Бейдж */
.bon-banner-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 800; letter-spacing: 1.2px;
  border-radius: 20px; padding: 3px 10px; margin-bottom: 12px;
  width: fit-content;
}
.bon-banner--gold  .bon-banner-badge {
  background: rgba(232,200,74,0.18); border: 1px solid rgba(232,200,74,0.35); color: #e8c84a;
}
.bon-banner--green .bon-banner-badge {
  background: rgba(74,212,118,0.15); border: 1px solid rgba(74,212,118,0.3); color: #4ad476;
}
.bon-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #e8c84a; box-shadow: 0 0 6px #e8c84a;
  animation: bon-tick 1s ease-in-out infinite;
}

.bon-banner-title    { font-size: 22px; font-weight: 800; color: #fff; letter-spacing: -0.3px; margin-bottom: 4px; }
.bon-banner-subtitle { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 16px; }

/* Статистика розыгрыша */
.bon-raffle-stats {
  display: flex; align-items: center; gap: 0;
  background: rgba(0,0,0,0.3); border-radius: 10px;
  border: 1px solid rgba(232,200,74,0.1);
  margin-bottom: 16px; overflow: hidden;
}
.bon-raffle-stat {
  flex: 1; text-align: center; padding: 10px 8px;
  border-right: 1px solid rgba(232,200,74,0.1);
}
.bon-raffle-stat:last-child { border-right: none; }
.bon-raffle-stat-lbl { font-size: 9px; color: rgba(255,255,255,0.35); margin-bottom: 3px; letter-spacing: 0.5px; text-transform: uppercase; }
.bon-raffle-stat-val { font-size: 15px; font-weight: 800; font-variant-numeric: tabular-nums; }
.bon-raffle-stat--gold .bon-raffle-stat-val { color: #e8c84a; }
.bon-raffle-stat--white .bon-raffle-stat-val { color: #fff; }
.bon-raffle-stat--timer .bon-raffle-stat-val { color: #fff; }

/* Кнопки баннера */
.bon-banner-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 22px; border-radius: 10px; border: none;
  font-size: 13px; font-weight: 800; letter-spacing: 0.3px;
  cursor: pointer; transition: all 0.25s; white-space: nowrap; text-decoration: none;
  font-family: var(--font); width: fit-content;
}
.bon-banner-btn--gold {
  background: linear-gradient(135deg, #e8c84a, #f5a800); color: #000;
}
.bon-banner-btn--gold:hover  { opacity: 0.88; transform: translateY(-1px); }
.bon-banner-btn--gold.entered {
  background: rgba(74,212,118,0.2); color: #4ad476;
  border: 1px solid rgba(74,212,118,0.4);
}
.bon-banner-btn--green {
  background: rgba(74,212,118,0.15); color: #4ad476;
  border: 1px solid rgba(74,212,118,0.35);
}
.bon-banner-btn--green:hover { background: rgba(74,212,118,0.25); transform: translateY(-1px); }

/* ══════════════════════════════════════════════════════════════
   БАННЕР ДЕПОЗИТА
══════════════════════════════════════════════════════════════ */
.bon-deposit {
  position: relative; border-radius: 18px; overflow: hidden;
  background: linear-gradient(135deg, #0a0624 0%, #12082e 50%, #0d0520 100%);
  border: 1px solid rgba(124,111,255,0.2);
  padding: 20px 24px;
  display: flex; align-items: center; gap: 20px;
  transition: border-color 0.3s, box-shadow 0.3s; cursor: pointer;
}
.bon-deposit:hover { border-color: rgba(124,111,255,0.45); box-shadow: 0 0 40px rgba(124,111,255,0.07); }
.bon-deposit-glow {
  position: absolute; right: -20px; top: -20px;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,111,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.bon-deposit-icon {
  width: 52px; height: 52px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(124,111,255,0.2), rgba(79,143,255,0.12));
  border: 1px solid rgba(124,111,255,0.3);
  display: flex; align-items: center; justify-content: center; font-size: 24px;
  position: relative; z-index: 1;
}
.bon-deposit-body { flex: 1; position: relative; z-index: 1; }
.bon-deposit-badge {
  display: inline-block; font-size: 10px; font-weight: 800; letter-spacing: 1px;
  background: rgba(124,111,255,0.2); border: 1px solid rgba(124,111,255,0.35);
  color: #a78bff; border-radius: 20px; padding: 2px 9px; margin-bottom: 5px;
}
.bon-deposit-title { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 3px; }
.bon-deposit-sub   { font-size: 12px; color: rgba(255,255,255,0.4); }
.bon-deposit-cta {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 20px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, #7c6fff, #4f8fff);
  color: #fff; font-size: 13px; font-weight: 800;
  box-shadow: 0 4px 16px rgba(124,111,255,0.3);
  transition: box-shadow 0.2s; white-space: nowrap;
  position: relative; z-index: 1;
  text-decoration: none;
}
.bon-deposit:hover .bon-deposit-cta { box-shadow: 0 6px 24px rgba(124,111,255,0.5); }

/* Blue theme deposit tweaks */
html:not([data-theme="purple"]) .bon-deposit {
  background: linear-gradient(135deg, #060924 0%, #0c1040 50%, #060820 100%);
  border-color: rgba(80,100,255,0.2);
}
html:not([data-theme="purple"]) .bon-deposit:hover { border-color: rgba(100,120,255,0.45); }
html:not([data-theme="purple"]) .bon-deposit-glow {
  background: radial-gradient(circle, rgba(80,100,255,0.1) 0%, transparent 70%);
}
html:not([data-theme="purple"]) .bon-deposit-icon {
  background: linear-gradient(135deg, rgba(80,100,255,0.2), rgba(50,80,200,0.12));
  border-color: rgba(80,100,255,0.3);
}
html:not([data-theme="purple"]) .bon-deposit-badge {
  background: rgba(80,100,255,0.2); border-color: rgba(80,100,255,0.35); color: #8fa0ff;
}

/* ══════════════════════════════════════════════════════════════
   ЕЖЕДНЕВНЫЙ СТРИК
══════════════════════════════════════════════════════════════ */
.bon-streak {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 20px 24px;
  position: relative; overflow: hidden;
}
.bon-streak::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb),0.4), transparent);
}
.bon-streak-hdr {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px;
}
.bon-streak-hdr-left { display: flex; align-items: center; gap: 10px; }
.bon-streak-emoji-icon {
  width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0;
  background: rgba(232,200,74,0.12); border: 1px solid rgba(232,200,74,0.25);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.bon-streak-hdr-title { font-size: 13px; font-weight: 700; color: var(--text); }
.bon-streak-hdr-sub   { font-size: 11px; color: var(--text-mute); }
.bon-streak-counter {
  display: flex; align-items: center; gap: 5px;
  background: rgba(232,200,74,0.1); border: 1px solid rgba(232,200,74,0.2);
  border-radius: 20px; padding: 4px 12px;
  font-size: 13px; font-weight: 800; color: #e8c84a;
}

.bon-streak-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; margin-bottom: 14px;
}
.bon-streak-day {
  border-radius: 10px; padding: 10px 4px 8px;
  border: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  position: relative; transition: border-color 0.2s;
}
.bon-streak-day--claimed {
  background: rgba(74,212,118,0.08); border-color: rgba(74,212,118,0.15);
}
.bon-streak-day--today {
  background: rgba(232,200,74,0.1); border-color: rgba(232,200,74,0.6);
  animation: bon-streak-pop 0.4s cubic-bezier(0.34,1.56,0.64,1) both;
}
.bon-streak-day--today::after {
  content: ''; position: absolute; inset: -1px; border-radius: 10px;
  border: 1.5px solid rgba(232,200,74,0.4);
  animation: bon-pulse-ring 2s ease-out infinite;
  pointer-events: none;
}
.bon-streak-day--locked { opacity: 0.5; }

.bon-streak-day-name {
  font-size: 9px; font-weight: 600; letter-spacing: 0.3px;
}
.bon-streak-day--claimed .bon-streak-day-name { color: #4ad476; }
.bon-streak-day--today   .bon-streak-day-name { color: #e8c84a; }
.bon-streak-day--locked  .bon-streak-day-name { color: var(--text-mute); }

.bon-streak-day-ico  { font-size: 16px; line-height: 1; }
.bon-streak-day-reward {
  font-size: 10px; font-weight: 800;
}
.bon-streak-day--claimed .bon-streak-day-reward { color: #4ad476; }
.bon-streak-day--today   .bon-streak-day-reward { color: #e8c84a; }
.bon-streak-day--locked  .bon-streak-day-reward { color: var(--text-faint); }

.bon-streak-claim {
  width: 100%; padding: 10px; border-radius: 10px; border: none;
  background: linear-gradient(135deg, rgba(232,200,74,0.2), rgba(232,200,74,0.1));
  border: 1px solid rgba(232,200,74,0.35);
  color: #e8c84a; font-size: 13px; font-weight: 800;
  cursor: pointer; transition: background 0.2s; font-family: var(--font);
  letter-spacing: 0.3px;
}
.bon-streak-claim:hover { background: linear-gradient(135deg, rgba(232,200,74,0.3), rgba(232,200,74,0.18)); }
.bon-streak-claim:disabled {
  opacity: 0.4; cursor: default;
}
.bon-streak-claim.claimed {
  background: rgba(74,212,118,0.12); border-color: rgba(74,212,118,0.3);
  color: #4ad476; cursor: default;
}

/* ══════════════════════════════════════════════════════════════
   ПРОМОКОД
══════════════════════════════════════════════════════════════ */
.bon-promo-card {
  background: var(--bg-card); border: 1px solid rgba(var(--accent-rgb),0.12);
  border-radius: 16px; padding: 18px 20px 28px;
  position: relative; overflow: hidden;
}
.bon-promo-card::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 90% 50%, rgba(var(--accent-rgb),0.04) 0%, transparent 60%);
}
.bon-promo-inner {
  display: flex; align-items: flex-start; gap: 14px; position: relative;
}
.bon-promo-icon {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  background: rgba(var(--accent-rgb),0.1); border: 1px solid rgba(var(--accent-rgb),0.2);
  display: flex; align-items: center; justify-content: center; color: var(--accent);
}
.bon-promo-body { flex: 1; }
.bon-promo-title { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.bon-promo-sub   { font-size: 12px; color: var(--text-faint); margin-bottom: 12px; line-height: 1.5; }
.bon-promo-row   { display: flex; gap: 8px; margin-bottom: 8px; }
.bon-promo-in {
  flex: 1; background: rgba(var(--accent-rgb),0.05);
  border: 1px solid rgba(var(--accent-rgb),0.18); border-radius: 10px;
  padding: 0 14px; height: 38px; color: var(--text); font-size: 13px;
  outline: none; transition: border-color 0.2s; font-family: var(--font);
}
.bon-promo-in:focus { border-color: rgba(var(--accent-rgb),0.45); }
.bon-promo-in::placeholder { color: var(--text-faint); }
.bon-promo-in.error  { border-color: rgba(212,99,74,0.5); }
.bon-promo-in.ok     { border-color: rgba(74,212,118,0.5); }
.bon-promo-btn {
  padding: 0 16px; height: 38px; border-radius: 10px; border: none;
  background: var(--gradient-accent); color: #000;
  font-size: 12px; font-weight: 800; cursor: pointer;
  transition: opacity 0.2s; white-space: nowrap; font-family: var(--font);
}
.bon-promo-btn:hover { opacity: 0.85; }
.bon-promo-status {
  font-size: 12px; display: flex; align-items: center; gap: 5px; min-height: 0; margin-bottom: 0;
}
.bon-promo-status:not(:empty) { margin-top: 6px; }
.bon-promo-status.ok    { color: #4ad476; }
.bon-promo-status.error { color: #d4634a; }

.bon-promo-socials { display: flex; gap: 8px; flex-wrap: wrap; }
.bon-promo-soc {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 12px; border-radius: 8px; text-decoration: none;
  font-size: 11px; font-weight: 700; transition: opacity 0.2s;
}
.bon-promo-soc:hover { opacity: 0.75; }
.bon-promo-soc--tg {
  background: rgba(42,171,238,0.08); border: 1px solid rgba(42,171,238,0.2); color: #2aabee;
}
.bon-promo-soc--vk {
  background: rgba(76,110,245,0.08); border: 1px solid rgba(76,110,245,0.2); color: #4c6ef5;
}

/* ══════════════════════════════════════════════════════════════
   ЗАДАНИЯ
══════════════════════════════════════════════════════════════ */
.bon-tasks {
  display: flex; flex-direction: column; gap: 8px;
}
.bon-task {
  background: var(--bg-card); border: 1px solid rgba(var(--accent-rgb),0.12);
  border-radius: 12px; padding: 14px 18px;
  display: flex; align-items: center; gap: 14px;
  transition: border-color 0.2s, background 0.2s;
}
.bon-task:hover:not(.bon-task--done) {
  border-color: rgba(var(--accent-rgb),0.25);
  background: rgba(var(--accent-rgb),0.02);
}
.bon-task--done { opacity: 0.65; }

.bon-task-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.bon-task-info { flex: 1; min-width: 0; }
.bon-task-title { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.bon-task-sub   { font-size: 11px; color: var(--text-faint); line-height: 1.4; }

.bon-task-reward {
  background: rgba(var(--accent-rgb),0.08); border: 1px solid rgba(var(--accent-rgb),0.15);
  border-radius: 8px; padding: 4px 10px;
  font-size: 14px; font-weight: 800; color: var(--accent);
  white-space: nowrap; flex-shrink: 0;
}
.bon-done-badge {
  display: flex; align-items: center; gap: 5px;
  background: rgba(74,212,118,0.12); color: #4ad476;
  border: 1px solid rgba(74,212,118,0.2);
  font-size: 11px; font-weight: 700; padding: 5px 12px;
  border-radius: 20px; white-space: nowrap; flex-shrink: 0;
}

.bon-task-btn {
  padding: 7px 14px; border-radius: 9px;
  border: 1px solid rgba(var(--accent-rgb),0.2);
  background: rgba(var(--accent-rgb),0.07); color: var(--accent);
  font-size: 11px; font-weight: 700; cursor: pointer; flex-shrink: 0;
  transition: all 0.2s; white-space: nowrap; font-family: var(--font);
  text-decoration: none; display: inline-flex; align-items: center; justify-content: center;
  height: 32px; min-width: 120px; box-sizing: border-box;
}
.bon-task-btn:hover {
  background: rgba(var(--accent-rgb),0.15);
  border-color: rgba(var(--accent-rgb),0.4);
}

/* Контейнер действия в задании — держит фиксированную ширину, чтобы
   при смене «Войти» → «Подписаться/Проверить» → «Выполнено» карточка
   не прыгала. На шаге 2 умещаем 2 кнопки рядом — gap, не оборачиваем. */
.bon-task-action {
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: flex-end;
  gap: 8px; min-height: 32px;
}
.bon-task-action iframe { display: block; vertical-align: middle; }

/* Secondary-вариант кнопки — серая, для «Подписаться» рядом с основной «Проверить». */
.bon-task-btn--ghost {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border-color: rgba(255,255,255,0.08);
}
.bon-task-btn--ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
}

/* Блок с кодом ника */
.bon-code-display {
  display: flex; align-items: center; gap: 10px;
  background: rgba(0,0,0,0.35); border: 1px dashed rgba(74,212,118,0.4);
  border-radius: 8px; padding: 7px 12px; margin-top: 8px; cursor: pointer;
}
.bon-code-val {
  flex: 1; font-size: 14px; font-weight: 900;
  letter-spacing: 3px; color: #4ad476; font-family: monospace;
}
.bon-code-copy {
  background: rgba(74,212,118,0.12); border: 1px solid rgba(74,212,118,0.25);
  color: #4ad476; font-size: 10px; font-weight: 700; border-radius: 5px;
  padding: 4px 10px; cursor: pointer; transition: background 0.2s;
  white-space: nowrap; font-family: var(--font);
}
.bon-code-copy:hover { background: rgba(74,212,118,0.22); }

/* ══════════════════════════════════════════════════════════════
   BATTLE PASS — флагманский баннер
══════════════════════════════════════════════════════════════ */
@keyframes bon-bp-sweep {
  0%   { transform: translateX(-120%) skewX(-18deg); }
  100% { transform: translateX(220%)  skewX(-18deg); }
}
@keyframes bon-bp-pulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.06); }
}
@keyframes bon-bp-ring {
  0%   { transform: rotate(0deg);   opacity: 0.75; }
  100% { transform: rotate(360deg); opacity: 0.75; }
}
@keyframes bon-bp-spark {
  0%, 100% { opacity: 0.85; filter: drop-shadow(0 0 8px rgba(232,200,74,0.55)); }
  50%      { opacity: 1;    filter: drop-shadow(0 0 16px rgba(232,200,74,0.95)); }
}

.bon-bp {
  position: relative; display: flex; align-items: center; gap: 22px;
  border-radius: 18px; overflow: hidden;
  padding: 22px 26px;
  text-decoration: none;
  background:
    radial-gradient(circle at 0% 50%, rgba(212,99,58,0.22) 0%, transparent 55%),
    linear-gradient(135deg, #1a0a06 0%, #2a1208 35%, #3a1a0e 60%, #1d0b1e 100%);
  border: 1px solid rgba(212,99,58,0.28);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.2s;
  isolation: isolate;
}
.bon-bp:hover {
  border-color: rgba(232,200,74,0.55);
  box-shadow: 0 0 50px rgba(212,99,58,0.18), 0 0 80px rgba(232,200,74,0.05);
}
.bon-bp:hover .bon-bp-cta {
  background: linear-gradient(135deg, #f0a830, #e85a20);
  box-shadow: 0 8px 24px rgba(232,90,32,0.45);
  transform: translateY(-1px);
}
.bon-bp:hover .bon-bp-emblem-ring { animation-duration: 5s; }

/* Шум */
.bon-bp-noise {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px;
}
/* Диагональные полоски — CS:GO Operation вайб */
.bon-bp-stripes {
  position: absolute; inset: 0; pointer-events: none; z-index: 1; opacity: 0.5;
  background: repeating-linear-gradient(
    -55deg,
    transparent 0px, transparent 22px,
    rgba(232,200,74,0.045) 22px, rgba(232,200,74,0.045) 23px,
    transparent 23px, transparent 60px,
    rgba(212,99,58,0.05) 60px, rgba(212,99,58,0.05) 62px
  );
}
.bon-bp-glow {
  position: absolute; right: -60px; top: 50%; transform: translateY(-50%);
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,200,74,0.18) 0%, rgba(212,99,58,0.08) 35%, transparent 70%);
  pointer-events: none; z-index: 1;
}
/* Бликовый sweep при hover */
.bon-bp::after {
  content: ''; position: absolute; top: 0; bottom: 0; left: 0; width: 22%;
  background: linear-gradient(90deg, transparent, rgba(255,220,160,0.18), transparent);
  transform: translateX(-120%) skewX(-18deg);
  pointer-events: none; z-index: 2;
}
.bon-bp:hover::after { animation: bon-bp-sweep 1.1s ease-out forwards; }

/* Бейдж «СКОРО» в углу */
.bon-bp-soon {
  position: absolute; top: 12px; right: 14px; z-index: 4;
  font-size: 10px; font-weight: 800; letter-spacing: 1.4px;
  padding: 3px 9px; border-radius: 20px;
  background: rgba(0,0,0,0.45); color: #e8c84a;
  border: 1px solid rgba(232,200,74,0.45);
  backdrop-filter: blur(4px);
}

/* Эмблема со звездой */
.bon-bp-emblem {
  position: relative; flex-shrink: 0; z-index: 3;
  width: 86px; height: 86px;
  display: flex; align-items: center; justify-content: center;
}
.bon-bp-emblem-ring {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 0deg,
    rgba(232,200,74,0.0) 0deg,
    rgba(232,200,74,0.7) 80deg,
    rgba(212,99,58,0.8) 160deg,
    rgba(232,200,74,0.0) 220deg,
    rgba(232,200,74,0.5) 320deg,
    rgba(232,200,74,0.0) 360deg);
  mask: radial-gradient(circle, transparent 60%, #000 62%, #000 100%);
  -webkit-mask: radial-gradient(circle, transparent 60%, #000 62%, #000 100%);
  animation: bon-bp-ring 8s linear infinite;
}
.bon-bp-emblem-core {
  position: relative; z-index: 1;
  width: 62px; height: 62px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 35% 30%, #f5a800 0%, #e85a20 60%, #8a2010 100%);
  border: 1.5px solid rgba(232,200,74,0.6);
  color: #fff;
  box-shadow: 0 0 18px rgba(232,90,32,0.45), inset 0 0 12px rgba(0,0,0,0.35);
  animation: bon-bp-spark 2.4s ease-in-out infinite;
}

/* Контент */
.bon-bp-content { position: relative; z-index: 3; flex: 1; min-width: 0; }
.bon-bp-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 800; letter-spacing: 1.4px;
  padding: 3px 10px; border-radius: 20px;
  background: rgba(232,200,74,0.13);
  border: 1px solid rgba(232,200,74,0.3);
  color: #e8c84a; margin-bottom: 10px;
}
.bon-bp-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #e85a20; box-shadow: 0 0 8px #e85a20;
  animation: bon-bp-pulse 1.4s ease-in-out infinite;
}
.bon-bp-title {
  font-size: 22px; font-weight: 800; color: #fff;
  letter-spacing: -0.3px; margin-bottom: 4px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
.bon-bp-sub {
  font-size: 12px; color: rgba(255,255,255,0.55);
  margin-bottom: 14px; line-height: 1.5; max-width: 540px;
}

/* Полоска тиров */
.bon-bp-tiers {
  display: flex; gap: 6px; flex-wrap: wrap;
}
.bon-bp-tier {
  display: flex; flex-direction: column; align-items: center; gap: 1px;
  min-width: 52px; padding: 6px 9px;
  border-radius: 8px;
  background: rgba(0,0,0,0.32);
  border: 1px solid rgba(232,200,74,0.18);
}
.bon-bp-tier-num {
  font-size: 12px; font-weight: 800; color: #fff;
  font-variant-numeric: tabular-nums;
}
.bon-bp-tier-lbl {
  font-size: 9px; font-weight: 700; letter-spacing: 0.4px;
  color: rgba(255,255,255,0.45); text-transform: uppercase;
}
.bon-bp-tier--gold {
  background: rgba(232,200,74,0.13);
  border-color: rgba(232,200,74,0.45);
}
.bon-bp-tier--gold .bon-bp-tier-num { color: #e8c84a; }
.bon-bp-tier--gold .bon-bp-tier-lbl { color: rgba(232,200,74,0.7); }
.bon-bp-tier--legend {
  background: linear-gradient(135deg, rgba(232,200,74,0.2), rgba(212,99,58,0.18));
  border-color: rgba(232,200,74,0.55);
  box-shadow: 0 0 14px rgba(232,200,74,0.12);
}
.bon-bp-tier--legend .bon-bp-tier-num { color: #fff; }
.bon-bp-tier--legend .bon-bp-tier-lbl { color: #e8c84a; }

/* CTA */
.bon-bp-cta {
  position: relative; z-index: 3; flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 11px 20px; border-radius: 11px;
  background: linear-gradient(135deg, #e8c84a, #e85a20);
  color: #1a0a06; font-size: 13px; font-weight: 800;
  letter-spacing: 0.3px; white-space: nowrap;
  box-shadow: 0 4px 14px rgba(232,90,32,0.28);
  transition: all 0.2s;
}

/* ── Адаптив ── */
@media (max-width: 760px) {
  .bon-page    { padding: 16px 14px 48px; gap: 12px; }
  .bon-grid-2  { grid-template-columns: 1fr; }
  .bon-banner  { min-height: 180px; }
  .bon-banner-deco { display: none; }
  .bon-deposit { flex-wrap: wrap; }
  .bon-deposit-cta { width: 100%; justify-content: center; }
  .bon-streak-grid { gap: 4px; }
  .bon-streak-day  { padding: 7px 2px 6px; }

  .bon-bp { flex-wrap: wrap; padding: 18px 18px 20px; gap: 14px; }
  .bon-bp-emblem { width: 64px; height: 64px; }
  .bon-bp-emblem-core { width: 48px; height: 48px; }
  .bon-bp-emblem-core svg { width: 26px; height: 26px; }
  .bon-bp-title { font-size: 18px; }
  .bon-bp-sub   { font-size: 11px; margin-bottom: 10px; }
  .bon-bp-tier  { min-width: 0; padding: 5px 7px; flex: 1; }
  .bon-bp-cta   { width: 100%; justify-content: center; }
}

/* ════════════════════════════════════════════════════════════
   КЕШБЭК — карточки на странице бонусов
═══════════════════════════════════════════════════════════════ */
.bon-cashback {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0f1a2c 0%, #15243d 100%);
  border: 1px solid rgba(74,212,118,0.18);
  border-radius: 14px;
  padding: 18px 18px 16px;
  display: flex; flex-direction: column; gap: 10px;
}
.bon-cashback--weekly {
  background: linear-gradient(135deg, #1c1530 0%, #2a1f44 100%);
  border-color: rgba(232,200,74,0.20);
}
.bon-cashback-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 60% at 100% 0%, rgba(74,212,118,0.10) 0%, transparent 70%);
}
.bon-cashback--weekly .bon-cashback-glow {
  background: radial-gradient(60% 60% at 100% 0%, rgba(232,200,74,0.12) 0%, transparent 70%);
}
.bon-cashback-hdr {
  display: flex; justify-content: space-between; align-items: center;
  position: relative; z-index: 1;
}
.bon-cashback-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.7px;
  color: #4ad476; padding: 4px 9px;
  background: rgba(74,212,118,0.10); border: 1px solid rgba(74,212,118,0.30);
  border-radius: 999px;
}
.bon-cashback--weekly .bon-cashback-badge {
  color: #e8c84a;
  background: rgba(232,200,74,0.12);
  border-color: rgba(232,200,74,0.32);
}
.bon-cashback-pct {
  font-size: 13px; font-weight: 800;
  color: #fff; opacity: 0.85;
}
.bon-cashback-title {
  font-size: 17px; font-weight: 700; color: #fff;
  position: relative; z-index: 1;
}
.bon-cashback-sub {
  font-size: 12px; line-height: 1.4; color: var(--text-mute, #9bb0c8);
  position: relative; z-index: 1;
  min-height: 32px;
}
.bon-cashback-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  position: relative; z-index: 1;
}
.bon-cashback-stat {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 9px;
  padding: 8px 10px;
  display: flex; flex-direction: column; gap: 2px;
}
.bon-cashback-stat-lbl {
  font-size: 10px; letter-spacing: 0.4px;
  color: var(--text-faint, #6a829e); text-transform: uppercase;
}
.bon-cashback-stat-val {
  font-size: 15px; font-weight: 700; color: #fff;
}
.bon-cashback-btn {
  background: linear-gradient(135deg, #4ad476 0%, #2da655 100%);
  color: #04140a; font-weight: 800; font-size: 13.5px;
  padding: 10px 14px; border: none; border-radius: 10px;
  cursor: pointer; transition: transform 0.12s, opacity 0.12s, box-shadow 0.12s;
  box-shadow: 0 4px 12px rgba(74,212,118,0.22);
  position: relative; z-index: 1;
}
.bon-cashback-btn--weekly {
  background: linear-gradient(135deg, #e8c84a 0%, #b6991a 100%);
  color: #1a1502;
  box-shadow: 0 4px 12px rgba(232,200,74,0.22);
}
.bon-cashback-btn:not(:disabled):hover { transform: translateY(-1px); }
.bon-cashback-btn:disabled {
  background: rgba(255,255,255,0.06); color: var(--text-mute, #9bb0c8);
  cursor: not-allowed; box-shadow: none;
}

/* ── Daily Pool — карточка возврата house edge ── */
.bon-img--dailypool {
  background:
    radial-gradient(120% 140% at 85% 20%, rgba(74,212,118,0.16) 0%, transparent 58%),
    linear-gradient(135deg, #0a1f17 0%, #060f0c 55%, #0a1a14 100%);
}
.bon-img--dailypool .bon-img-body { max-width: 100%; gap: 10px; }
.dp-stats {
  display: flex; gap: 26px; flex-wrap: wrap;
  position: relative; z-index: 2;
}
.dp-stat { display: flex; flex-direction: column; gap: 2px; }
.dp-stat-l {
  font-size: 10.5px; letter-spacing: 0.4px; text-transform: uppercase;
  color: var(--text-faint, #6a829e);
}
.dp-stat-v {
  font-size: 22px; font-weight: 800; color: #fff; line-height: 1.1;
  display: inline-flex; align-items: center; gap: 3px;
}
.dp-stat-v--accent { color: #4ad476; }
.dp-result {
  display: flex; align-items: center; gap: 12px; margin-top: 8px;
  padding: 10px 12px; border-radius: 12px;
  background: rgba(0,0,0,0.35); border: 1px solid rgba(74,212,118,0.32);
  position: relative; z-index: 2; animation: fadeUp 0.3s ease;
}
.dp-result-img { width: 64px; height: 48px; object-fit: contain; flex-shrink: 0; }
.dp-result-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.dp-result-name { font-size: 13px; font-weight: 700; color: #fff; }
.dp-result-price {
  font-size: 13px; font-weight: 800; color: #4ad476;
  display: inline-flex; align-items: center; gap: 3px;
}
.dp-result-link { font-size: 11px; color: var(--accent); text-decoration: none; }
.dp-result-link:hover { text-decoration: underline; }

/* ── Модалка открытия кейса Daily Pool — сцена 1-в-1 как на странице кейса.
   Визуал даёт .cd-stage (из case-detail.css); тут только оболочка + скролл. ── */
.dp-modal-overlay {
  /* z-index ВЫШЕ топбара (он sticky, z-index:1600): иначе топбар перекрывал
     верх модалки и крестик «уходил под топбар». 2000 = модалка поверх всего. */
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: flex-start; justify-content: center;
  padding: 24px 16px; overflow-y: auto;
  background: rgba(5, 9, 18, 0.8); backdrop-filter: blur(4px);
  animation: dpModalFade 0.18s ease;
}
@keyframes dpModalFade { from { opacity: 0; } to { opacity: 1; } }
.dp-modal {
  /* margin БЕЗ вертикального auto: в flex-overflow контейнере вертикальный auto
     центрирует и выталкивает ВЕРХ модалки за экран (доскроллить нельзя) —
     из-за этого крестик «уезжал вверх» и обрезался. 0 auto = верх всегда доступен. */
  position: relative; width: min(1000px, 96vw); margin: 0 auto;
}
/* Крестик якорим к самой сцене (а не к прозрачной обёртке .dp-modal — иначе он
   уезжал за видимые границы карточки и на ПК, и на мобиле). */
.dp-modal .dp-stage { margin: 0; position: relative; }
/* Канвас должен ВМЕСТИТЬ оверлей-результат (он absolute inset:0): если короче
   карточки дропа — картинка вылезает на контролы снизу и на крестик сверху.
   440px хватает на компактную карточку ниже, лента в этом же канвасе центрируется. */
.dp-modal .cd-canvas { min-height: 440px; }
/* Карточка дропа компактнее, чем на странице кейса (340/220) — чтобы наверняка
   умещалась в канвас модалки и не наезжала ни на крестик, ни на кнопки. */
.dp-modal .cd-overlay-items:has(.cd-rc:only-child) .cd-rc     { width: 300px; }
.dp-modal .cd-overlay-items:has(.cd-rc:only-child) .cd-rc-img { height: 160px; }
/* Контролы: без x1–x5 и быстрого открытия — центрируем активный слот
   (кнопку ОТКРЫТЬ до прокрута или дроп-кнопки после). */
.dp-modal .dp-controls { display: flex; justify-content: center; }
.dp-modal-close {
  /* Прямой потомок .dp-modal (ширина = карточке), а не .cd-stage — сидит в её
     правом-верхнем углу ВНУТРИ границ и не обрезается overflow сцены. Доступен
     при прокрутке вверх (верх модалки больше не выталкивается, см. margin:0 auto). */
  position: absolute; top: 14px; right: 14px; z-index: 30;
  width: 36px; height: 36px; border: none; border-radius: 9px;
  background: rgba(0,0,0,0.55); color: var(--text-dim, #9fb2c8);
  font-size: 16px; cursor: pointer; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.dp-modal-close:hover { background: rgba(0,0,0,0.7); color: #fff; }
/* Дроп-кнопки: тут их две (продать / в инвентарь), а в кейсах три — сужаем
   сетку до 2 колонок, иначе пустая третья колонка сдвигает кнопки влево. */
.dp-modal .cd-drop-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 480px; }
/* Кнопка «продана» — гасим, без hover-эффекта. */
.dp-modal .cd-oa-done { opacity: 0.6; cursor: default; pointer-events: none; }
.bon-cashback-rules {
  font-size: 10.5px; letter-spacing: 0.3px; color: var(--text-faint, #6a829e);
  text-align: center; margin-top: -2px;
  position: relative; z-index: 1;
}
@media (max-width: 760px) {
  .bon-cashback { padding: 14px; }
  .bon-cashback-title { font-size: 15px; }
  .bon-cashback-stat-val { font-size: 14px; }
}

/* Новый блок: метаданные в шапке (когда у daily есть активный пул) */
.bon-cashback-meta {
  font-size: 11px; font-weight: 600;
  color: var(--text-mute, #9bb0c8);
  letter-spacing: 0.2px;
}
/* Прогресс-бар забора порций daily-пула */
.bon-cashback-progress {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 10px;
}
.bon-cashback-progress-bar {
  flex: 1; height: 6px; border-radius: 3px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}
.bon-cashback-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #4ad476 0%, #6deb95 100%);
  border-radius: 3px;
  transition: width 0.35s ease;
}
.bon-cashback-progress-text {
  font-size: 11px; color: var(--text-mute, #9bb0c8);
  white-space: nowrap;
}

/* ════════════════════════════════════════════════════════════
   КАРТИНОЧНЫЕ БАННЕРЫ — единый формат «как в главном меню».
   Арт-картинка (или плейсхолдер «место для картинки») заливает
   всю карточку, контент/контролы лежат поверх, слева — затемняющий
   градиент-скрим для читаемости текста на любой картинке.
═══════════════════════════════════════════════════════════════ */
.bon-img {
  position: relative; overflow: hidden; isolation: isolate;
  display: flex; min-height: 200px;
  border-radius: 18px;
  border: 1px solid rgba(var(--accent-rgb),0.12);
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.bon-img--wide { min-height: 188px; }
/* Баннер пасса: арт-картинка прозрачная (гусь-вырез), под ней — тематический
   тёмный фон-градиент, чтобы баннер был залит целиком и под тему сайта */
.bon-img--pass {
  background:
    radial-gradient(130% 150% at 80% 30%, rgba(var(--accent-rgb),0.18) 0%, transparent 58%),
    linear-gradient(135deg, #0a1730 0%, #060c1a 55%, #0a0a1e 100%);
}
/* Пасс: заполняем баннер целиком (cover, без полей по бокам), но якорь —
   вправо: гусь справа всегда виден, обрезается только пустой левый край
   (там и так лежит текст-оверлей над градиентом) */
.bon-img--pass .bon-img-art img { object-fit: cover; object-position: center; }
a.bon-img:hover {
  border-color: rgba(var(--accent-rgb),0.4);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(var(--accent-rgb),0.18);
}

/* Слой арта (реальная картинка) */
.bon-img-art { position: absolute; inset: 0; z-index: 0; line-height: 0; }
.bon-img-art img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center; display: block;
  transition: filter 0.25s ease;
}
a.bon-img:hover .bon-img-art img { filter: brightness(1.05); }

/* Скрим: лёгкое затемнение только сверху — текст слева-вверху читается,
   при этом центр и низ картинки видны полностью */
.bon-img::before {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg,
    rgba(6,3,18,0.55) 0%, rgba(6,3,18,0.22) 22%,
    transparent 45%);
}

/* Плейсхолдер «место для картинки» (пока арт не готов) */
.bon-img-ph {
  position: absolute; inset: 0; z-index: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 7px; text-align: center;
  background:
    repeating-linear-gradient(45deg, rgba(var(--accent-rgb),0.05) 0 11px, transparent 11px 22px),
    linear-gradient(135deg, #0c1424 0%, #0a1120 100%);
}
.bon-img-ph::before {
  content: ''; position: absolute; inset: 10px; border-radius: 12px;
  border: 1.5px dashed rgba(var(--accent-rgb),0.32); pointer-events: none;
}
.bon-img-ph-ico  { font-size: 26px; opacity: 0.5; }
.bon-img-ph-name { font-size: 12px; font-weight: 700; color: var(--text-dim); letter-spacing: 0.3px; }
.bon-img-ph-size { font-size: 10.5px; color: var(--text-faint); font-family: monospace; }

/* Контент поверх арта — прижат к верху-слева, компактный */
.bon-img-body {
  position: relative; z-index: 2; flex: 1; min-width: 0;
  padding: 16px 18px;
  display: flex; flex-direction: column; justify-content: flex-start; gap: 6px;
}

/* Угловой бейдж (например «СКОРО») */
.bon-img-corner {
  position: absolute; top: 12px; right: 14px; z-index: 3;
  font-size: 10px; font-weight: 800; letter-spacing: 1.3px;
  padding: 3px 10px; border-radius: 999px;
  background: rgba(0,0,0,0.5); color: #ffe9a8;
  border: 1px solid rgba(232,200,74,0.45);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}

/* Eyebrow-бейдж */
.bon-img-badge {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 800; letter-spacing: 1.3px; text-transform: uppercase;
  color: #eaf3ff; border-radius: 999px; padding: 4px 11px;
  background: rgba(var(--accent-rgb),0.18);
  border: 1px solid rgba(var(--accent-rgb),0.5);
  box-shadow: 0 2px 12px rgba(var(--accent-rgb),0.3);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.bon-img-badge::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 8px var(--accent); flex-shrink: 0;
}
.bon-img-badge--gold  { color:#ffe9a8; background:rgba(232,200,74,0.18); border-color:rgba(232,200,74,0.5); box-shadow:0 2px 12px rgba(232,200,74,0.25); }
.bon-img-badge--gold::before  { background:#e8c84a; box-shadow:0 0 8px #e8c84a; }
.bon-img-badge--green { color:#bff5d3; background:rgba(74,212,118,0.18); border-color:rgba(74,212,118,0.5); box-shadow:0 2px 12px rgba(74,212,118,0.22); }
.bon-img-badge--green::before { background:#4ad476; box-shadow:0 0 8px #4ad476; }

.bon-img-title {
  font-size: clamp(15px, 1.9vw, 20px); font-weight: 800; color: #fff;
  letter-spacing: -0.3px; line-height: 1.1; max-width: 72%;
  text-shadow: 0 2px 14px rgba(0,0,0,0.9), 0 0 20px rgba(0,0,0,0.5);
}
.bon-img-sub {
  font-size: 11.5px; font-weight: 500; line-height: 1.4; max-width: 66%;
  color: rgba(236,241,255,0.82); text-shadow: 0 1px 8px rgba(0,0,0,0.9);
}
.bon-img-cta {
  align-self: flex-start; margin-top: 4px;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 20px; border-radius: 11px;
  background: var(--gradient-accent); color: #fff;
  font-size: 12.5px; font-weight: 800; letter-spacing: 0.2px;
  box-shadow: 0 8px 24px rgba(var(--accent-rgb),0.45);
}
.bon-img-cta--gold  { background:linear-gradient(135deg,#e8c84a,#f5a800); color:#1a1000; box-shadow:0 8px 24px rgba(232,200,74,0.35); }
.bon-img-cta--green { background:linear-gradient(135deg,#4ad476,#2da655); color:#04140a; box-shadow:0 8px 24px rgba(74,212,118,0.30); }

/* Интерактивные баннеры (форма промокода / кешбэк / задание) —
   контролам нужна вся ширина и читаемость поверх картинки */
.bon-img--form .bon-img-title,
.bon-img--form .bon-img-sub { max-width: 100%; }
.bon-img--form .bon-promo-in { background: rgba(0,0,0,0.45); }

/* Промокод: весь контент (текст + поле + кнопка) держим в ЛЕВОЙ части
   баннера — справа гусь, его не перекрываем. */
.bon-img--promo .bon-img-body { max-width: 58%; }
.bon-img--promo .bon-promo-row { flex-wrap: wrap; }
.bon-img--promo .bon-promo-in  { flex: 1 1 100%; min-width: 0; }
.bon-img--promo .bon-promo-btn { flex: 0 0 auto; }
@media (max-width: 760px) {
  /* На мобиле баннер шире — даём контенту больше места */
  .bon-img--promo .bon-img-body { max-width: 72%; }
}
.bon-img-controls {
  position: relative; z-index: 2; margin-top: 4px;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}

@media (max-width: 760px) {
  .bon-img { min-height: 168px; }
  .bon-img-body  { padding: 18px; }
  .bon-img-title { max-width: 100%; }
  .bon-img-sub   { max-width: 100%; }
}
