/* Theme-aware styles */
.bg-light {
  background-color: var(--dark-alt) !important;
  color: var(--text) !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);
}

.card.bg-dark {
  background: linear-gradient(135deg, var(--dark-alt) 0%, var(--dark) 100%) !important;
}

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

.requirement-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--gradient-2);
  border-radius: 2rem;
  font-size: 0.9rem;
  margin: 0.25rem;
  color: #fff;
}

.info-box {
  padding: 1.5rem;
  background: var(--dark-alt);
  border-left: 4px solid var(--accent);
  border-radius: 0.5rem;
  margin-bottom: 2rem;
}

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

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

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

.benefit-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

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

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