.page-casino {
  color: #333333; /* Default text color for light body background */
}

.page-casino__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
  background-color: #000000; /* Dark background for hero */
  color: #ffffff;
  text-align: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px; /* 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;
  opacity: 0.6; /* Slightly dim the image to make text readable */
}

.page-casino__hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-casino__hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.7); /* Semi-transparent overlay for text readability */
  padding: 30px;
  border-radius: 10px;
}

.page-casino__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FCBC45; /* Login button color for emphasis */
  line-height: 1.2;
}

.page-casino__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #ffffff;
}

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

.page-casino__button {
  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, color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-casino__button--primary {
  background-color: #FCBC45; /* Login button color */
  color: #000000;
}

.page-casino__button--primary:hover {
  background-color: #e0a53a;
}

.page-casino__button--secondary {
  background-color: #ffffff;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-casino__button--secondary:hover {
  background-color: #f0f0f0;
  border-color: #e0a53a;
}

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

.page-casino__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 60px;
  font-weight: bold;
}

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

.page-casino__about-buenas,
.page-casino__games-overview,
.page-casino__get-started,
.page-casino__promotions,
.page-casino__mobile-app,
.page-casino__responsible-gaming,
.page-casino__faqs,
.page-casino__cta-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

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

.page-casino__feature-card,
.page-casino__game-card,
.page-casino__step-card,
.page-casino__promo-card {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-casino__feature-icon,
.page-casino__step-icon {
  width: 200px; /* Enforcing minimum size as per requirements */
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-casino__game-thumbnail,
.page-casino__promo-image {
  width: 100%;
  height: 200px; /* Minimum height for content images */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-casino__feature-title,
.page-casino__game-title,
.page-casino__step-title,
.page-casino__promo-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
}

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

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

.page-casino__feature-description,
.page-casino__game-description,
.page-casino__step-description,
.page-casino__promo-description {
  font-size: 1em;
  color: #666666;
  line-height: 1.6;
  flex-grow: 1;
}

.page-casino__button--play,
.page-casino__button--claim,
.page-casino__button--download,
.page-casino__button--learn-more {
  background-color: #FCBC45;
  color: #000000;
  padding: 12px 25px;
  font-size: 1em;
  margin-top: 20px;
  border-radius: 5px;
}

.page-casino__button--play:hover,
.page-casino__button--claim:hover,
.page-casino__button--download:hover,
.page-casino__button--learn-more:hover {
  background-color: #e0a53a;
}

.page-casino__link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-casino__link:hover {
  text-decoration: underline;
}

.page-casino__mobile-app-flex {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-casino__mobile-content {
  flex: 1;
  min-width: 300px;
}

.page-casino__mobile-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-casino__mobile-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforcing minimum size as per requirements */
  min-height: 200px;
}

.page-casino__mobile-features {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-casino__mobile-features li {
  display: flex;
  align-items: flex-start; /* Align text to top */
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #333333;
}

/* Removed page-casino__list-icon as per strict 'no small icons' rule. */

.page-casino__responsible-gaming {
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-casino__responsible-gaming .page-casino__section-title {
  color: #ffffff;
}

.page-casino__responsible-gaming .page-casino__section-intro {
  color: #f0f0f0;
}

.page-casino__button--learn-more {
  background-color: #FCBC45;
  color: #000000;
  border: none;
}

.page-casino__button--learn-more:hover {
  background-color: #e0a53a;
}

.page-casino__faqs {
  padding: 60px 0;
}

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

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

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

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

.page-casino__faq-answer {
  font-size: 1em;
  color: #555555;
  line-height: 1.6;
  display: none; /* Hidden by default, toggled by JS */
  padding-top: 10px;
}

/* Ensure all content area images are responsive and meet minimum size */
.page-casino img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-casino {
    max-width: 100%;
    overflow-x: hidden;
  }

  .page-casino__hero-title {
    font-size: 2.5em;
  }

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

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

  .page-casino__button {
    width: 100%;
  }

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

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

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

  .page-casino__mobile-app-flex {
    flex-direction: column-reverse; /* Image on top for mobile */
  }

  .page-casino__mobile-image-wrapper {
    margin-bottom: 30px;
  }

  .page-casino__feature-icon, .page-casino__step-icon {
    width: 100%; /* Make feature/step images responsive but maintain min-height */
    height: 200px; 
    object-fit: cover;
  }
  
  .page-casino__game-thumbnail, .page-casino__promo-image {
    height: 200px; /* Ensure content images maintain minimum height on mobile */
  }
}

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

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