/* Адаптация Bootstrap к теме казино */
.bg-light {
  background: linear-gradient(135deg, var(--neutral-dark) 0%, rgba(26, 35, 46, 0.95) 100%) !important;
  color: var(--text-primary) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card {
  background: var(--neutral-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

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

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

.table thead {
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 2px solid var(--accent-coral);
}

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

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

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-coral), var(--primary-bright));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
  box-shadow: var(--shadow-md);
}

.requirement-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid var(--accent-coral);
  border-radius: 20px;
  color: var(--accent-coral);
  font-size: 0.9rem;
  margin: 0.25rem;
}

.benefit-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary-bright), var(--accent-mint));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.verification-timeline {
  position: relative;
  padding-left: 40px;
}

.verification-timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-coral), var(--accent-mint));
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-coral);
  box-shadow: 0 0 0 4px var(--neutral-dark), 0 0 10px var(--accent-coral);
}

.alert-info {
  background: rgba(80, 200, 120, 0.1);
  border-left: 4px solid var(--accent-mint);
  color: var(--text-primary);
  padding: 1rem 1.5rem;
  border-radius: 8px;
}

.alert-warning {
  background: rgba(255, 107, 107, 0.1);
  border-left: 4px solid var(--accent-coral);
  color: var(--text-primary);
  padding: 1rem 1.5rem;
  border-radius: 8px;
}