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

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

.bg-dark {
  background: var(--dark-card) !important;
  color: var(--text-light) !important;
  border: 1px solid var(--border-color);
}

/* VIP Level Cards */
.vip-level-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

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

/* Benefits Grid */
.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--dark-lighter);
  border-radius: 8px;
  border-left: 3px solid var(--primary-coral);
}

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

/* Table Styling */
.table-responsive {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
}

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

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

.table thead th {
  border-color: var(--border-color);
  color: var(--text-light);
  font-weight: 600;
  padding: 1rem;
}

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

.table tbody tr {
  background: var(--dark-lighter);
}

.table tbody tr:hover {
  background: var(--dark-card);
}

/* CTA Section */
.cta-box {
  background: var(--gradient-dark);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border: 2px solid var(--primary-coral);
  margin: 2rem 0;
}

.cta-box h3 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

/* Timeline */
.timeline-item {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  background: var(--primary-coral);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--dark-card);
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 16px;
  width: 2px;
  height: calc(100% + 1rem);
  background: var(--border-color);
}

.timeline-item:last-child::after {
  display: none;
}

/* Progress Indicator */
.progress-bar {
  background: var(--gradient-primary) !important;
}

/* Responsive */
@media (max-width: 768px) {
  .benefit-item {
    flex-direction: column;
    text-align: center;
  }
  
  .benefit-icon {
    margin: 0 auto 1rem;
  }
}