.bg-light {
  background: linear-gradient(135deg, var(--light) 0%, rgba(255,255,255,0.95) 100%) !important;
  color: #000000 !important;
  border: 1px solid rgba(0,0,0,0.08);
}

.bg-light .card-title,
.bg-light .card-text,
.bg-light h3,
.bg-light h4,
.bg-light h5,
.bg-light p,
.bg-light ul,
.bg-light li {
  color: #000000 !important;
}

.text-dark {
  color: #000000 !important;
}

.bg-dark {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-secondary) 100%) !important;
  color: var(--text-primary) !important;
  border: 1px solid var(--border-color);
}

.card {
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

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

.bonus-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--gradient-primary);
  color: white;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

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

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

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

.bonus-highlight {
  background: var(--gradient-accent);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  color: #000000;
  text-align: center;
}

.bonus-highlight h2,
.bonus-highlight h3,
.bonus-highlight h4,
.bonus-highlight p {
  color: #000000 !important;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1rem;
  color: white;
}

.terms-box {
  background: rgba(var(--accent-rgb), 0.1);
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent);
  margin-top: 1rem;
  font-size: 0.9rem;
}