.page-casino {
  color: #333333; /* Dark text for default light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-casino__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
  text-align: center;
}

.page-casino__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.page-casino__hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  margin: 20px;
}

.page-casino__hero-content {
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-casino__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold main color */
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.2;
}

.page-casino__hero-description {
  font-size: 1.4em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-casino__hero-btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-casino__hero-btn--primary {
  background-color: #FFD700; /* Gold */
  color: #8B0000; /* Burgundy dark text */
}

.page-casino__hero-btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-casino__hero-btn--secondary {
  background-color: #8B0000; /* Burgundy */
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-casino__hero-btn--secondary:hover {
  background-color: #6a0000;
  transform: translateY(-2px);
}

.page-casino__about-section,
.page-casino__games-section,
.page-casino__promotions-section,
.page-casino__security-section,
.page-casino__mobile-section,
.page-casino__cta-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #f8f8f8;
}

.page-casino__about-section:nth-of-type(even),
.page-casino__games-section:nth-of-type(even),
.page-casino__promotions-section:nth-of-type(even),
.page-casino__security-section:nth-of-type(even),
.page-casino__mobile-section:nth-of-type(even),
.page-casino__cta-section:nth-of-type(even) {
  background-color: #ffffff;
}

.page-casino__about-container,
.page-casino__games-container,
.page-casino__promotions-container,
.page-casino__security-container,
.page-casino__mobile-container,
.page-casino__cta-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-casino__about-title,
.page-casino__games-title,
.page-casino__category-title,
.page-casino__promotions-title,
.page-casino__security-title,
.page-casino__mobile-title,
.page-casino__cta-title {
  font-size: 2.8em;
  color: #8B0000; /* Burgundy auxiliary color */
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-casino__about-text,
.page-casino__games-intro,
.page-casino__promotions-intro,
.page-casino__security-intro,
.page-casino__mobile-intro,
.page-casino__cta-description,
.page-casino__promotions-text,
.page-casino__security-text,
.page-casino__mobile-text {
  font-size: 1.1em;
  margin-bottom: 25px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #333333;
}

.page-casino__game-category {
  margin-bottom: 60px;
  text-align: left;
}

.page-casino__game-category:last-of-type {
  margin-bottom: 0;
}

.page-casino__category-title {
  font-size: 2.2em;
  color: #FFD700;
  background-color: #8B0000;
  padding: 15px 25px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-casino__category-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-casino__category-content--reverse {
  flex-direction: row-reverse;
}

.page-casino__category-image {
  flex: 1;
  max-width: 50%;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  object-fit: cover;
  min-width: 200px; /* Enforce minimum size for content images */
  min-height: 200px;
  width: 600px; /* HTML width attribute */
  height: 450px; /* HTML height attribute */
}

.page-casino__category-text {
  flex: 1;
  padding: 20px 0;
}

.page-casino__category-text p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #333333;
}

.page-casino__category-btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: #FFD700; /* Gold */
  color: #8B0000; /* Burgundy dark text */
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-casino__category-btn:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-casino__promotions-image,
.page-casino__security-image,
.page-casino__mobile-image {
  max-width: 800px;
  width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  object-fit: cover;
  min-width: 200px; /* Enforce minimum size for content images */
  min-height: 200px;
}

.page-casino__promotions-btn,
.page-casino__mobile-btn,
.page-casino__cta-btn {
  display: inline-block;
  padding: 18px 35px;
  background-color: #FFD700; /* Gold */
  color: #8B0000; /* Burgundy dark text */
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: bold;
  margin-top: 30px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-casino__promotions-btn:hover,
.page-casino__mobile-btn:hover,
.page-casino__cta-btn:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-casino__hero-title {
    font-size: 2.8em;
  }
  .page-casino__hero-description {
    font-size: 1.2em;
  }
  .page-casino__about-title,
  .page-casino__games-title,
  .page-casino__promotions-title,
  .page-casino__security-title,
  .page-casino__mobile-title,
  .page-casino__cta-title {
    font-size: 2.2em;
  }
  .page-casino__category-title {
    font-size: 1.8em;
  }
  .page-casino__category-content {
    flex-direction: column;
  }
  .page-casino__category-content--reverse {
    flex-direction: column;
  }
  .page-casino__category-image {
    max-width: 100%;
    width: 100%;
    height: auto;
  }
  .page-casino__category-text {
    padding: 20px 0;
  }
  .page-casino__hero-btn {
    padding: 12px 25px;
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-casino__hero-section {
    min-height: 400px;
    padding: 20px;
  }
  .page-casino__hero-title {
    font-size: 2em;
  }
  .page-casino__hero-description {
    font-size: 1em;
  }
  .page-casino__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-casino__hero-btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-casino__about-section,
  .page-casino__games-section,
  .page-casino__promotions-section,
  .page-casino__security-section,
  .page-casino__mobile-section,
  .page-casino__cta-section {
    padding: 40px 15px;
  }
  .page-casino__about-title,
  .page-casino__games-title,
  .page-casino__promotions-title,
  .page-casino__security-title,
  .page-casino__mobile-title,
  .page-casino__cta-title {
    font-size: 1.8em;
  }
  .page-casino__category-title {
    font-size: 1.5em;
  }
  .page-casino__about-text,
  .page-casino__games-intro,
  .page-casino__promotions-intro,
  .page-casino__security-intro,
  .page-casino__mobile-intro,
  .page-casino__cta-description,
  .page-casino__promotions-text,
  .page-casino__security-text,
  .page-casino__mobile-text,
  .page-casino__category-text p {
    font-size: 0.95em;
  }
  .page-casino__promotions-btn,
  .page-casino__mobile-btn,
  .page-casino__cta-btn {
    padding: 15px 25px;
    font-size: 1.1em;
  }
  .page-casino__hero-container {
    padding: 20px 15px;
  }
  /* Mobile specific image sizing */
  .page-casino img {
    max-width: 100%;
    height: auto;
  }
  /* Ensure content area does not cause horizontal scroll */
  .page-casino {
    overflow-x: hidden;
  }
  .page-casino__hero-section,
  .page-casino__about-section,
  .page-casino__games-section,
  .page-casino__promotions-section,
  .page-casino__security-section,
  .page-casino__mobile-section,
  .page-casino__cta-section {
    width: 100%; /* Ensure sections fit within viewport */
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .page-casino__hero-title {
    font-size: 1.6em;
  }
  .page-casino__hero-description {
    font-size: 0.9em;
  }
  .page-casino__about-title,
  .page-casino__games-title,
  .page-casino__promotions-title,
  .page-casino__security-title,
  .page-casino__mobile-title,
  .page-casino__cta-title {
    font-size: 1.5em;
  }
  .page-casino__category-title {
    font-size: 1.3em;
  }
  .page-casino__hero-btn {
    width: 90%;
  }
  .page-casino__promotions-btn,
  .page-casino__mobile-btn,
  .page-casino__cta-btn {
    padding: 12px 20px;
    font-size: 1em;
  }
}