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

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

.bg-dark {
  background: linear-gradient(135deg, var(--dark-card), var(--dark-lighter)) !important;
  color: var(--text-primary) !important;
  border: 1px solid var(--border-color);
}

/* VIP Badge */
.vip-badge {
  display: inline-block;
  background: var(--gradient-accent);
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-glow);
  margin-bottom: 1.5rem;
}

/* VIP Levels */
.vip-level-card {
  position: relative;
  transition: var(--transition);
  border: 2px solid transparent;
}

.vip-level-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}

.level-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: var(--gradient-primary);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}

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

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

.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.2rem;
}

/* Comparison Table */
.table {
  color: var(--text-primary);
  border-color: var(--border-color);
  background: transparent;
}

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

.table tbody tr {
  border-color: var(--border-color);
}

.table tbody tr:hover {
  background: rgba(255, 255, 255, 0.05);
}

.table-responsive {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

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

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

.cta-vip p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* Feature Icons */
.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
}

/* Progress Bar */
.vip-progress {
  height: 30px;
  background: var(--dark-lighter);
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  margin: 2rem 0;
  border: 1px solid var(--border-color);
}

.vip-progress-bar {
  height: 100%;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}