.page-casino {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-casino__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  position: relative;
  width: 100%;
  overflow: hidden;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.page-casino__hero-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px; /* Minimum height for hero section */
}

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

.page-casino__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

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

.page-casino__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

.page-casino__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-casino__btn--register {
  background-color: #000000; /* Dark background for register button */
  color: #FFFFFF; /* White text for register button */
}

.page-casino__btn--register:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.page-casino__btn--login {
  background-color: #FCBC45; /* Yellow background for login button */
  color: #000000; /* Black text for login button */
}

.page-casino__btn--login:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

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

.page-casino__section-title {
  font-size: 2.8em;
  color: #000000; /* Black for section titles */
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.page-casino__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-casino__section-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #555555;
}

.page-casino__about-section, .page-casino__games-section, .page-casino__promo-section, .page-casino__responsible-gaming-section, .page-casino__get-started-section, .page-casino__faq-section {
  padding: 80px 0;
  background-color: #FFFFFF; /* White background for sections */
}

.page-casino__features, .page-casino__game-categories, .page-casino__promo-cards, .page-casino__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-casino__feature-card, .page-casino__category-card, .page-casino__promo-card, .page-casino__step-card {
  background-color: #f8f8f8;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino__feature-card:hover, .page-casino__category-card:hover, .page-casino__promo-card:hover, .page-casino__step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-casino__feature-image, .page-casino__category-image, .page-casino__promo-image {
  width: 100%; /* Ensure images are not smaller than 200px in content area */
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  min-width: 200px;
  min-height: 200px;
}

.page-casino__feature-title, .page-casino__category-title, .page-casino__promo-title, .page-casino__step-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-casino__category-title a {
  color: #000000;
  text-decoration: none;
}

.page-casino__category-title a:hover {
  color: #FCBC45;
}

.page-casino__feature-description, .page-casino__category-description, .page-casino__promo-description, .page-casino__step-description, .page-casino__faq-answer {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
}

.page-casino__btn--play, .page-casino__btn--claim, .page-casino__btn--learn-more, .page-casino__btn--register-small, .page-casino__btn--deposit, .page-casino__btn--play-now {
  background-color: #FCBC45;
  color: #000000;
  padding: 12px 25px;
  font-size: 0.95em;
}

.page-casino__btn--play:hover, .page-casino__btn--claim:hover, .page-casino__btn--learn-more:hover, .page-casino__btn--register-small:hover, .page-casino__btn--deposit:hover, .page-casino__btn--play-now:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-casino__responsible-gaming-section {
  background-color: #f0f0f0;
  text-align: center;
}

.page-casino__faq-items {
  margin-top: 40px;
}

.page-casino__faq-item {
  background-color: #f8f8f8;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-casino__faq-question {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-casino__faq-question::after {
  content: '+';
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-casino__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-casino__faq-answer {
  display: none;
  padding-top: 10px;
  border-top: 1px solid #eeeeee;
  margin-top: 15px;
  color: #555555;
}

.page-casino__faq-item.open .page-casino__faq-answer {
  display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-casino__hero-title {
    font-size: 2.8em;
  }

  .page-casino__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-casino__hero-title {
    font-size: 2.2em;
  }

  .page-casino__hero-description {
    font-size: 1.1em;
  }

  .page-casino__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-casino__btn {
    width: 80%;
    margin: 0 auto;
  }

  .page-casino__section-title {
    font-size: 1.8em;
  }

  .page-casino__section-intro {
    font-size: 1em;
  }

  .page-casino__features, .page-casino__game-categories, .page-casino__promo-cards, .page-casino__steps {
    grid-template-columns: 1fr;
  }

  /* Mobile content area image rules */
  .page-casino img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images are not smaller than 200px */
    min-height: 200px;
  }

  .page-casino__feature-image, .page-casino__category-image, .page-casino__promo-image {
    height: auto; /* Allow height to adjust automatically */
  }

  .page-casino__container {
    padding: 30px 15px;
  }
}

@media (max-width: 480px) {
  .page-casino__hero-title {
    font-size: 1.8em;
  }

  .page-casino__hero-description {
    font-size: 0.9em;
  }

  .page-casino__btn {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-casino__section-title {
    font-size: 1.5em;
  }

  .page-casino__feature-title, .page-casino__category-title, .page-casino__promo-title, .page-casino__step-title {
    font-size: 1.5em;
  }

  .page-casino__faq-question {
    font-size: 1.2em;
  }
}