/* ═══════════════════════════════════════════════
   BONUS PAGE
═══════════════════════════════════════════════ */

/* Wager Progress Block */
.wager-progress-block {
  margin-bottom: 24px;
  background: linear-gradient(135deg, rgba(139,92,246,0.08) 0%, rgba(59,130,246,0.08) 100%);
  border: 1px solid rgba(139,92,246,0.25);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 20px rgba(139,92,246,0.1);
}

.wager-progress-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #8b5cf6 0%, #3b82f6 100%);
}

.wager-progress-inner {
  padding: 24px 28px;
}

.wager-progress-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.wager-progress-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(139,92,246,0.15) 0%, rgba(59,130,246,0.15) 100%);
  border: 1px solid rgba(139,92,246,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a78bfa;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(139,92,246,0.2);
}

.wager-progress-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.wager-progress-subtitle {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.wager-progress-bar-wrap {
  margin-bottom: 14px;
}

.wager-progress-bar {
  width: 100%;
  height: 12px;
  background: rgba(0,0,0,0.3);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
  position: relative;
}

.wager-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #8b5cf6 0%, #6366f1 50%, #3b82f6 100%);
  border-radius: 12px;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 20px rgba(139,92,246,0.6), 0 0 40px rgba(139,92,246,0.3);
  position: relative;
  overflow: hidden;
}

.wager-progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.wager-progress-labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

#wagerProgressText {
  font-weight: 700;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.wager-remaining {
  color: #a78bfa;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.wager-progress-note {
  padding: 16px 18px;
  background: rgba(139,92,246,0.08);
  border: 1px solid rgba(139,92,246,0.15);
  border-radius: 10px;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}

.wager-note-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
}

.wager-note-header i {
  color: #a78bfa;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.wager-note-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wager-note-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.6;
}

.wager-note-bullet {
  color: #a78bfa;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.wager-note-item strong {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}

.wager-cancel-btn {
  width: 100%;
  padding: 14px 18px;
  background: linear-gradient(135deg, rgba(239,68,68,0.1) 0%, rgba(220,38,38,0.1) 100%);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 10px;
  color: #fca5a5;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.wager-cancel-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(239,68,68,0.2), transparent);
  transition: left 0.5s;
}

.wager-cancel-btn:hover::before {
  left: 100%;
}

.wager-cancel-btn:hover {
  background: linear-gradient(135deg, rgba(239,68,68,0.15) 0%, rgba(220,38,38,0.15) 100%);
  border-color: rgba(239,68,68,0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(239,68,68,0.2);
  color: #ff6b6b;
}

.wager-cancel-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(239,68,68,0.2);
}

/* Hero */
.bon-hero {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  padding: 40px 36px;
  margin-bottom: 24px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
}

.bon-hero-bg { display: none }

.bon-hero-content { position: relative; z-index: 1 }

.bon-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(240,180,41,.08);
  border: 1px solid rgba(240,180,41,.2);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 14px;
}

.bon-hero-title {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 10px;
  color: var(--t1)
}

.bon-grd { color: var(--accent) }

.bon-hero-sub {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.7;
  max-width: 520px
}

/* Promo Block */
.bon-promo-block {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 28px
}

.bon-promo-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap
}

.bon-promo-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 200px
}

.bon-promo-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(46,204,113,.08);
  border: 1px solid rgba(46,204,113,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 16px;
  flex-shrink: 0
}

.bon-promo-title { font-size: 13px; font-weight: 700; color: var(--t1) }
.bon-promo-sub   { font-size: 11px; color: var(--t3); margin-top: 2px }

.bon-promo-form {
  display: flex;
  gap: 8px;
  flex-shrink: 0
}

.bon-promo-input {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--t1);
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: 1px;
  width: 180px;
  transition: .2s
}

.bon-promo-input:focus {
  border-color: var(--accent);
  outline: none
}

.bon-promo-input::placeholder { color: var(--t3) }

.bon-promo-btn {
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 12px;
  padding: 9px 18px;
  border-radius: 8px;
  transition: .2s;
  white-space: nowrap;
  display: flex; align-items: center; gap: 6px
}

.bon-promo-btn:hover { background: var(--accent2) }

.bon-promo-msg {
  margin-top: 10px;
  padding: 9px 13px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600
}
.bon-promo-msg.ok  { background: rgba(46,204,113,.08);  color: var(--accent); border: 1px solid rgba(46,204,113,.2) }
.bon-promo-msg.err { background: rgba(231,76,60,.08);   color: var(--red);    border: 1px solid rgba(231,76,60,.2) }

/* Section title */
.bon-section-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--t1);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px
}

/* Bonus Grid */
.bon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px
}

/* Bonus Card */
.bon-card {
  position: relative;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .2s, border-color .2s
}

.bon-card:hover { transform: translateY(-2px) }

.bon-card-welcome:hover    { border-color: rgba(240,180,41,.3) }
.bon-card-cashback:hover   { border-color: rgba(46,204,113,.3) }
.bon-card-daily:hover      { border-color: rgba(155,89,182,.3) }
.bon-card-tournament:hover { border-color: rgba(240,130,80,.3) }
.bon-card-win:hover        { border-color: rgba(46,204,113,.3) }
.bon-card-vip:hover        { border-color: rgba(240,180,41,.3) }
.bon-card-vk:hover         { border-color: rgba(0,119,255,.3) }
.bon-card-tg:hover         { border-color: rgba(42,171,238,.3) }

.bon-card-wip { opacity: .55; pointer-events: none; filter: saturate(.35) }
.bon-card-wip:hover { transform: none }

.bon-card-shine { display: none }

/* Badge */
.bon-card-badge {
  position: absolute;
  top: 14px; right: 14px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px
}

