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

/* Адаптация под темную тему */
.bg-light {
  background-color: var(--dark-lighter) !important;
  color: var(--text-primary) !important;
}

.card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

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

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

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

.table td, .table th {
  border-color: rgba(255, 255, 255, 0.1);
  padding: 1rem;
}

.vip-tier {
  position: relative;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.vip-tier::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 12px 12px 0 0;
}

.tier-bronze { border-left: 4px solid #CD7F32; }
.tier-silver { border-left: 4px solid #C0C0C0; }
.tier-gold { border-left: 4px solid #FFD700; }
.tier-platinum { border-left: 4px solid #E5E4E2; }
.tier-diamond { border-left: 4px solid #B9F2FF; }

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

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

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

@media (max-width: 768px) {
  .vip-tier {
    padding: 1.5rem;
  }
  
  .cta-box {
    padding: 2rem 1rem;
  }
}