/* style/sports-betting-rules.css */
:root {
  --primary-color: #1A2E44;
  --secondary-color: #FFD700;
  --text-color-light: #ffffff;
  --text-color-dark: #333333;
  --background-dark: #121212;
  --background-light: #f9f9f9;
  --border-color: #e0e0e0;
}

.page-sports-betting-rules {
  font-family: 'Arial', sans-serif;
  color: var(--text-color-light); /* Body is dark, so text is light */
  line-height: 1.6;
  background-color: var(--background-dark); /* Inherited from shared.css, but explicitly set for clarity */
}