.bon-badge-new  { background: rgba(240,180,41,.1);  color: var(--gold);   border: 1px solid rgba(240,180,41,.25) }
.bon-badge-week { background: rgba(46,204,113,.08); color: var(--accent); border: 1px solid rgba(46,204,113,.2) }
.bon-badge-daily{ background: rgba(155,89,182,.1);  color: #c39bd3;       border: 1px solid rgba(155,89,182,.25) }
.bon-badge-sun  { background: rgba(231,76,60,.1);   color: var(--red);    border: 1px solid rgba(231,76,60,.25) }
.bon-badge-vip  { background: rgba(240,180,41,.1);  color: var(--gold);   border: 1px solid rgba(240,180,41,.3) }
.bon-badge-vk   { background: rgba(0,119,255,.1);   color: #4d94ff;       border: 1px solid rgba(0,119,255,.3) }
.bon-badge-tg   { background: rgba(42,171,238,.1);  color: #5bc8f5;       border: 1px solid rgba(42,171,238,.3) }
.bon-badge-soon { background: rgba(255,255,255,.05); color: var(--t3);    border: 1px solid var(--border) }

/* Card icon */
.bon-card-icon-wrap { display: flex }

.bon-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px
}

/* Card body */
.bon-card-tag {
  display: inline-flex;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px;
  border: 1px solid;
  margin-bottom: 5px
}

.bon-card-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--t1);
  line-height: 1.25;
  margin-bottom: 6px
}

.bon-card-desc {
  font-size: 12px;
  color: var(--t2);
  line-height: 1.65
}

.bon-card-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 10px 0 4px;
  border-top: 1px solid var(--border2);
  margin-top: auto
}

.bon-stat { text-align: center }
.bon-stat-v { font-size: 14px; font-weight: 800; color: var(--t1) }
.bon-stat-l { font-size: 9px; color: var(--t3); text-transform: uppercase; letter-spacing: .8px; margin-top: 2px }

/* Card button */
.bon-card-btn {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--t1);
  cursor: pointer;
  transition: .2s;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}

.bon-card-btn:hover { background: rgba(255,255,255,.06) }

.bon-card-btn-cyan   { background: rgba(46,204,113,.06);  border-color: rgba(46,204,113,.2);  color: var(--accent) }
.bon-card-btn-cyan:hover   { background: rgba(46,204,113,.12) }

.bon-card-btn-purple { background: rgba(155,89,182,.06);  border-color: rgba(155,89,182,.2);  color: #c39bd3 }
.bon-card-btn-purple:hover { background: rgba(155,89,182,.12) }

.bon-card-btn-pink   { background: rgba(231,76,60,.06);   border-color: rgba(231,76,60,.2);   color: var(--red) }
.bon-card-btn-pink:hover   { background: rgba(231,76,60,.12) }

.bon-card-btn-grn    { background: rgba(46,204,113,.06);  border-color: rgba(46,204,113,.2);  color: var(--accent) }
.bon-card-btn-grn:hover    { background: rgba(46,204,113,.12) }

.bon-card-btn-vk     { background: rgba(0,119,255,.08);   border-color: rgba(0,119,255,.25);  color: #4d94ff }
.bon-card-btn-vk:hover     { background: rgba(0,119,255,.15) }

.bon-card-btn-tg     { background: rgba(42,171,238,.08);  border-color: rgba(42,171,238,.25); color: #5bc8f5 }
.bon-card-btn-tg:hover     { background: rgba(42,171,238,.15) }

.bon-card-btn-wip    { background: rgba(255,255,255,.03); border-color: var(--border2);       color: var(--t3); cursor: not-allowed }
.bon-card-btn-wip:hover    { transform: none }

/* VIP Track */
.bon-vip-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 24px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  flex-wrap: wrap;
  row-gap: 14px;
  margin-bottom: 20px
}

.bon-vip-connector {
  flex: 1;
  min-width: 20px;
  max-width: 60px;
  height: 1px;
  background: var(--border)
}

.bon-vip-level {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 18px;
  border-radius: 10px;
  background: var(--bg3);
  border: 1px solid var(--border);
  transition: .2s;
  cursor: default
}

.bon-vip-level:hover { border-color: var(--accent); transform: translateY(-2px) }

.bon-vip-icon { font-size: 24px; margin-bottom: 4px }
.bon-vip-name { font-size: 13px; font-weight: 700; color: var(--t1) }
.bon-vip-cb   { font-size: 12px; font-weight: 700; color: var(--accent) }
.bon-vip-req  { font-size: 10px; color: var(--t3); margin-top: 2px }

/* Tablet */
@media (max-width: 1100px) {
  .bon-grid { grid-template-columns: repeat(2, 1fr) }
}

/* Mobile bonus */
@media (max-width: 768px) {
  .bon-hero { padding: 24px 18px }
  .bon-hero-title { font-size: 24px }
  .bon-grid { grid-template-columns: 1fr }
  .bon-promo-inner { flex-direction: column; align-items: stretch }
  .bon-promo-form { flex-direction: column }
  .bon-promo-input { width: 100% }
  .bon-vip-connector { display: none }
  .bon-vip-track { justify-content: flex-start; gap: 8px }
}

/* ═══════════════════════════════════════════════
   TOURNAMENT BANNER
═══════════════════════════════════════════════ */
.bon-tournament {
  position: relative;
  margin-top: 28px;
  border-radius: 20px;
  border: 1px solid rgba(240, 180, 41, 0.35);
  background: linear-gradient(135deg,
    rgba(240,180,41,0.08) 0%,
    rgba(20,16,8,0.95) 40%,
    rgba(12,10,4,0.98) 100%
  );
  overflow: hidden;
}

.bon-tournament-glow {
  position: absolute;
  top: -60px; left: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,180,41,0.18) 0%, transparent 70%);
  pointer-events: none;
}

/* Floating particles */
.bon-tournament-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.bon-tournament-particles span {
  position: absolute;
  display: block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(240,180,41,0.4);
  animation: bon-float 6s infinite ease-in-out;
}
.bon-tournament-particles span:nth-child(1) { left:10%; top:20%; animation-delay:0s; }
.bon-tournament-particles span:nth-child(2) { left:30%; top:70%; animation-delay:1.2s; width:3px; height:3px; }
.bon-tournament-particles span:nth-child(3) { left:60%; top:15%; animation-delay:2.4s; width:5px; height:5px; }
.bon-tournament-particles span:nth-child(4) { left:80%; top:60%; animation-delay:0.8s; width:3px; height:3px; }
.bon-tournament-particles span:nth-child(5) { left:50%; top:80%; animation-delay:3.6s; }

@keyframes bon-float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
  50%       { transform: translateY(-18px) scale(1.3); opacity: 0.9; }
}

