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

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

.card {
  background: var(--dark-soft);
  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-glow);
}

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

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

.table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.vip-tier {
  position: relative;
  padding: 2rem;
  border-radius: 12px;
  overflow: hidden;
}

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

.tier-bronze::before { background: linear-gradient(90deg, #CD7F32 0%, #B87333 100%); }
.tier-silver::before { background: linear-gradient(90deg, #C0C0C0 0%, #A8A8A8 100%); }
.tier-gold::before { background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%); }
.tier-platinum::before { background: linear-gradient(90deg, #E5E4E2 0%, #BCC6CC 100%); }
.tier-diamond::before { background: linear-gradient(90deg, #B9F2FF 0%, #00CED1 100%); }

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

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

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

.cta-box {
  background: var(--gradient-primary);
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  margin: 3rem 0;
}

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

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