/* Dark theme adaptations */
.bg-light {
  background-color: var(--color-dark-alt, #1a1a2e) !important;
  color: var(--color-text, #ffffff) !important;
}

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

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg, 0 10px 40px rgba(0, 0, 0, 0.3));
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary, linear-gradient(135deg, #667eea 0%, #764ba2 100%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-accent, linear-gradient(135deg, #f093fb 0%, #f5576c 100%));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.requirements-list {
  list-style: none;
  padding-left: 0;
}

.requirements-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.requirements-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent, #00d4ff);
  font-weight: bold;
  font-size: 1.2rem;
}

.requirements-list li:last-child {
  border-bottom: none;
}

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

.table thead {
  background: var(--color-card-bg, #16213e);
  border-bottom: 2px solid var(--color-primary, #667eea);
}

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

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

.alert-custom {
  background: var(--color-dark-alt, #1a1a2e);
  border-left: 4px solid var(--color-accent, #00d4ff);
  padding: 1.5rem;
  border-radius: var(--border-radius, 8px);
  margin-bottom: 2rem;
}

.btn-primary {
  background: var(--gradient-primary, linear-gradient(135deg, #667eea 0%, #764ba2 100%));
  border: none;
  padding: 0.875rem 2rem;
  font-weight: 600;
  box-shadow: var(--shadow-md, 0 4px 15px rgba(0, 0, 0, 0.2));
  transition: var(--transition, all 0.3s ease);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg, 0 10px 40px rgba(0, 0, 0, 0.3));
}

.verification-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--gradient-accent, linear-gradient(135deg, #f093fb 0%, #f5576c 100%));
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 0.5rem;
}