.bon-tournament-soon-badge {
  position: absolute;
  top: 16px; right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(240,180,41,0.12);
  border: 1px solid rgba(240,180,41,0.3);
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.bon-tournament-live-badge {
  position: absolute;
  top: 16px; right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(0, 255, 136, 0.12);
  border: 1px solid rgba(0, 255, 136, 0.35);
  color: #00ff88;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: pulse-live 2s ease-in-out infinite;
}

@keyframes pulse-live {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.bon-tournament-body {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 32px 36px;
}

/* Left side */
.bon-tournament-left {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex: 1;
  min-width: 0;
}

.bon-tournament-trophy {
  font-size: 56px;
  line-height: 1;
  flex-shrink: 0;
  filter: drop-shadow(0 0 18px rgba(240,180,41,0.5));
}

.bon-tournament-meta { min-width: 0 }

.bon-tournament-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}

.bon-tournament-title {
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #fff 0%, #f0b429 60%, #ffd566 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bon-tournament-desc {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 16px;
}

.bon-tournament-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bon-tournament-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(240,180,41,0.07);
  border: 1px solid rgba(240,180,41,0.18);
  color: rgba(240,180,41,0.7);
  font-size: 11px;
  font-weight: 600;
}

/* Right side */
.bon-tournament-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  min-width: 220px;
}

.bon-tournament-prize-wrap { text-align: center }

