.bg-light {
  background-color: rgba(255, 255, 255, 0.05) !important;
  color: var(--text-primary) !important;
  border: 1px solid rgba(218, 165, 32, 0.2);
}

.bg-dark {
  background-color: rgba(0, 0, 0, 0.3) !important;
  color: var(--text-primary) !important;
  border: 1px solid rgba(218, 165, 32, 0.2);
}

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

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

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

.table {
  color: var(--text-primary);
  border-color: rgba(218, 165, 32, 0.2);
}

.table thead {
  background: rgba(218, 165, 32, 0.1);
  border-bottom: 2px solid rgba(218, 165, 32, 0.3);
}

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

.table tbody tr:hover {
  background-color: rgba(218, 165, 32, 0.05);
}

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

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

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

.terms-box {
  background: rgba(218, 165, 32, 0.05);
  border-left: 4px solid var(--accent);
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-top: 1rem;
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem) !important;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem) !important;
}

section.container h1:first-of-type {
  margin-top: 6rem !important;
  padding-top: 0 !important;
}

@media (max-width: 768px) {
  section.container h1:first-of-type {
    margin-top: 5rem !important;
  }
}