/* Dark theme overrides */
.bg-light {
  background-color: var(--dark-bg) !important;
  color: var(--text-light) !important;
}

.card {
  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, 255, 255, 0.2);
}

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

.table thead {
  background: var(--card-bg);
  border-bottom: 2px solid var(--accent-color);
}

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

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

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

.vip-tier::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.benefit-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

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

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

.progress-bar-custom {
  height: 30px;
  border-radius: 15px;
  background: var(--darker-bg);
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: width 0.5s ease;
}

@media (max-width: 767px) {
    .header-content {
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media (max-width: 767px) {
    .nav-menu a {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .nav-menu {
        width: 100%;
        padding-left: 0;
    }
}