.bon-tournament-prize-label {
  font-size: 11px;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.bon-tournament-prize {
  font-size: 38px;
  font-weight: 900;
  background: linear-gradient(135deg, #f0b429 0%, #ffd566 50%, #e09000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
  text-shadow: none;
}

.bon-tournament-prize-sub {
  font-size: 11px;
  color: var(--t3);
}

.bon-tournament-stats {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 20px;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(240,180,41,0.12);
  border-radius: 12px;
  width: 100%;
  justify-content: center;
}

.bon-tournament-stat { text-align: center }
.bon-tournament-stat-v { font-size: 15px; font-weight: 800; color: var(--t2) }
.bon-tournament-stat-l { font-size: 10px; color: var(--t3); text-transform: uppercase; letter-spacing: .6px; margin-top: 2px }

.bon-tournament-stat-divider {
  width: 1px;
  height: 28px;
  background: rgba(240,180,41,0.15);
}

.bon-tournament-btn {
  width: 100%;
  padding: 13px 20px;
  border-radius: 12px;
  border: 1px solid rgba(240,180,41,0.4);
  background: linear-gradient(135deg, rgba(240,180,41,0.15) 0%, rgba(240,180,41,0.08) 100%);
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.bon-tournament-btn:hover {
  background: linear-gradient(135deg, rgba(240,180,41,0.22) 0%, rgba(240,180,41,0.12) 100%);
  border-color: rgba(240,180,41,0.6);
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .bon-tournament-body {
    flex-direction: column;
    align-items: stretch;
    padding: 36px 16px 16px;
    gap: 12px;
  }
  .bon-tournament-left {
    flex-direction: row;
    gap: 12px;
    align-items: center;
  }
  .bon-tournament-trophy {
    font-size: 32px;
    align-self: flex-start;
  }
  .bon-tournament-title { font-size: 16px; margin-bottom: 6px; }
  .bon-tournament-label { font-size: 10px; margin-bottom: 4px; }
  .bon-tournament-desc {
    display: none;
  }
  .bon-tournament-tags { gap: 4px; display: none; }
  .bon-tournament-tag { font-size: 9px; padding: 2px 6px }
  .bon-tournament-right {
    width: 100%;
    min-width: unset;
    align-items: stretch;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid rgba(240,180,41,0.12);
  }
  .bon-tournament-prize-wrap { text-align: center }
  .bon-tournament-prize { font-size: 28px }
  .bon-tournament-prize-label { font-size: 10px; }
  .bon-tournament-prize-sub { font-size: 10px; }
  .bon-tournament-stats { padding: 8px 12px; gap: 8px }
  .bon-tournament-stat-v { font-size: 12px }
  .bon-tournament-stat-l { font-size: 9px; }
  .bon-tournament-soon-badge { top: 10px; right: 10px; font-size: 9px; padding: 3px 8px }
  .bon-tournament-live-badge { top: 10px; right: 10px; font-size: 9px; padding: 3px 8px }
  .bon-tournament-btn { padding: 10px 16px; font-size: 13px; }
}


/* ═══════════════════════════════════════════════
   TOURNAMENT PAGE
═══════════════════════════════════════════════ */

.tournament-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(8, 6, 3, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(240, 180, 41, 0.15);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.tournament-back-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(240, 180, 41, 0.08);
  border: 1px solid rgba(240, 180, 41, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.tournament-back-btn:hover {
  background: rgba(240, 180, 41, 0.15);
  border-color: rgba(240, 180, 41, 0.35);
  transform: translateX(-2px);
}

.tournament-back-btn i {
  color: var(--gold);
  width: 18px;
  height: 18px;
}

.tournament-header-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(90deg, #fff 0%, #f0b429 60%, #ffd566 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tournament-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 20px 40px;
}

.tournament-prize-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  margin-bottom: 24px;
  border-radius: 16px;
  background: linear-gradient(135deg,
    rgba(240,180,41,0.08) 0%,
    rgba(20,16,8,0.95) 100%
  );
  border: 1px solid rgba(240, 180, 41, 0.25);
  gap: 20px;
  flex-wrap: wrap;
}

.tournament-prize-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tournament-prize-header-icon {
  font-size: 36px;
  line-height: 1;
  filter: drop-shadow(0 0 12px rgba(240,180,41,0.4));
}

.tournament-prize-header-label {
  font-size: 11px;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 4px;
}

.tournament-prize-header-amount {
  font-size: 32px;
  font-weight: 900;
  background: linear-gradient(135deg, #f0b429 0%, #ffd566 50%, #e09000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.tournament-prize-header-right {
  display: flex;
  align-items: center;
}

.tournament-prize-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  background: rgba(240, 180, 41, 0.12);
  border: 1px solid rgba(240, 180, 41, 0.3);
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.tournament-prize-header-badge i {
  width: 16px;
  height: 16px;
}

.tournament-how-section-top {
  margin-bottom: 24px;
}

.tournament-prize-section {
  margin-bottom: 32px;
}

.tournament-prize-section {
  text-align: center;
  padding: 32px 20px;
  margin-bottom: 32px;
  border-radius: 20px;
  background: linear-gradient(135deg,
    rgba(240,180,41,0.08) 0%,
    rgba(20,16,8,0.95) 40%,
    rgba(12,10,4,0.98) 100%
  );
  border: 1px solid rgba(240, 180, 41, 0.25);
  position: relative;
  overflow: hidden;
}

.tournament-prize-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,180,41,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.tournament-prize-label {
  position: relative;
  z-index: 1;
  font-size: 12px;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  font-weight: 700;
}

.tournament-prize-amount {
  position: relative;
  z-index: 1;
  font-size: 56px;
  font-weight: 900;
  background: linear-gradient(135deg, #f0b429 0%, #ffd566 50%, #e09000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 20px rgba(240,180,41,0.3));
}

.tournament-prize-sub {
  position: relative;
  z-index: 1;
  font-size: 13px;
  color: var(--t2);
}

.tournament-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.tournament-info-card {
  background: rgba(240, 180, 41, 0.04);
  border: 1px solid rgba(240, 180, 41, 0.15);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  transition: all 0.2s ease;
}

.tournament-info-card:hover {
  background: rgba(240, 180, 41, 0.06);
  border-color: rgba(240, 180, 41, 0.25);
  transform: translateY(-2px);
}

.tournament-info-icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(240, 180, 41, 0.1);
}

.tournament-info-icon i {
  color: var(--gold);
  width: 16px;
  height: 16px;
}

.tournament-info-label {
  font-size: 11px;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  font-weight: 600;
}

.tournament-info-value {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.tournament-section-title {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tournament-section-title i {
  color: var(--gold);
  width: 18px;
  height: 18px;
}

.tournament-prizes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 32px;
}

.tournament-prize-card {
  background: rgba(240, 180, 41, 0.04);
  border: 1px solid rgba(240, 180, 41, 0.15);
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
}

.tournament-prize-card:hover {
  background: rgba(240, 180, 41, 0.06);
  border-color: rgba(240, 180, 41, 0.25);
  transform: translateY(-2px);
}

.tournament-prize-card.first {
  border-color: rgba(255, 215, 0, 0.4);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(240, 180, 41, 0.04) 100%);
}

.tournament-prize-card.second {
  border-color: rgba(192, 192, 192, 0.4);
  background: linear-gradient(135deg, rgba(192, 192, 192, 0.08) 0%, rgba(240, 180, 41, 0.04) 100%);
}

.tournament-prize-card.third {
  border-color: rgba(205, 127, 50, 0.4);
  background: linear-gradient(135deg, rgba(205, 127, 50, 0.08) 0%, rgba(240, 180, 41, 0.04) 100%);
}

.tournament-prize-place {
  font-size: 14px;
  font-weight: 800;
  color: var(--t2);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tournament-prize-card.first .tournament-prize-place {
  color: #ffd700;
}

.tournament-prize-card.second .tournament-prize-place {
  color: #c0c0c0;
}

.tournament-prize-card.third .tournament-prize-place {
  color: #cd7f32;
}

.tournament-prize-percent {
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.tournament-prize-rubles {
  font-size: 13px;
  color: var(--t2);
  font-weight: 600;
}

.tournament-how-section {
  background: rgba(240, 180, 41, 0.03);
  border: 1px solid rgba(240, 180, 41, 0.12);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 32px;
}

.tournament-how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.tournament-how-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.tournament-how-number {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(240, 180, 41, 0.12);
  border: 1px solid rgba(240, 180, 41, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  color: var(--gold);
  flex-shrink: 0;
}

.tournament-how-content {
  flex: 1;
  min-width: 0;
}

.tournament-how-step-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.tournament-how-step-desc {
  font-size: 12px;
  color: var(--t2);
  line-height: 1.5;
}

.tournament-leaderboard {
  background: rgba(240, 180, 41, 0.03);
  border: 1px solid rgba(240, 180, 41, 0.12);
  border-radius: 16px;
  overflow: hidden;
}

.tournament-leaderboard-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(240, 180, 41, 0.12);
}

.tournament-leaderboard-table {
  width: 100%;
  border-collapse: collapse;
}

.tournament-leaderboard-table thead {
  background: rgba(240, 180, 41, 0.05);
}

.tournament-leaderboard-table th {
  padding: 14px 16px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(240, 180, 41, 0.12);
}

.tournament-leaderboard-table th:first-child {
  padding-left: 24px;
  width: 80px;
}

.tournament-leaderboard-table th:last-child {
  padding-right: 24px;
}

.tournament-leaderboard-table tbody tr {
  border-bottom: 1px solid rgba(240, 180, 41, 0.06);
  transition: background 0.2s ease;
}

.tournament-leaderboard-table tbody tr:hover {
  background: rgba(240, 180, 41, 0.04);
}

.tournament-leaderboard-table tbody tr.current-user {
  background: rgba(240, 180, 41, 0.08);
  border-top: 1px solid rgba(240, 180, 41, 0.2);
  border-bottom: 1px solid rgba(240, 180, 41, 0.2);
}

.tournament-leaderboard-table td {
  padding: 16px;
  font-size: 13px;
  color: var(--t2);
}

.tournament-leaderboard-table td:first-child {
  padding-left: 24px;
}

.tournament-leaderboard-table td:last-child {
  padding-right: 24px;
}

.tournament-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(240, 180, 41, 0.08);
  font-size: 14px;
  font-weight: 800;
  color: var(--t2);
}

.tournament-rank.top3 {
  background: rgba(240, 180, 41, 0.15);
  color: var(--gold);
  font-size: 15px;
}

.tournament-rank.rank-1 {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
  color: #ffd700;
}

.tournament-rank.rank-2 {
  background: linear-gradient(135deg, rgba(192, 192, 192, 0.2) 0%, rgba(192, 192, 192, 0.1) 100%);
  color: #c0c0c0;
}

.tournament-rank.rank-3 {
  background: linear-gradient(135deg, rgba(205, 127, 50, 0.2) 0%, rgba(205, 127, 50, 0.1) 100%);
  color: #cd7f32;
}

.tournament-player-name {
  font-weight: 600;
  color: #fff;
}

.tournament-player-name.current {
  color: var(--gold);
  font-weight: 700;
}

.tournament-points {
  font-weight: 700;
  color: var(--gold);
}

.tournament-wagered,
.tournament-bets {
  color: var(--t3);
  font-size: 12px;
}

.tournament-prize {
  font-weight: 700;
  color: var(--gold);
  font-size: 13px;
}

.tournament-header-content {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.tournament-header-trophy {
  font-size: 32px;
  line-height: 1;
  filter: drop-shadow(0 0 12px rgba(240,180,41,0.4));
}

.tournament-header-label {
  font-size: 11px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 4px;
}

.tournament-prize-card {
  position: relative;
  text-align: center;
  padding: 40px 20px;
  margin-bottom: 24px;
  border-radius: 20px;
  background: linear-gradient(135deg,
    rgba(240,180,41,0.08) 0%,
    rgba(20,16,8,0.95) 40%,
    rgba(12,10,4,0.98) 100%
  );
  border: 1px solid rgba(240, 180, 41, 0.25);
  overflow: hidden;
}

.tournament-prize-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,180,41,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.tournament-prize-icon {
  font-size: 48px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 20px rgba(240,180,41,0.3));
}

.tournament-section {
  margin-bottom: 32px;
}

.tournament-prizes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.tournament-prize-item {
  background: rgba(240, 180, 41, 0.04);
  border: 1px solid rgba(240, 180, 41, 0.15);
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  transition: all 0.2s ease;
}

.tournament-prize-item:hover {
  background: rgba(240, 180, 41, 0.06);
  border-color: rgba(240, 180, 41, 0.25);
  transform: translateY(-2px);
}

.tournament-prize-item.tournament-prize-1st {
  border-color: rgba(255, 215, 0, 0.4);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(240, 180, 41, 0.04) 100%);
}

.tournament-prize-item.tournament-prize-2nd {
  border-color: rgba(192, 192, 192, 0.4);
  background: linear-gradient(135deg, rgba(192, 192, 192, 0.08) 0%, rgba(240, 180, 41, 0.04) 100%);
}

.tournament-prize-item.tournament-prize-3rd {
  border-color: rgba(205, 127, 50, 0.4);
  background: linear-gradient(135deg, rgba(205, 127, 50, 0.08) 0%, rgba(240, 180, 41, 0.04) 100%);
}

.tournament-prize-rank {
  font-size: 14px;
  font-weight: 800;
  color: var(--t2);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tournament-prize-1st .tournament-prize-rank {
  color: #ffd700;
}

.tournament-prize-2nd .tournament-prize-rank {
  color: #c0c0c0;
}

.tournament-prize-3rd .tournament-prize-rank {
  color: #cd7f32;
}

.tournament-prize-value {
  font-size: 24px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.tournament-prize-percent {
  font-size: 12px;
  color: var(--t3);
  font-weight: 600;
}

.tournament-prize-note {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(240, 180, 41, 0.06);
  border: 1px solid rgba(240, 180, 41, 0.15);
  border-radius: 12px;
  font-size: 12px;
  color: var(--t2);
  line-height: 1.5;
}

.tournament-prize-note i {
  color: var(--gold);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.tournament-rules {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.tournament-rule {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.tournament-rule-number {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(240, 180, 41, 0.12);
  border: 1px solid rgba(240, 180, 41, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  color: var(--gold);
  flex-shrink: 0;
}

.tournament-rule-content {
  flex: 1;
  min-width: 0;
}

.tournament-rule-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.tournament-rule-desc {
  font-size: 12px;
  color: var(--t2);
  line-height: 1.5;
}

.tournament-leaderboard-header {
  display: grid;
  grid-template-columns: 80px 1fr 120px 120px 100px 120px;
  gap: 16px;
  padding: 14px 24px;
  background: rgba(240, 180, 41, 0.05);
  border-bottom: 1px solid rgba(240, 180, 41, 0.12);
}

.tournament-lb-col {
  font-size: 11px;
  font-weight: 700;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tournament-leaderboard-body {
  max-height: 600px;
  overflow-y: auto;
}

.tournament-lb-row {
  display: grid;
  grid-template-columns: 80px 1fr 120px 120px 100px 120px;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(240, 180, 41, 0.06);
  transition: background 0.2s ease;
  align-items: center;
}

.tournament-lb-row:hover {
  background: rgba(240, 180, 41, 0.04);
}

.tournament-lb-row.current-user {
  background: rgba(240, 180, 41, 0.08);
  border-top: 1px solid rgba(240, 180, 41, 0.2);
  border-bottom: 1px solid rgba(240, 180, 41, 0.2);
}

.tournament-loading {
  padding: 60px 20px;
  text-align: center;
  color: var(--t3);
}

.tournament-loading .spinner {
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
  border: 3px solid rgba(240, 180, 41, 0.1);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
  .tournament-header {
    padding: 14px 16px;
  }

  .tournament-header-title {
    font-size: 16px;
  }

  .tournament-content {
    padding: 16px 12px 32px;
  }

  .tournament-prize-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 16px;
  }

  .tournament-prize-header-left {
    width: 100%;
  }

  .tournament-prize-header-icon {
    font-size: 28px;
  }

  .tournament-prize-header-amount {
    font-size: 28px;
  }

  .tournament-prize-header-right {
    width: 100%;
  }

  .tournament-prize-header-badge {
    width: 100%;
    justify-content: center;
    font-size: 12px;
    padding: 8px 12px;
  }

  .tournament-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
  }

  .tournament-info-card {
    padding: 12px;
  }

  .tournament-info-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 8px;
  }

  .tournament-info-icon i {
    width: 14px;
    height: 14px;
  }

  .tournament-info-value {
    font-size: 16px;
  }

  .tournament-info-label {
    font-size: 10px;
  }

  .tournament-section-title {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .tournament-section-title i {
    width: 16px;
    height: 16px;
  }

  .tournament-prizes-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 20px;
  }

  .tournament-prize-card {
    padding: 14px;
  }

  .tournament-how-section-top {
    margin-bottom: 20px;
  }

  .tournament-how-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .tournament-how-step {
    gap: 12px;
  }

  .tournament-how-number {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .tournament-how-step-title {
    font-size: 13px;
  }

  .tournament-how-step-desc {
    font-size: 11px;
  }

  .tournament-leaderboard-header {
    padding: 12px 12px;
    grid-template-columns: 50px 1fr 70px 70px 50px 70px;
    gap: 6px;
  }

  .tournament-lb-row {
    grid-template-columns: 50px 1fr 70px 70px 50px 70px;
    gap: 6px;
    padding: 10px 12px;
  }

  .tournament-lb-col {
    font-size: 10px;
  }

  .tournament-rank {
    min-width: 24px;
    height: 24px;
    font-size: 11px;
  }

  .tournament-player-name {
    font-size: 12px;
  }

  .tournament-points,
  .tournament-wagered,
  .tournament-bets,
  .tournament-prize {
    font-size: 10px;
  }

  .tournament-section {
    margin-bottom: 20px;
  }
}


/* ═══════════════════════════════════════════════
   ФИНАНСОВЫЙ МОДУЛЬ
═══════════════════════════════════════════════ */

.fin-modal {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  width: 540px;
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - 40px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
  animation: fadeIn .25s ease
}

/* Header */
.fin-modal-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border2);
  flex-shrink: 0
}

.fin-tabs { display: flex; gap: 4px }

.fin-tab {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--t3);
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: .2s
}

.fin-tab:hover { color: var(--t2); background: var(--bg3) }

.fin-tab.ac {
  color: var(--accent);
  background: rgba(46,204,113,.08);
  border-color: rgba(46,204,113,.2)
}

.fin-close {
  width: 30px; height: 30px;
  border-radius: 7px;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--t2);
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: .2s
}

.fin-close:hover { background: rgba(231,76,60,.1); color: var(--red); border-color: rgba(231,76,60,.2) }

/* Panel */
.fin-panel {
  padding: 18px;
  overflow-y: auto;
  flex: 1
}

.fin-panel::-webkit-scrollbar { width: 4px }
.fin-panel::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px }

.fin-section-label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--t3);
  margin-bottom: 8px;
  margin-top: 14px
}
.fin-section-label:first-child { margin-top: 0 }

/* Methods */
.fin-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 4px
}

.fin-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 11px 8px;
  border-radius: 10px;
  background: var(--bg3);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: .2s
}

.fin-method:hover { border-color: var(--accent) }

.fin-method.sel {
  background: rgba(46,204,113,.07);
  border-color: rgba(46,204,113,.35)
}

.fin-m-icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  background: rgba(255,255,255,.03)
}

