/* Bescherming tegen horizontale scroll */
html, body { 
  overflow-x: hidden; 
  max-width: 100vw; 
}

/* Thema-aanpassing voor donkere achtergrond */
.bg-light {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 100%) !important;
  color: var(--text-light) !important;
  border: 1px solid var(--border);
}

/* Tabel styling */
.table {
  color: var(--text-light);
  border-color: var(--border);
}

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

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

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

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

/* Card styling */
.tournament-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border);
  background: var(--bg-dark);
}

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

.badge-tournament {
  background: var(--gradient-accent);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
}

.prize-pool {
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* CTA section */
.cta-tournament {
  background: var(--gradient-primary);
  padding: 3rem 2rem;
  border-radius: 15px;
  text-align: center;
}