:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #DC143C; /* Crimson Red */
  --text-light: #f0f0f0;
  --text-dark: #333333;
  --bg-dark: #222;
  --bg-light: #ffffff;
  --card-bg-dark-mode: rgba(255, 255, 255, 0.08); /* Slightly transparent white for cards on dark bg */
  --border-color-dark-mode: rgba(255, 255, 255, 0.15);
  --shadow-dark-mode: rgba(0, 0, 0, 0.3);
}

.page-slot-games {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Light text for dark body background */
  background-color: var(--bg-dark); /* Ensure consistency if body background is not fully propagated */
}

.page-slot-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-slot-games__section-title {
  font-size: 2.5em;
  color: var(--primary-color); /* Gold title */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}