:root {
  --payment-card-bg: #1a1d29;
  --payment-card-hover: #252938;
}

.bg-light {
  background-color: var(--dark-lighter, #1e2130) !important;
  color: var(--text-primary, #ffffff) !important;
}

.card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

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

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

.table-dark {
  --bs-table-bg: var(--dark-card, #1a1d29);
  --bs-table-striped-bg: rgba(255, 255, 255, 0.02);
  --bs-table-border-color: rgba(255, 255, 255, 0.1);
}

.table thead {
  background: var(--dark-card, #1a1d29);
  border-bottom: 2px solid var(--accent, #ffd700);
}

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

.payment-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--gradient-1, #667eea), var(--gradient-2, #764ba2));
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.method-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent, #ffd700), var(--accent-dark, #ffa500));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-md);
}

.security-badge {
  background: rgba(40, 167, 69, 0.1);
  border: 2px solid #28a745;
  border-radius: 8px;
  padding: 1rem;
  margin: 2rem 0;
}

.list-check li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
}

.list-check li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent, #ffd700);
  font-weight: bold;
  font-size: 1.2rem;
}