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

/* Адаптация к теме */
.bg-light {
  background-color: var(--dark-card) !important;
  color: var(--text-light) !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-lg);
}

.vip-tier {
  position: relative;
  overflow: hidden;
}

.vip-tier::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-primary);
}

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

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

.comparison-table {
  background: var(--dark-card);
  border-radius: 8px;
  overflow: hidden;
}

.table {
  color: var(--text-light);
  border-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 0;
}

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

.table thead th {
  border-color: rgba(255, 255, 255, 0.1);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.875rem;
  padding: 1rem;
}

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

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

.check-icon {
  color: var(--accent);
  font-weight: bold;
}

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

.progress-bar-custom {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  overflow: hidden;
  margin-top: 0.5rem;
}

.progress-fill {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 50px;
}