/* Адаптация к теме сайта */
.bg-light {
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%) !important;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-primary) !important;
}

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

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

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

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

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255,255,255,0.03);
}

.table td, .table th {
  border-color: rgba(255,255,255,0.1);
  padding: 1rem;
}

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

.tournament-badge {
  background: var(--gradient-primary);
  color: white;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 1rem;
}

.prize-highlight {
  font-size: 2rem;
  font-weight: bold;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.countdown-timer {
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.leaderboard-position {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  background: var(--gradient-primary);
  margin-right: 1rem;
}

.tournament-card {
  position: relative;
  overflow: hidden;
}

.tournament-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
}

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