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

/* Адаптация к темной теме */
.bg-light {
  background-color: var(--dark-card) !important;
  color: var(--light-text) !important;
}

.card {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

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

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
  color: #fff;
}

.requirement-card {
  border-left: 4px solid var(--primary-cyan);
  padding-left: 1rem;
}

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

.alert-info {
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(138, 43, 226, 0.1));
  border: 1px solid var(--primary-cyan);
  border-radius: 12px;
  padding: 1.5rem;
  color: var(--light-text);
}

.verification-step {
  position: relative;
  padding-left: 2.5rem;
}

.verification-step::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  background: var(--accent-green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

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

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

.table-dark {
  --bs-table-bg: var(--dark-card);
  --bs-table-striped-bg: rgba(255, 255, 255, 0.05);
  --bs-table-border-color: rgba(255, 255, 255, 0.1);
}

.cta-box {
  background: var(--gradient-card);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.security-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(0, 255, 135, 0.1);
  border: 1px solid var(--accent-green);
  border-radius: 20px;
  color: var(--accent-green);
  font-size: 0.9rem;
  margin: 0.25rem;
}

@media (max-width: 768px) {
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}