/* style/casino.css */

/* Variables */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #8B0000; /* Dark Red */
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f8f8f8;
  --bg-dark: #222222; /* A darker background for contrast */
  --border-light: #e0e0e0;
}

/* Base styles for the page content */
.page-casino {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark); /* Default text color for light backgrounds */
  background-color: var(--bg-light); /* Default light background */
}

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

.page-casino__section-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

.page-casino__section-description {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-dark);
}

/* Color Contrast Fixes */
.page-casino__dark-bg {
  background-color: var(--secondary-color); /* Use dark red as dark background */
  color: var(--text-light); /* Light text */
}

.page-casino__dark-bg .page-casino__section-title,
.page-casino__dark-bg .page-casino__category-title,
.page-casino__dark-bg .page-casino__section-description,
.page-casino__dark-bg .page-casino__payment-subtitle,
.page-casino__dark-bg .page-casino__payment-text {
  color: var(--primary-color); /* Gold text on dark red background for titles/headings */
}

.page-casino__light-bg {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.page-casino__light-bg .page-casino__section-title,
.page-casino__light-bg .page-casino__feature-title,
.page-casino__light-bg .page-casino__live-subtitle,
.page-casino__light-bg .page-casino__security-title,
.page-casino__light-bg .page-casino__responsible-subtitle {
  color: var(--secondary-color); /* Dark red text on light background for titles/headings */
}