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

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

.bg-dark .card-text,
.bg-dark p,
.bg-dark ul,
.bg-dark li {
  color: #FFFFFF !important;
}

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

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

.table thead {
  background: var(--primary);
  color: var(--text-light);
  border-bottom: 2px solid var(--border);
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0,0,0,0.05);
}

.payment-icon {
  width: 60px;
  height: 40px;
  background: var(--light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--dark);
  margin-bottom: 1rem;
}

.feature-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--accent);
  color: white;
  border-radius: 20px;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
}

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

.step-number {
  width: 50px;
  height: 50px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.info-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--accent);
  margin-bottom: 2rem;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}