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

/* Адаптация под светлую тему */
.bg-dark {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-alt) 100%) !important;
  color: var(--text-primary) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.bg-light {
  background-color: var(--light) !important;
  color: var(--text-dark) !important;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.table {
  color: var(--text-primary);
  border-color: var(--border-color);
}

.table-dark {
  --bs-table-bg: var(--dark-card);
  --bs-table-striped-bg: var(--dark-lighter);
  --bs-table-border-color: var(--border-color);
}

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

.vip-tier {
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vip-tier:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.tier-bronze { background: linear-gradient(135deg, #CD7F32 0%, #8B5A2B 100%); }
.tier-silver { background: linear-gradient(135deg, #C0C0C0 0%, #808080 100%); }
.tier-gold { background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%); color: #000 !important; }
.tier-platinum { background: linear-gradient(135deg, #E5E4E2 0%, #B4B4B4 100%); }
.tier-diamond { background: linear-gradient(135deg, #B9F2FF 0%, #00CED1 100%); color: #000 !important; }

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

.progress-tracker {
  background: var(--dark-card);
  padding: 2rem;
  border-radius: 15px;
  margin: 2rem 0;
}

.progress {
  height: 10px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.1);
}

.progress-bar {
  background: var(--gradient-2);
}

.cta-vip {
  background: var(--gradient-1);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-vip:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.feature-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-list li:last-child {
  border-bottom: none;
}

@media (max-width: 768px) {
  .vip-tier {
    margin-bottom: 1.5rem;
  }
}