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

.card {
  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-lg);
}

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

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

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

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  transition: all 0.3s ease;
}

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

.login-steps {
  position: relative;
  padding-left: 50px;
  margin-bottom: 30px;
}

.login-steps::before {
  content: attr(data-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 35px;
  height: 35px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--dark-navy);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
}

.alert-info {
  background: linear-gradient(135deg, rgba(0, 191, 255, 0.1), rgba(0, 229, 255, 0.1));
  border-left: 4px solid var(--accent-cyan);
  color: var(--text-light);
}