/* Theme Adaptation - Dark Site */
.bg-light {
  background-color: rgba(255, 255, 255, 0.05) !important;
  color: var(--text-primary) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card {
  background: var(--dark-card, rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.table-dark {
  --bs-table-bg: rgba(255, 255, 255, 0.03);
  --bs-table-striped-bg: rgba(255, 255, 255, 0.05);
  --bs-table-border-color: rgba(255, 255, 255, 0.1);
  --bs-table-color: var(--text-primary);
}

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

.table thead th {
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

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

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

.vip-tier-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.tier-bronze {
  background: linear-gradient(135deg, #CD7F32, #B87333);
  color: #fff;
}

.tier-silver {
  background: linear-gradient(135deg, #C0C0C0, #A8A8A8);
  color: #000;
}

.tier-gold {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
}

.tier-platinum {
  background: linear-gradient(135deg, #E5E4E2, #BCC6CC);
  color: #000;
}

.tier-diamond {
  background: linear-gradient(135deg, #B9F2FF, #00CED1);
  color: #000;
}

.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;
  color: #fff;
  margin-bottom: 1rem;
}

.progress-bar-vip {
  height: 30px;
  background: var(--gradient-primary);
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}

.progress-bar-vip::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

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

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

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

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

.comparison-highlight {
  background: rgba(255, 215, 0, 0.1);
  font-weight: 600;
}