/* Theme-aware styling for dark site */
.bg-light {
  background: linear-gradient(135deg, var(--dark-lighter), var(--dark-card)) !important;
  color: var(--text-primary) !important;
  border: 1px solid var(--border-color);
}

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

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

.card-header {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-bottom: 2px solid var(--accent);
  font-weight: 600;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  display: block;
}

.table-responsive table {
  min-width: 600px;
  display: table;
}

.table {
  color: var(--text-primary);
  border-color: var(--border-color);
}

.table-dark {
  --bs-table-bg: var(--dark-card);
  --bs-table-striped-bg: var(--dark-lighter);
  --bs-table-border-color: var(--border-color);
}

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

.table tbody tr {
  border-bottom: 1px solid var(--border-color);
  transition: background-color 0.2s ease;
}

.table tbody tr:hover {
  background-color: var(--dark-lighter);
}

.badge-game {
  background: var(--gradient-1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

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

.feature-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.feature-list li:last-child {
  border-bottom: none;
}

.highlight-stat {
  background: var(--gradient-2);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  border: 2px solid var(--accent);
}

.highlight-stat h3 {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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