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

/* Адаптация к светлой теме */
.bg-dark {
  background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%) !important;
  color: var(--light) !important;
  border: none;
}

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

.card {
  border-radius: 12px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

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

.vip-tier {
  position: relative;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--primary);
}

.tier-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--gradient-1);
  color: white;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

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

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

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

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

.progress-bar-custom {
  height: 8px;
  background: rgba(0,0,0,0.1);
  border-radius: 10px;
  overflow: hidden;
  margin: 1rem 0;
}

.progress-fill {
  height: 100%;
  background: var(--gradient-1);
  border-radius: 10px;
  transition: width 0.3s ease;
}

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

.btn-primary {
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: var(--transition);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}