.bg-light {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) !important;
  color: var(--text-light) !important;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.bg-dark {
  background: linear-gradient(135deg, #0f3460 0%, #16213e 100%) !important;
  color: var(--text-light) !important;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

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

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

.bonus-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: bold;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.bonus-highlight {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
  border-left: 4px solid #ffd700;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.terms-list {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.terms-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.bonus-step {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.5rem;
}

.bonus-step::before {
  content: attr(data-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.table {
  color: var(--text-light);
  border-color: rgba(255, 215, 0, 0.2);
}

.table thead {
  background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

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

.table tbody tr:hover {
  background: rgba(255, 215, 0, 0.05);
}

.btn-primary {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border: none;
  color: #000;
  font-weight: bold;
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

h2 {
  color: #ffd700;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

h3 {
  color: #ffed4e;
  margin-bottom: 1rem;
}

.lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  line-height: 1.8;
}