/* style/casino.css */

/* General Page Styles */
.page-casino {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #000000; /* Ensuring consistency with body background */
}

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

.page-casino__section {
  padding: 80px 0;
  text-align: center;
}

.page-casino__section-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main titles */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-casino__sub-title {
  font-size: 2.2em;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #FFD700; /* Gold for sub-titles */
}

.page-casino__description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #f0f0f0;
}

.page-casino__content-block p {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #f0f0f0;
}

/* Color Contrast Specifics */
.page-casino__dark-bg {
  background-color: #A52A2A; /* Main brand color for dark sections */
  color: #ffffff;
}

.page-casino__light-bg {
  background-color: #f8f9fa; /* Light background for contrast sections */
  color: #333333;
}

.page-casino__light-bg .page-casino__section-title,
.page-casino__light-bg .page-casino__sub-title {
  color: #A52A2A; /* Darker titles on light background */
  text-shadow: none;
}

.page-casino__light-bg .page-casino__description,
.page-casino__light-bg .page-casino__content-block p,
.page-casino__light-bg .page-casino__faq-question span,
.page-casino__light-bg .page-casino__faq-answer p {
  color: #333333;
}