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

/* Адаптация под светлую тему */
.bg-dark {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-card) 100%) !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);
}

/* VIP Level Cards */
.vip-level-card {
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}

.vip-level-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.vip-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--gradient-accent);
  color: white;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

/* Benefits List */
.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  border-bottom: 1px solid var(--border-color);
}

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

.benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
  font-size: 1.25rem;
}

/* Table Styling */
.table-responsive {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.table {
  color: var(--text-primary);
  margin-bottom: 0;
}

.table thead {
  background: var(--gradient-primary);
  color: white;
}

.table thead th {
  border: none;
  padding: 1rem;
  font-weight: 600;
}

.table tbody td {
  padding: 1rem;
  border-color: var(--border-color);
  vertical-align: middle;
}

.table tbody tr:hover {
  background-color: rgba(0,0,0,0.02);
}

/* CTA Section */
.vip-cta {
  background: var(--gradient-accent);
  color: white;
  padding: 3rem 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.vip-cta h2 {
  color: white;
  margin-bottom: 1rem;
}

.vip-cta p {
  color: rgba(255,255,255,0.95);
  margin-bottom: 1.5rem;
}

/* Progress Indicator */
.vip-progress {
  background-color: rgba(0,0,0,0.1);
  border-radius: 2rem;
  padding: 0.5rem;
  margin-bottom: 2rem;
}

.vip-progress-bar {
  background: var(--gradient-primary);
  height: 0.5rem;
  border-radius: 2rem;
  transition: width 0.3s ease;
}

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