.bg-light {
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-primary) !important;
}

.vip-tier-card {
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.vip-tier-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

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

.benefit-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.tier-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.tier-bronze { background: linear-gradient(135deg, #CD7F32 0%, #B87333 100%); }
.tier-silver { background: linear-gradient(135deg, #C0C0C0 0%, #A8A8A8 100%); }
.tier-gold { background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%); }
.tier-platinum { background: linear-gradient(135deg, #E5E4E2 0%, #B0B0B0 100%); }
.tier-diamond { background: linear-gradient(135deg, #B9F2FF 0%, #00CED1 100%); }

.progress-bar-vip {
  height: 8px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
  margin: 1.5rem 0;
}

.progress-fill {
  height: 100%;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

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

.table thead {
  background: rgba(255,255,255,0.05);
  border-bottom: 2px solid rgba(255,255,255,0.1);
}

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

.table td, .table th {
  border-color: rgba(255,255,255,0.1);
  padding: 1rem;
}

.cta-vip {
  background: var(--gradient-primary);
  padding: 3rem 2rem;
  border-radius: 16px;
  text-align: center;
  margin: 3rem 0;
}

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

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

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

.feature-list li::before {
  content: "✓";
  color: var(--accent-coral);
  font-weight: bold;
  margin-right: 0.75rem;
}

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

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

.row .col-12 .card {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}