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

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

.page-casino-slot-games__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #0A2463; /* Main brand color for hero background */
  min-height: 500px; /* Minimum height for hero section */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-casino-slot-games__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.6; /* Slightly dim the background image for text readability */
}

.page-casino-slot-games__hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  padding: 40px 20px;
  max-width: 800px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
  border-radius: 10px;
}

.page-casino-slot-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #E3B505; /* Auxiliary color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-casino-slot-games__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
}

.page-casino-slot-games__hero-button {
  display: inline-block;
  background-color: #E3B505; /* Auxiliary color for buttons */
  color: #0A2463;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-casino-slot-games__hero-button:hover {
  background-color: #f5db9c; /* Lighter shade on hover */
  transform: translateY(-3px);
}

.page-casino-slot-games__intro-section,
.page-casino-slot-games__types-section,
.page-casino-slot-games__how-to-play-section,
.page-casino-slot-games__featured-section,
.page-casino-slot-games__mobile-section,
.page-casino-slot-games__bonuses-section,
.page-casino-slot-games__responsible-gaming-section,
.page-casino-slot-games__faq-section,
.page-casino-slot-games__cta-section {
  padding: 60px 0;
  background-color: #fcfcfc;
  border-bottom: 1px solid #eeeeee;
}

.page-casino-slot-games__intro-section {
  background-color: #f4f4f4;
}

.page-casino-slot-games__intro-title,
.page-casino-slot-games__types-title,
.page-casino-slot-games__how-to-play-title,
.page-casino-slot-games__featured-title,
.page-casino-slot-games__mobile-title,
.page-casino-slot-games__bonuses-title,
.page-casino-slot-games__responsible-gaming-title,
.page-casino-slot-games__faq-title,
.page-casino-slot-games__cta-title {
  font-size: 2.5em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 40px;
}

.page-casino-slot-games__intro-text,
.page-casino-slot-games__types-description,
.page-casino-slot-games__how-to-play-description,
.page-casino-slot-games__how-to-play-additional-info,
.page-casino-slot-games__featured-description,
.page-casino-slot-games__bonuses-description,
.page-casino-slot-games__responsible-gaming-description,
.page-casino-slot-games__cta-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
}

.page-casino-slot-games__types-grid,
.page-casino-slot-games__featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-casino-slot-games__type-card,
.page-casino-slot-games__game-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease;
}

.page-casino-slot-games__type-card:hover,
.page-casino-slot-games__game-card:hover {
  transform: translateY(-5px);
}

.page-casino-slot-games__type-image,
.page-casino-slot-games__game-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  border-bottom: 3px solid #E3B505;
}

.page-casino-slot-games__type-card-title,
.page-casino-slot-games__game-title {
  font-size: 1.8em;
  color: #0A2463;
  margin: 20px 0 10px;
  padding: 0 15px;
}

.page-casino-slot-games__type-card-text,
.page-casino-slot-games__game-text {
  font-size: 1em;
  color: #555555;
  padding: 0 20px;
  margin-bottom: 20px;
}

.page-casino-slot-games__game-button {
  display: inline-block;
  background-color: #E3B505;
  color: #0A2463;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-casino-slot-games__game-button:hover {
  background-color: #f5db9c;
}

.page-casino-slot-games__steps-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
}

.page-casino-slot-games__step-item {
  background-color: #ffffff;
  margin-bottom: 15px;
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  line-height: 1.8;
  border-left: 5px solid #0A2463;
}

.page-casino-slot-games__step-item strong {
  color: #0A2463;
}

.page-casino-slot-games__mobile-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.page-casino-slot-games__mobile-image {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-casino-slot-games__mobile-text-content {
  flex: 1;
  max-width: 600px;
  text-align: left;
}

.page-casino-slot-games__mobile-text-content p {
  font-size: 1.1em;
  margin-bottom: 20px;
}

.page-casino-slot-games__mobile-button {
  display: inline-block;
  background-color: #0A2463;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-casino-slot-games__mobile-button:hover {
  background-color: #1c4afa;
}

.page-casino-slot-games__bonuses-section,
.page-casino-slot-games__cta-section {
  background-color: #0A2463;
  color: #ffffff;
  text-align: center;
}

.page-casino-slot-games__bonuses-title,
.page-casino-slot-games__cta-title {
  color: #E3B505;
}

.page-casino-slot-games__bonuses-description,
.page-casino-slot-games__cta-description {
  color: #f0f0f0;
}

.page-casino-slot-games__bonuses-button,
.page-casino-slot-games__cta-button {
  display: inline-block;
  background-color: #E3B505;
  color: #0A2463;
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 20px;
}

.page-casino-slot-games__bonuses-button:hover,
.page-casino-slot-games__cta-button:hover {
  background-color: #f5db9c;
  transform: translateY(-3px);
}

.page-casino-slot-games__responsible-gaming-section {
  background-color: #f4f4f4;
}

.page-casino-slot-games__responsible-gaming-button {
  display: inline-block;
  background-color: #555555;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.page-casino-slot-games__responsible-gaming-button:hover {
  background-color: #777777;
}

.page-casino-slot-games__faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-casino-slot-games__faq-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #E3B505;
}

