/* Theme adaptation for dark site */
.bg-light {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1)) !important;
  border: 1px solid rgba(139, 92, 246, 0.2);
  color: var(--text-primary) !important;
}

.card {
  background: var(--dark-card);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card.bg-dark {
  background: var(--dark-card) !important;
  border-color: var(--border-color);
}

.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-bottom: 1rem;
  color: white;
  box-shadow: var(--shadow-glow);
}

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

.verification-list {
  list-style: none;
  padding: 0;
}

.verification-list li {
  padding: 1rem;
  margin-bottom: 0.75rem;
  background: var(--dark-lighter);
  border-left: 4px solid var(--accent-color);
  border-radius: 4px;
}

.verification-list li::before {
  content: "✓";
  color: var(--accent-color);
  font-weight: bold;
  margin-right: 0.75rem;
  font-size: 1.2rem;
}

.security-highlight {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(236, 72, 153, 0.15));
  border: 2px solid var(--primary-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
}

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

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

.table tbody tr {
  border-color: var(--border-color);
}

.table tbody tr:hover {
  background: var(--dark-lighter);
}

.cta-registration {
  background: var(--gradient-primary);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  margin: 3rem 0;
  box-shadow: var(--shadow-lg);
}

.bonus-highlight {
  background: var(--gradient-accent);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-weight: bold;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-primary);
  box-shadow: var(--shadow-glow);
}