.fin-m-name { font-size: 11px; font-weight: 700; color: var(--t1); text-align: center }
.fin-m-time { font-size: 9px; color: var(--t3) }

/* Payment methods (horizontal cards) */
.fin-methods-pay {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px
}

.fin-method-pay {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden
}

.fin-method-pay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,234,255,0.03), rgba(168,85,247,0.03));
  opacity: 0;
  transition: opacity 0.2s
}

.fin-method-pay:hover {
  border-color: rgba(0,234,255,0.3);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15)
}

.fin-method-pay:hover::before {
  opacity: 1
}

.fin-method-pay.sel {
  background: rgba(0,234,255,0.06);
  border-color: rgba(0,234,255,0.4);
  box-shadow: 0 0 0 1px rgba(0,234,255,0.1)
}

.fin-method-pay.sel::before {
  opacity: 1
}

.fin-pay-logo {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  position: relative;
  z-index: 1
}

.fin-pay-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  z-index: 1
}

.fin-pay-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--t1);
  letter-spacing: 0.2px
}

.fin-pay-coins {
  font-size: 11px;
  font-weight: 600;
  color: var(--t3);
  letter-spacing: 0.5px
}

.fin-pay-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(0,234,255,0.08);
  border: 1px solid rgba(0,234,255,0.15);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  letter-spacing: 0.3px
}

