/* Защита от горизонтального скролла */
html, body { 
  overflow-x: hidden; 
  max-width: 100vw; 
}

/* Адаптация к темной теме */
.bg-light {
  background-color: var(--dark-card) !important;
  color: var(--text-primary) !important;
  border: 1px solid rgba(255,255,255,0.1);
}

.table {
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.1);
}

.table-dark {
  --bs-table-bg: var(--dark-card);
  --bs-table-striped-bg: var(--dark-alt);
  --bs-table-border-color: rgba(255,255,255,0.1);
}

.table thead {
  background: var(--dark-card);
  border-bottom: 2px solid var(--primary);
}

.table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.vip-tier-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.vip-tier-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.tier-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 1px;
}

.tier-bronze { background: linear-gradient(135deg, #CD7F32, #B87333); }
.tier-silver { background: linear-gradient(135deg, #C0C0C0, #A8A8A8); }
.tier-gold { background: linear-gradient(135deg, #FFD700, #FFA500); }
.tier-platinum { background: linear-gradient(135deg, #E5E4E2, #D3D3D3); color: #000; }
.tier-diamond { background: linear-gradient(135deg, #B9F2FF, #00CED1); color: #000; }

.cta-vip {
  background: var(--gradient-accent);
  padding: 3rem 2rem;
  border-radius: 1rem;
  text-align: center;
  margin: 3rem 0;
}

.progress-custom {
  height: 30px;
  background-color: var(--dark-alt);
  border-radius: 1rem;
  overflow: hidden;
}

.progress-bar-custom {
  background: var(--gradient-primary);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: width 0.6s ease;
}