.page-casino-slot-games__faq-question {
  font-size: 1.3em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-casino-slot-games__faq-answer {
  font-size: 1em;
  color: #555555;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-casino-slot-games__hero-title {
    font-size: 2.8em;
  }
  .page-casino-slot-games__hero-description {
    font-size: 1.1em;
  }
  .page-casino-slot-games__hero-button {
    font-size: 1.1em;
    padding: 12px 25px;
  }
  .page-casino-slot-games__intro-title,
  .page-casino-slot-games__types-title,
  .page-casino-slot-games__how-to-play-title,
  .page-casino-slot-games__featured-title,
  .page-casino-slot-games__mobile-title,
  .page-casino-slot-games__bonuses-title,
  .page-casino-slot-games__responsible-gaming-title,
  .page-casino-slot-games__faq-title,
  .page-casino-slot-games__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-casino-slot-games__hero-title {
    font-size: 2.2em;
  }
  .page-casino-slot-games__hero-description {
    font-size: 1em;
  }
  .page-casino-slot-games__hero-button {
    font-size: 1em;
    padding: 10px 20px;
  }
  .page-casino-slot-games__intro-title,
  .page-casino-slot-games__types-title,
  .page-casino-slot-games__how-to-play-title,
  .page-casino-slot-games__featured-title,
  .page-casino-slot-games__mobile-title,
  .page-casino-slot-games__bonuses-title,
  .page-casino-slot-games__responsible-gaming-title,
  .page-casino-slot-games__faq-title,
  .page-casino-slot-games__cta-title {
    font-size: 1.8em;
  }
  .page-casino-slot-games__types-grid,
  .page-casino-slot-games__featured-grid,
  .page-casino-slot-games__faq-grid {
    grid-template-columns: 1fr;
  }
  .page-casino-slot-games__mobile-content {
    flex-direction: column;
  }
  .page-casino-slot-games__mobile-text-content {
    text-align: center;
    max-width: 100%;
  }
  .page-casino-slot-games__type-image, .page-casino-slot-games__game-image, .page-casino-slot-games__mobile-image {
    max-width: 100%;
    height: auto; /* Ensure images are responsive and don't overflow */
  }
  .page-casino-slot-games__intro-text,
  .page-casino-slot-games__types-description,
  .page-casino-slot-games__how-to-play-description,
  .page-casino-slot-games__how-to-play-additional-info,
  .page-casino-slot-games__featured-description,
  .page-casino-slot-games__bonuses-description,
  .page-casino-slot-games__responsible-gaming-description,
  .page-casino-slot-games__cta-description {
    font-size: 1em;
  }
  /* Content area image size constraint */
  .page-casino-slot-games img {
    max-width: 100%;
    height: auto;
  }
  /* Specific override for any image that might be smaller than 200px due to other rules */
  .page-casino-slot-games__type-image, 
  .page-casino-slot-games__game-image, 
  .page-casino-slot-games__mobile-image {
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-casino-slot-games__hero-title {
    font-size: 1.8em;
  }
  .page-casino-slot-games__hero-description {
    font-size: 0.9em;
  }
  .page-casino-slot-games__hero-button {
    padding: 8px 15px;
    font-size: 0.9em;
  }
  .page-casino-slot-games__intro-title,
  .page-casino-slot-games__types-title,
  .page-casino-slot-games__how-to-play-title,
  .page-casino-slot-games__featured-title,
  .page-casino-slot-games__mobile-title,
  .page-casino-slot-games__bonuses-title,
  .page-casino-slot-games__responsible-gaming-title,
  .page-casino-slot-games__faq-title,
  .page-casino-slot-games__cta-title {
    font-size: 1.5em;
  }
  .page-casino-slot-games__type-card-title,
  .page-casino-slot-games__game-title {
    font-size: 1.5em;
  }
  .page-casino-slot-games__faq-question {
    font-size: 1.1em;
  }
}