.fin-method-pay.sel .fin-pay-badge {
  background: rgba(0,234,255,0.15);
  border-color: rgba(0,234,255,0.3)
}

.fin-pay-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(0,234,255,0.3)
}

.fin-pay-check svg {
  width: 14px;
  height: 14px;
  color: #000;
  stroke-width: 3;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}

.fin-method-pay.sel .fin-pay-check {
  display: flex
}

/* Amount */
.fin-amount-row { margin-bottom: 8px }

.fin-amount-wrap {
  display: flex;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: .2s
}

.fin-amount-wrap:focus-within { border-color: var(--accent) }

.fin-currency {
  padding: 0 14px;
  font-size: 18px;
  font-weight: 800;
  color: var(--accent);
  flex-shrink: 0
}

.fin-amount-input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--t1);
  font-size: 22px;
  font-weight: 800;
  padding: 13px 12px 13px 0;
  font-family: inherit;
  font-variant-numeric: tabular-nums
}

.fin-amount-input:focus { outline: none }

.fin-quick-amounts {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 4px
}

.fin-quick-amounts button {
  flex: 1;
  min-width: 60px;
  padding: 7px 4px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 7px;
  color: var(--t2);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: .2s
}

.fin-quick-amounts button:hover { background: rgba(46,204,113,.08); border-color: rgba(46,204,113,.25); color: var(--accent) }

/* Bonus banner */
.fin-bonus-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(240,180,41,.04);
  border: 1px solid rgba(240,180,41,.12);
  border-radius: 10px;
  margin: 10px 0
}

/* Balance info */
.fin-balance-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 14px
}

.fin-bal-label { font-size: 11px; color: var(--t3); font-weight: 600 }
.fin-bal-val   { font-size: 20px; font-weight: 800; color: var(--accent); display: flex; align-items: center; gap: 7px }

/* Address input */
.fin-addr-wrap { margin-bottom: 4px }

.fin-addr-input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--t1);
  padding: 11px 13px;
  font-size: 12px;
  font-family: monospace;
  transition: .2s
}

.fin-addr-input:focus {
  outline: none;
  border-color: var(--accent)
}

.fin-addr-input::placeholder { color: var(--t3); font-family: inherit }

/* Error */
.fin-err {
  padding: 9px 13px;
  background: rgba(231,76,60,.08);
  border: 1px solid rgba(231,76,60,.2);
  border-radius: 8px;
  color: var(--red);
  font-size: 12px;
  font-weight: 600;
  margin: 8px 0
}

/* Submit button */
.fin-submit-btn {
  width: 100%;
  padding: 13px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  background: var(--accent);
  color: #000;
  cursor: pointer;
  transition: .2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 12px;
  letter-spacing: .3px
}

.fin-submit-btn:hover { background: var(--accent2) }
.fin-submit-btn:active { opacity: .9 }

