/* Adaptive theme styles */
.bg-light {
  background: linear-gradient(135deg, var(--card-bg) 0%, rgba(255,255,255,0.05) 100%) !important;
  border: 1px solid var(--card-border);
  color: var(--text-light) !important;
}

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

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

.card.bg-dark {
  background: linear-gradient(135deg, var(--primary-dark) 0%, rgba(0,0,0,0.8) 100%) !important;
  color: var(--text-light) !important;
}

.card.bg-light {
  background: linear-gradient(135deg, var(--card-bg) 0%, rgba(255,255,255,0.05) 100%) !important;
  color: var(--text-light) !important;
}

.table {
  color: var(--text-light);
  border-color: var(--card-border);
  background-color: transparent;
}

.table thead {
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-purple) 100%);
  color: var(--text-light);
  border-bottom: 2px solid var(--primary-gold);
}

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

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

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

.verification-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--gradient-accent);
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0.5rem 0.5rem 0.5rem 0;
  box-shadow: var(--shadow-sm);
}

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

.requirement-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  border-bottom: 1px solid var(--card-border);
}

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

.requirement-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-gold);
  font-weight: bold;
  font-size: 1.2rem;
}

.bonus-highlight {
  background: var(--gradient-secondary);
  padding: 2rem;
  border-radius: 15px;
  border: 2px solid var(--primary-gold);
  margin: 2rem 0;
  box-shadow: var(--shadow-lg);
}

.cta-section {
  background: var(--gradient-dark);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  margin-top: 3rem;
  box-shadow: var(--shadow-lg);
}

.info-box {
  background: rgba(255,215,0,0.1);
  border-left: 4px solid var(--primary-gold);
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 5px;
}