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

.page-casino-slots__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  background-color: #000000; /* Main color as background for hero */
  color: #FFFFFF;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  overflow: hidden;
  padding-bottom: 60px;
}

.page-casino-slots__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.page-casino-slots__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4; /* Slightly dim the image to make text readable */
}

.page-casino-slots__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  margin: 0 auto;
}

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

.page-casino-slots__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  line-height: 1.6;
  color: #FFFFFF;
}

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

.page-casino-slots__hero-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, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-casino-slots__hero-button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-casino-slots__hero-button--register:hover {
  background-color: #FCBC45;
  color: #FFFFFF;
  border-color: #FCBC45;
  transform: translateY(-3px);
}

.page-casino-slots__hero-button--login {
  background-color: #FCBC45;
  color: #FFFFFF;
  border: 2px solid #FCBC45;
}

.page-casino-slots__hero-button--login:hover {
  background-color: #FFFFFF;
  color: #000000;
  border-color: #FFFFFF;
  transform: translateY(-3px);
}

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

.page-casino-slots__introduction-section,
.page-casino-slots__game-types-section,
.page-casino-slots__why-play-section,
.page-casino-slots__game-providers-section,
.page-casino-slots__how-to-play-section,
.page-casino-slots__bonuses-section,
.page-casino-slots__responsible-gaming-section,
.page-casino-slots__faq-section,
.page-casino-slots__cta-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-casino-slots__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-casino-slots__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  border-radius: 2px;
}

.page-casino-slots__text-content {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333333;
  text-align: justify;
}

.page-casino-slots__text-content a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-casino-slots__text-content a:hover {
  text-decoration: underline;
}

.page-casino-slots__button {
  display: block;
  width: fit-content;
  margin: 40px auto 20px auto;
  padding: 15px 30px;
  background-color: #FCBC45;
  color: #FFFFFF;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-casino-slots__button:hover {
  background-color: #000000;
  transform: translateY(-3px);
}

.page-casino-slots__button--large {
  font-size: 1.3em;
  padding: 18px 35px;
}

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

.page-casino-slots__game-type-card {
  background-color: #f8f8f8;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino-slots__game-type-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-casino-slots__game-type-card img {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 20px;
}

.page-casino-slots__card-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-casino-slots__card-description {
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
  padding: 0 20px;
  margin-bottom: 25px;
}

.page-casino-slots__card-button {
  display: inline-block;
  padding: 10px 25px;
  background-color: #FCBC45;
  color: #FFFFFF;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-casino-slots__card-button:hover {
  background-color: #000000;
}

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

.page-casino-slots__feature-item {
  background-color: #f8f8f8;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-casino-slots__feature-item:hover {
  transform: translateY(-5px);
}

.page-casino-slots__feature-item img {
   /* Ensure images are >= 200px. This is a placeholder for a 200x150 image that will be scaled by CSS */
  
  object-fit: contain;
  margin-bottom: 20px;
  min-width: 200px; /* Enforcing minimum size for content images */
  min-
}

.page-casino-slots__feature-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 10px;
}

.page-casino-slots__feature-description {
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
}

.page-casino-slots__providers-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-casino-slots__provider-logo {
  text-align: center;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.page-casino-slots__provider-logo:hover {
  opacity: 1;
}

.page-casino-slots__provider-logo img {
  
  height: auto;
  object-fit: contain;
  margin-bottom: 10px;
  min-width: 200px; /* Enforcing minimum size for content images */
  min-
}

.page-casino-slots__provider-name {
  font-size: 0.9em;
  color: #666666;
}

.page-casino-slots__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-casino-slots__step-item {
  background-color: #f8f8f8;
  border-left: 5px solid #FCBC45;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.page-casino-slots__step-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 10px;
}

.page-casino-slots__step-description {
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
}

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

.page-casino-slots__bonus-card {
  background-color: #f8f8f8;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-casino-slots__bonus-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-casino-slots__bonus-card img {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 20px;
}

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

.page-casino-slots__faq-question {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-casino-slots__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

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

.page-casino-slots__faq-answer {
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding-top: 0;
}

.page-casino-slots__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding-top: 15px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-casino-slots__hero-section {
    min-height: 500px;
    padding: 40px 15px;
  }

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

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

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

  .page-casino-slots__hero-button {
    width: 100%;
    max-width: 300px;
  }

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

  .page-casino-slots__introduction-section,
  .page-casino-slots__game-types-section,
  .page-casino-slots__why-play-section,
  .page-casino-slots__game-providers-section,
  .page-casino-slots__how-to-play-section,
  .page-casino-slots__bonuses-section,
  .page-casino-slots__responsible-gaming-section,
  .page-casino-slots__faq-section,
  .page-casino-slots__cta-section {
    padding: 40px 0;
  }

  .page-casino-slots__game-types-grid,
  .page-casino-slots__features-grid,
  .page-casino-slots__steps-list,
  .page-casino-slots__bonus-grid {
    grid-template-columns: 1fr;
  }

  .page-casino-slots__provider-logo img,
  .page-casino-slots__feature-item img {
    max-width: 100%;
    height: auto;
  }

  /* Enforce max-width for all images in content area on mobile */
  .page-casino-slots img {
    max-width: 100% !important;
    height: auto !important;
  }

  .page-casino-slots__hero-image img {
    max-width: 100% !important;
    height: auto !important;
  }

  .page-casino-slots__container {
    padding: 0 15px;
  }
}