/* Theme adaptation for premium VIP aesthetic */
.bg-light {
  background: linear-gradient(135deg, var(--card-bg) 0%, rgba(255, 215, 0, 0.05) 100%) !important;
  border: 1px solid var(--card-border);
  color: var(--text-light) !important;
}

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

.vip-tier-card {
  border-radius: 12px;
  transition: all 0.4s ease;
  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(-8px);
  box-shadow: var(--shadow-glow);
}

.tier-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 25px;
  background: var(--gradient-primary);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.tier-silver { background: linear-gradient(135deg, #C0C0C0 0%, #E8E8E8 100%); }
.tier-gold { background: var(--gradient-primary); }
.tier-platinum { background: linear-gradient(135deg, #E5E4E2 0%, #B9B8B5 100%); }
.tier-diamond { background: linear-gradient(135deg, #B9F2FF 0%, #00CED1 100%); }

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

.progress-tracker {
  background: rgba(255, 215, 0, 0.1);
  border-radius: 10px;
  padding: 1.5rem;
  border: 1px solid var(--card-border);
}

.vip-perks-list {
  list-style: none;
  padding: 0;
}

.vip-perks-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--card-border);
  position: relative;
  padding-left: 2rem;
}

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

.vip-perks-list li::before {
  content: '★';
  position: absolute;
  left: 0;
  color: var(--primary-gold);
  font-size: 1.2rem;
}

.comparison-table {
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.table {
  color: var(--text-light);
  margin-bottom: 0;
}

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

.table tbody tr {
  border-bottom: 1px solid var(--card-border);
}

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

.table td, .table th {
  padding: 1rem;
  vertical-align: middle;
  border-color: var(--card-border);
}

.check-mark {
  color: var(--primary-gold);
  font-size: 1.3rem;
}

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

.cta-vip-section h2 {
  color: var(--primary-dark);
  font-weight: 700;
}

.btn-vip {
  background: var(--primary-dark);
  color: var(--primary-gold);
  border: none;
  padding: 1rem 3rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-vip:hover {
  background: var(--secondary-purple);
  color: var(--text-light);
  transform: scale(1.05);
  box-shadow: var(--shadow-glow);
}

.how-it-works {
  position: relative;
  padding: 2rem 0;
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-accent);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}