.fin-submit-wd {
  background: #e67e22;
  color: #fff
}
.fin-submit-wd:hover { background: #d35400 }

.fin-note {
  font-size: 10px;
  color: var(--t3);
  text-align: center;
  margin-top: 10px;
  display: flex; align-items: center; justify-content: center; gap: 5px
}

.fin-note svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0
}

/* Hint blocks with icons */
#wdAddrHint {
  font-size: 11px;
  color: var(--t3);
  margin-top: 6px;
  margin-bottom: 4px;
  line-height: 1.5
}

#wdAddrHint svg {
  width: 14px;
  height: 14px;
  vertical-align: middle;
  margin-right: 4px;
  margin-top: -2px
}

.fin-sbp-info {
  font-size: 11px;
  color: var(--t3);
  margin-top: 6px;
  margin-bottom: 4px;
  line-height: 1.5
}

.fin-sbp-info svg {
  width: 14px;
  height: 14px;
  vertical-align: middle;
  margin-right: 4px;
  margin-top: -2px
}

/* History filters */
.fin-hist-type-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  justify-content: center
}

.fin-hist-type-tab {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--t3);
  cursor: pointer;
  transition: .2s;
  display: flex;
  align-items: center;
  gap: 6px
}

.fin-hist-type-tab svg {
  width: 14px;
  height: 14px
}

.fin-hist-type-tab:hover {
  color: var(--t2);
  background: var(--bg2)
}

.fin-hist-type-tab.ac {
  background: rgba(0,234,255,.08);
  border-color: rgba(0,234,255,.25);
  color: var(--cyan)
}

.fin-hist-filters {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
  flex-wrap: wrap
}

.fin-hf {
  padding: 5px 12px;
  border-radius: 7px;
  font-size: 11px;
  font-weight: 700;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--t3);
  cursor: pointer;
  transition: .2s
}

.fin-hf:hover { color: var(--t2) }
.fin-hf.ac { background: rgba(46,204,113,.08); border-color: rgba(46,204,113,.25); color: var(--accent) }

/* History list */
.fin-hist-list { display: flex; flex-direction: column; gap: 8px; min-height: 120px }

.fin-hist-empty {
  text-align: center;
  padding: 40px;
  color: var(--t3);
  font-size: 13px;
  line-height: 1.8
}

/* History item wrapper */
.fin-hist-item-wrap {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.2s ease
}

.fin-hist-item-wrap:hover {
  border-color: rgba(0,234,255,0.2);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1)
}

/* History item */
.fin-hist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  cursor: pointer;
  position: relative;
  transition: background 0.2s ease
}

.fin-hist-item:hover {
  background: rgba(0,234,255,0.03)
}

.fin-hi-arrow {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--t3)
}

.fin-hi-arrow svg {
  width: 16px;
  height: 16px
}

.fin-hi-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  flex-shrink: 0
}

.fin-hi-icon.dep { background: rgba(46,204,113,.08); color: var(--accent) }
.fin-hi-icon.wd  { background: rgba(230,126,34,.08);  color: #e67e22 }

.fin-hi-body { flex: 1; min-width: 0 }
.fin-hi-title { font-size: 13px; font-weight: 700; color: var(--t1) }
.fin-hi-meta  { font-size: 10px; color: var(--t3); margin-top: 2px }
.fin-hi-right { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; flex-shrink: 0 }
.fin-hi-amount { font-size: 14px; font-weight: 800 }
.fin-hi-amount.dep { color: var(--accent) }
.fin-hi-amount.wd  { color: #e67e22 }

.fin-hi-status {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 6px
}

.fin-hi-status.pending    { background: rgba(240,180,41,.1);  color: var(--gold);   border: 1px solid rgba(240,180,41,.2) }
.fin-hi-status.completed  { background: rgba(46,204,113,.08); color: var(--accent); border: 1px solid rgba(46,204,113,.15) }
.fin-hi-status.cancelled  { background: rgba(231,76,60,.08);  color: var(--red);    border: 1px solid rgba(231,76,60,.15) }
.fin-hi-status.processing { background: rgba(52,152,219,.08); color: var(--blue);   border: 1px solid rgba(52,152,219,.2) }

.fin-hi-cancel {
  font-size: 10px;
  font-weight: 700;
  color: var(--t3);
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 3px 8px;
  cursor: pointer;
  transition: .2s;
  margin-top: 3px;
  display: inline-flex;
  align-items: center;
  gap: 4px
}

.fin-hi-cancel svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0
}

.fin-hi-cancel:hover { color: var(--red); border-color: rgba(231,76,60,.25); background: rgba(231,76,60,.06) }

/* Withdrawal details */
.fin-hi-details {
  padding: 14px;
  background: rgba(0,234,255,0.02);
  border-top: 1px solid var(--border2);
  animation: slideDown 0.3s ease
}

.fin-hi-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-bottom: 12px
}

.fin-hi-detail {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.fin-hi-detail-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: 0.5px
}

.fin-hi-detail-value {
  font-size: 12px;
  font-weight: 600;
  color: var(--t1);
  word-break: break-all
}

.fin-hi-cancel-btn {
  width: 100%;
  padding: 8px 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--t3);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px
}

.fin-hi-cancel-btn svg {
  width: 14px;
  height: 14px
}

.fin-hi-cancel-btn:hover {
  color: var(--red);
  border-color: rgba(231,76,60,.3);
  background: rgba(231,76,60,.06)
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0
  }
  to {
    opacity: 1;
    max-height: 500px;
    padding-top: 14px;
    padding-bottom: 14px
  }
}

@media (max-width: 600px) {
  .fin-modal {
    border-radius: 0 0 14px 14px;
    max-height: 90vh;
    align-self: flex-start;
    margin-top: 20px
  }
  .dep-overlay {
    align-items: flex-start;
    padding-top: max(env(safe-area-inset-top, 0), 20px)
  }
  .fin-methods { grid-template-columns: repeat(2, 1fr) }
  .fin-tabs { gap: 2px; flex: 1; min-width: 0 }
  .fin-tab {
    padding: 6px 8px;
    font-size: 10px;
    white-space: nowrap;
    flex: 1;
    justify-content: center
  }
  .fin-tab svg { width: 12px; height: 12px }
  .fin-modal-hd { padding: 12px 14px; gap: 8px }
  .fin-close {
    width: 32px;
    height: 32px;
    flex-shrink: 0
  }
  .fin-close svg { width: 18px; height: 18px }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px) }
  to   { opacity: 1; transform: translateY(0) }
}

