.page-slot-games {
  background-color: #140C0C;
  color: #FFF1E8;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small padding to avoid content touching header */
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

.page-slot-games__hero-section {
  position: relative;
  text-align: center;
  padding: 40px 20px;
  background-color: #2A1212;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-slot-games__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Constrain image width on larger screens */
  margin-bottom: 20px;
}

.page-slot-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #6A1E1E;
}

.page-slot-games__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-slot-games__main-title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  color: #F3C54D;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 1px;
}

.page-slot-games__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #FFF1E8;
}

.page-slot-games__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #FFF1E8;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  min-width: 200px; /* Ensure button is not too small */
  text-align: center;
}

.page-slot-games__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-slot-games__section {
  padding: 40px 20px;
  margin-bottom: 40px;
  background-color: #2A1212;
  border-radius: 10px;
  border: 1px solid #6A1E1E;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__section-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: #F3C54D;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.3;
}

.page-slot-games__section-description {
  font-size: 1rem;
  color: #FFF1E8;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-slot-games__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  justify-content: center;
}

.page-slot-games__card {
  background-color: #140C0C;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 20px;
  border: 1px solid #6A1E1E;
}

.page-slot-games__card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
  min-width: 200px; /* Enforce minimum image size */
  min-height: 200px;
}

.page-slot-games__card-title {
  font-size: 1.4rem;
  color: #F3C54D;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-slot-games__card-text {
  font-size: 0.95rem;
  color: #FFF1E8;
  margin-bottom: 20px;
  padding: 0 15px;
}

.page-slot-games__card-button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #FFF1E8;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
  font-size: 0.9rem;
}

.page-slot-games__card-button:hover {
  background: #E53030; /* Fallback for gradient hover */
  opacity: 0.9;
}

.page-slot-games__why-choose {
  text-align: center;
}

.page-slot-games__feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  text-align: left;
}

.page-slot-games__feature-item {
  background-color: #140C0C;
  padding: 25px;
  border-radius: 8px;
  border: 1px solid #6A1E1E;
}

.page-slot-games__feature-heading {
  font-size: 1.3rem;
  color: #C61F1F;
  margin-bottom: 10px;
}

.page-slot-games__feature-text {
  font-size: 0.95rem;
  color: #FFF1E8;
}

.page-slot-games__cta-banner {
  background-image: linear-gradient(rgba(20, 12, 12, 0.8), rgba(20, 12, 12, 0.8)), url('/path/to/placeholder/background.jpg'); /* Placeholder background, not primary image */
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 60px 20px;
}

.page-slot-games__cta-title {
  font-size: clamp(1.6rem, 4.5vw, 2.5rem);
  color: #F3C54D;
  margin-bottom: 15px;
}

.page-slot-games__cta-description {
  font-size: 1.1rem;
  color: #FFF1E8;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__faq-section {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__faq-list {
  margin-top: 30px;
}

.page-slot-games__faq-item {
  background-color: #140C0C;
  border: 1px solid #6A1E1E;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-slot-games__faq-question {
  display: block;
  padding: 15px 20px;
  font-size: 1.1rem;
  color: #C61F1F;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  text-align: left;
}

.page-slot-games__faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #F3C54D;
}

.page-slot-games__faq-item[open] .page-slot-games__faq-question::after {
  content: '-';
}

.page-slot-games__faq-answer {
  padding: 10px 20px 15px 20px;
  font-size: 1rem;
  color: #FFF1E8;
  text-align: left;
  border-top: 1px solid #2A1212;
}

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-slot-games__hero-section {
    padding: 30px 15px;
  }

  .page-slot-games__main-title {
    font-size: clamp(1.6rem, 6vw, 2.5rem);
  }

  .page-slot-games__description {
    font-size: 1rem;
  }

  .page-slot-games__section {
    padding: 30px 15px;
    margin-bottom: 30px;
  }

  .page-slot-games__grid {
    grid-template-columns: 1fr;
  }

  .page-slot-games__feature-list {
    grid-template-columns: 1fr;
  }

  .page-slot-games__cta-banner {
    padding: 40px 15px;
  }

  .page-slot-games__cta-title {
    font-size: clamp(1.4rem, 6vw, 2.2rem);
  }

  .page-slot-games__cta-description {
    font-size: 1rem;
  }

  .page-slot-games__faq-question {
    font-size: 1rem;
  }

  .page-slot-games__faq-answer {
    font-size: 0.95rem;
  }

  /* Ensure all content images within .page-slot-games are responsive */
  .page-slot-games img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 549px) {
  .page-slot-games__main-title {
    font-size: clamp(1.4rem, 7vw, 2.2rem);
  }
  .page-slot-games__section-title {
    font-size: clamp(1.3rem, 6vw, 2rem);
  }
  .page-slot-games__cta-title {
    font-size: clamp(1.2rem, 6.5vw, 2rem);
  }
  .page-slot-games__card-title {
    font-size: 1.2rem;
  }
  .page-slot-games__feature-heading {
    font-size: 1.1rem;
  }
  .page-slot-games__cta-button {
    min-width: unset;
    width: 100%;
    max-width: 250px;
  }
}