.bg-light {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05)) !important;
  border: 1px solid rgba(99, 102, 241, 0.2);
  color: var(--text-primary, #1a1a2e) !important;
}

.bg-dark {
  background: linear-gradient(135deg, rgba(10, 15, 45, 0.85), rgba(24, 19, 73, 0.85)) !important;
  border: 1px solid rgba(99, 102, 241, 0.4);
  color: var(--text-on-dark, #f6f7ff) !important;
}

.bg-dark .card-title,
.bg-dark .badge,
.bg-dark ul li,
.bg-dark p {
  color: #f6f7ff !important;
}

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

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.card-title {
  color: #6366f1;
  font-weight: 700;
  margin-bottom: 1rem;
}

.badge {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
}

.table {
  color: var(--text-primary, #1a1a2e);
  border-color: rgba(99, 102, 241, 0.2);
}

.table thead {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
  border-bottom: 2px solid rgba(99, 102, 241, 0.3);
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(99, 102, 241, 0.05);
}

.table td, .table th {
  border-color: rgba(99, 102, 241, 0.15);
  padding: 1rem;
}

.bonuses-page .btn-primary:not(.cta-button) {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.bonuses-page .btn-primary:not(.cta-button):hover {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(99, 102, 241, 0.4);
}

.lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-primary, #1a1a2e);
}

.lead.mb-5,
.text-center .lead {
  color: #f6f7ff;
}

h1 {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

h2 {
  color: #6366f1;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 500;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

h3 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.bonus-highlight {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #6366f1;
  margin-bottom: 1.5rem;
}

ul li {
  margin-bottom: 0.5rem;
}

@media (max-width: 767px) {
  .header-content {
    flex-wrap: nowrap;
    gap: 0.5rem;
  }

  .header-content > .btn-primary {
    order: 2;
    width: auto;
    margin-top: 0;
    margin-left: 0.75rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    white-space: nowrap;
  }

  .nav {
    order: 3;
    margin-left: auto;
  }
}