/* ═══════════════════════════════════════════════
   CONFIRMATION MODAL
═══════════════════════════════════════════════ */
.confirm-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.confirm-modal.active {
  display: flex;
}

.confirm-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.2s ease;
}

.confirm-box {
  position: relative;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  animation: confirmSlideIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

@keyframes confirmSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.confirm-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 77, 77, 0.1);
  border: 2px solid rgba(255, 77, 77, 0.3);
  border-radius: 50%;
  color: #ff4d4d;
}

.confirm-icon svg {
  width: 28px;
  height: 28px;
}

.confirm-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--t1);
  margin-bottom: 8px;
}

.confirm-text {
  font-size: 14px;
  color: var(--t2);
  line-height: 1.6;
  margin-bottom: 24px;
}

.confirm-buttons {
  display: flex;
  gap: 10px;
}

.confirm-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.confirm-btn svg {
  width: 16px;
  height: 16px;
}

.confirm-no {
  background: var(--bg3);
  color: var(--t2);
  border: 1px solid var(--border);
}

.confirm-no:hover {
  background: var(--bg1);
  color: var(--t1);
}

.confirm-yes {
  background: linear-gradient(135deg, #ff4d4d 0%, #ff1744 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 77, 77, 0.3);
}

.confirm-yes:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255, 77, 77, 0.4);
}

.confirm-yes:active {
  transform: translateY(0);
}

@media (max-width: 600px) {
  .confirm-box {
    padding: 24px 20px;
    max-width: 340px;
  }

  .confirm-icon {
    width: 48px;
    height: 48px;
  }

  .confirm-icon svg {
    width: 24px;
    height: 24px;
  }

  .confirm-title {
    font-size: 18px;
  }

  .confirm-text {
    font-size: 13px;
  }

  .confirm-buttons {
    flex-direction: column-reverse;
  }
}

/* ═══════════════════════════════════════════════
   FIRST DEPOSIT BONUS
═══════════════════════════════════════════════ */

/* First Deposit Bonus Notification */
.first-deposit-bonus-notif {
  position: fixed;
  top: 80px;
  right: 20px;
  background: linear-gradient(135deg, rgba(255,215,0,0.98) 0%, rgba(255,165,0,0.98) 100%);
  border: 2px solid rgba(255,215,0,0.6);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 32px rgba(255,215,0,0.5), 0 0 60px rgba(255,215,0,0.3);
  z-index: 10000;
  min-width: 320px;
  max-width: 400px;
  transform: translateX(450px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.first-deposit-bonus-notif.show {
  transform: translateX(0);
  opacity: 1;
}

.fdb-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  animation: fdbPulse 2s ease-in-out infinite;
}

@keyframes fdbPulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.fdb-icon {
  width: 56px;
  height: 56px;
  background: rgba(0,0,0,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #000;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.fdb-icon i {
  width: 32px;
  height: 32px;
}

.fdb-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.fdb-title {
  font-size: 15px;
  font-weight: 800;
  color: #000;
  margin-bottom: 6px;
  text-shadow: 0 1px 2px rgba(255,255,255,0.3);
}

.fdb-amount {
  font-size: 24px;
  font-weight: 900;
  color: #000;
  margin-bottom: 8px;
  line-height: 1;
}

.fdb-bonus {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.fdb-bonus-label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(0,0,0,0.7);
  background: rgba(0,0,0,0.1);
  padding: 4px 8px;
  border-radius: 6px;
}

.fdb-bonus-amount {
  font-size: 16px;
  font-weight: 800;
  color: #000;
}

.fdb-total {
  font-size: 13px;
  font-weight: 600;
  color: rgba(0,0,0,0.8);
}

.fdb-total strong {
  color: #000;
  font-weight: 900;
}

.fdb-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  background: rgba(0,0,0,0.1);
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 2;
}

.fdb-close:hover {
  background: rgba(0,0,0,0.2);
  transform: scale(1.1);
}

.fdb-close i {
  width: 16px;
  height: 16px;
  color: #000;
}

/* Deposit Bonus Info Banner */
.deposit-bonus-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: linear-gradient(135deg, rgba(255,215,0,0.08) 0%, rgba(255,165,0,0.08) 100%);
  border: 1px solid rgba(255,215,0,0.25);
  border-radius: 12px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.deposit-bonus-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: dbbShine 3s ease-in-out infinite;
}

@keyframes dbbShine {
  0% { left: -100%; }
  50%, 100% { left: 200%; }
}

.dbb-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(255,215,0,0.2) 0%, rgba(255,165,0,0.2) 100%);
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.dbb-icon i {
  width: 24px;
  height: 24px;
}

.dbb-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.dbb-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--t1);
  margin-bottom: 8px;
}

.dbb-tiers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dbb-tier {
  font-size: 11px;
  font-weight: 700;
  color: var(--t2);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  transition: all 0.2s;
}

.dbb-tier:hover {
  background: rgba(255,215,0,0.1);
  border-color: rgba(255,215,0,0.3);
  color: var(--gold);
  transform: translateY(-1px);
}

.dbb-tier.highlight {
  background: linear-gradient(135deg, rgba(255,215,0,0.15) 0%, rgba(255,165,0,0.15) 100%);
  border-color: rgba(255,215,0,0.4);
  color: var(--gold);
  box-shadow: 0 0 12px rgba(255,215,0,0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .first-deposit-bonus-notif {
    right: 10px;
    left: 10px;
    min-width: auto;
    max-width: none;
    padding: 16px;
  }

  .fdb-icon {
    width: 48px;
    height: 48px;
    font-size: 28px;
  }

  .fdb-icon i {
    width: 28px;
    height: 28px;
  }

  .fdb-title {
    font-size: 14px;
  }

  .fdb-amount {
    font-size: 20px;
  }

  .fdb-bonus-amount {
    font-size: 14px;
  }

  .deposit-bonus-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 16px;
  }

  .dbb-icon {
    width: 40px;
    height: 40px;
  }

  .dbb-icon i {
    width: 20px;
    height: 20px;
  }

  .dbb-tiers {
    width: 100%;
  }

  .dbb-tier {
    flex: 1;
    text-align: center;
    font-size: 10px;
    padding: 4px 6px;
  }
}
