/* Bescherming tegen horizontale scroll */
html, body { 
  overflow-x: hidden; 
  max-width: 100vw; 
}

/* Theme aanpassingen voor lichte achtergrond */
.bg-dark {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-blue) 100%) !important;
  color: var(--text-light) !important;
}

.bg-light {
  background-color: rgba(255, 255, 255, 0.95) !important;
  color: var(--text-dark) !important;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.card {
  border: none;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

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

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

.highlight-amount {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  margin: 1rem 0;
}

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

.feature-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
}

.feature-list li:before {
  content: "✓";
  display: inline-block;
  width: 28px;
  height: 28px;
  background: var(--gradient-primary);
  color: white;
  text-align: center;
  line-height: 28px;
  border-radius: 50%;
  margin-right: 1rem;
  flex-shrink: 0;
  font-weight: 700;
}

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

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

.table thead {
  background: var(--gradient-primary);
  color: white;
  border: none;
}

.table thead th {
  border: none;
  font-weight: 600;
  padding: 1rem;
}

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

.table tbody td {
  padding: 1rem;
  vertical-align: middle;
}

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

.bonus-category {
  background: var(--gradient-secondary);
  padding: 3rem 0;
  border-radius: 20px;
  margin-bottom: 2rem;
}

.promo-box {
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  padding: 2rem;
  border-radius: 15px;
  color: white;
  text-align: center;
  margin: 2rem 0;
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-glow);
}

.terms-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}