/* Adapt to site theme - assuming dark theme for casino */
.bg-light {
  background-color: rgba(255, 255, 255, 0.05) !important;
  color: var(--text-light) !important;
}

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

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

.table thead {
  background: var(--bg-card);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

/* Typography for legal document */
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-light);
}

p, li {
  line-height: 1.8;
  color: var(--text-light);
  opacity: 0.9;
}

ul, ol {
  margin-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
}

.last-updated {
  font-style: italic;
  opacity: 0.7;
  margin-bottom: 2rem;
}

strong {
  color: var(--primary-color);
  font-weight: 600;
}