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

/* Адаптация к светлой теме */
.bg-dark {
  background: linear-gradient(135deg, var(--dark-card), var(--dark-lighter)) !important;
  color: var(--text-primary) !important;
  border: 1px solid var(--border-color);
}

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

.table {
  color: #000000 !important;
  border-color: var(--border-color);
}

.table td,
.table th {
  color: #000000 !important;
}

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

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255,255,255,0.02);
}

.vip-tier {
  border-left: 4px solid var(--accent);
  transition: all 0.3s ease;
}

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

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

.progress-bar-vip {
  background: var(--gradient-primary);
  height: 8px;
  border-radius: 4px;
}

.timeline-vip {
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid var(--border-color);
}

.timeline-vip::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.cta-vip {
  background: var(--gradient-primary);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 3rem;
}

.cta-vip h2,
.cta-vip p {
  color: #000000 !important;
}