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

.card {
  background: var(--color-darker);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-neon);
}

.vip-tier {
  position: relative;
  overflow: hidden;
}

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

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

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

.progress-bar {
  background: var(--gradient-primary) !important;
  box-shadow: var(--shadow-neon);
}

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

.table thead {
  background: var(--color-darker);
  border-bottom: 2px solid var(--color-primary);
}

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

.table tbody tr:hover {
  background: rgba(255,255,255,0.02);
}

.highlight-box {
  background: var(--gradient-dark);
  border-left: 4px solid var(--color-accent);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 8px;
}

.cta-box {
  background: var(--gradient-primary);
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
