/* Адаптация под темную тему */
.bg-light {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%) !important;
  border: 1px solid rgba(139, 92, 246, 0.2);
  color: var(--text-primary) !important;
}

.card {
  transition: var(--transition);
  border: 1px solid rgba(139, 92, 246, 0.2);
}

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

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

.table {
  color: var(--text-primary);
  border-color: rgba(139, 92, 246, 0.2);
}

.table thead {
  background: rgba(79, 70, 229, 0.2);
  border-bottom: 2px solid rgba(139, 92, 246, 0.3);
}

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

.table tbody tr:hover {
  background-color: rgba(79, 70, 229, 0.05);
}

.promo-highlight {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(139, 92, 246, 0.1));
  border-left: 4px solid var(--accent-coral);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.bonus-feature {
  display: flex;
  align-items: start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.bonus-feature-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.terms-box {
  background: rgba(79, 70, 229, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.terms-box h4 {
  color: var(--primary-bright);
  margin-bottom: 1rem;
}

.checklist {
  list-style: none;
  padding: 0;
}

.checklist li {
  padding-left: 2rem;
  position: relative;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
}

.checklist li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-mint);
  font-weight: bold;
  font-size: 1.2rem;
}