/* style/casino.css */

/* Base Styles */
.page-casino {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default for light background */
  background-color: var(--dark-background-1); /* Shared body background */
}

/* Adjust text color for dark body background */
.page-casino__hero-section,
.page-casino__games-section,
.page-casino__guide-section,
.page-casino__promotions-section,
.page-casino__cta-section {
  color: #ffffff; /* Light text for dark sections */
}

.page-casino__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-casino__dark-bg {
  background-color: #26A9E0; /* Brand color as background */
  color: #ffffff;
}

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

/* Header offset for main content */
.page-casino__hero-section,
.page-casino__promo-video-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

/* Sections */
.page-casino__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 80px;
  min-height: 600px;
  overflow: hidden;
  gap: 40px;
}

.page-casino__hero-content {
  flex: 1;
  max-width: 600px;
  z-index: 1;
}

.page-casino__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff; /* White text for dark background */
}

.page-casino__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0; /* Slightly off-white for contrast */
}

.page-casino__hero-buttons {
  display: flex;
  gap: 20px;
}

.page-casino__hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  z-index: 0;
}

.page-casino__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-casino__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-casino__introduction-section,
.page-casino__benefits-section,
.page-casino__faq-section {
  padding: 80px 0;
}

.page-casino__games-section,
.page-casino__guide-section,
.page-casino__promotions-section,
.page-casino__cta-section {
  padding: 80px 0;
}

.page-casino__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-casino__image-content {
  display: block;
  margin: 40px auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}