:root {
  --primary-color: #1A202C;
  --secondary-color: #FFD700;
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #000000; /* From body background */
  --bg-light: #f8f9fa;
  --card-bg-dark: rgba(255, 255, 255, 0.08); /* Slightly lighter than main dark bg */
  --card-bg-light: #ffffff;
  --border-color: rgba(255, 255, 255, 0.15);
  --shadow-color-dark: rgba(0, 0, 0, 0.4);
  --shadow-color-light: rgba(0, 0, 0, 0.1);
}

.page-casino {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for the page, as body is dark */
  background-color: var(--bg-dark); /* Ensure consistency if body background is not fully black */
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

/* Base container for content */
.page-casino__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

/* Section styles */
.page-casino__hero-section,
.page-casino__about-section,
.page-casino__games-section,
.page-casino__promotions-section,
.page-casino__why-choose-section,
.page-casino__how-to-start-section,
.page-casino__faq-section,
.page-casino__contact-cta-section {
  padding: 80px 0;
  overflow: hidden; /* Prevent content overflow */
}

/* Background colors */
.page-casino__dark-bg {
  background-color: var(--primary-color);
  color: var(--text-light);
}

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

/* Text styles for light background sections */
.page-casino__light-bg .page-casino__section-title,
.page-casino__light-bg .page-casino__text-block,
.page-casino__light-bg .page-casino__promo-title,
.page-casino__light-bg .page-casino__promo-item p,
.page-casino__light-bg .page-casino__step-title,
.page-casino__light-bg .page-casino__step-item p {
  color: var(--text-dark);
}
}