.bg-light {
  background-color: var(--dark-lighter) !important;
  color: var(--text-primary) !important;
}

.bg-dark {
  background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-electric) 100%) !important;
  color: var(--text-primary) !important;
}

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

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

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

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

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

.badge {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.tournament-type {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.type-slots {
  background: linear-gradient(135deg, var(--accent-coral), var(--accent-yellow));
  color: var(--text-dark);
}

.type-live {
  background: linear-gradient(135deg, var(--primary-electric), var(--primary-deep));
  color: var(--text-primary);
}

.type-table {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: var(--text-primary);
}

.prize-highlight {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-yellow);
  text-shadow: var(--shadow-glow);
}

.leaderboard-position {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  margin-right: 1rem;
}

.position-1 { background: linear-gradient(135deg, #ffd700, #ffed4e); color: var(--text-dark); }
.position-2 { background: linear-gradient(135deg, #c0c0c0, #e8e8e8); color: var(--text-dark); }
.position-3 { background: linear-gradient(135deg, #cd7f32, #b87333); color: var(--text-primary); }

h1 {
  font-size: clamp(2rem, 4vw, 3rem) !important;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem) !important;
}