.bg-light {
  background-color: var(--dark-elevated) !important;
  color: var(--text-primary) !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);
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--primary-coral);
  color: var(--dark-base);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 15px;
}

.alert-custom {
  background: var(--dark-elevated);
  border-left: 4px solid var(--accent-electric);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
}

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

.table thead {
  background: var(--dark-elevated);
  border-bottom: 2px solid var(--primary-coral);
}

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

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

.card.bg-light.text-dark {
  max-width: 100%;
  box-sizing: border-box;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.card.bg-light.text-dark .card-body {
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
  box-sizing: border-box;
  padding-bottom: 1rem;
}

.card.bg-light.text-dark .card-body ul {
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
  margin-bottom: 0;
}

.card.bg-dark.text-light.mb-5 {
  max-width: 100%;
  box-sizing: border-box;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.card.bg-dark.text-light.mb-5 .card-body {
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
  box-sizing: border-box;
  padding-bottom: 1rem;
}

.card.bg-dark.text-light.mb-5 .card-body .row {
  margin-bottom: 0;
}

.row.card-spacing {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.row.card-spacing .col-lg-12 {
  padding-left: 1rem;
  padding-right: 1rem;
}