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

.card {
  background: var(--color-card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

.vip-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: var(--gradient-accent);
  border-radius: var(--border-radius);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-glow);
}

.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);
}

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

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

.progress-custom {
  height: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.progress-bar-custom {
  height: 100%;
  background: var(--gradient-primary);
  transition: width 0.6s ease;
  box-shadow: var(--shadow-glow);
}