.bg-light {
  background-color: var(--dark-slate) !important;
  color: var(--text-primary) !important;
}

.card {
  border: 1px solid var(--dark-steel);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

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

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

.table-dark {
  --bs-table-bg: var(--dark-slate);
  --bs-table-striped-bg: var(--dark-obsidian);
  --bs-table-border-color: var(--dark-steel);
}

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

.table tbody tr {
  border-bottom: 1px solid var(--dark-steel);
}

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

.security-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--dark-steel);
  border-radius: 20px;
  font-size: 0.9rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--accent-electric);
  color: var(--dark-obsidian);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 1rem;
}

.highlight-box {
  background: var(--dark-slate);
  border-left: 4px solid var(--accent-turquoise);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}