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

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

.bg-light {
  background: var(--light-navy) !important;
  color: var(--text-primary) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
}

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

.vip-tier {
  position: relative;
  padding: 2rem;
  margin-bottom: 2rem;
}

.vip-tier::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: var(--gradient-accent);
}

.tier-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: var(--gradient-main);
  border-radius: 25px;
  font-weight: 600;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-md);
}

.benefit-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;
}

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

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

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

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

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

.table tbody td {
  padding: 1rem;
  vertical-align: middle;
}

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

.cta-section {
  background: var(--gradient-main);
  padding: 3rem 2rem;
  border-radius: 15px;
  text-align: center;
  margin-top: 3rem;
  box-shadow: var(--shadow-lg);
}

.btn-primary {
  background: var(--gradient-accent);
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-glow);
}

.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-accent);
  border-radius: 10px;
  transition: width 0.6s ease;
}

@media (max-width: 768px) {
  .vip-tier {
    padding: 1.5rem;
  }
  
  .tier-badge {
    font-size: 0.9rem;
    padding: 0.4rem 1rem;
  }
}