.page-slot-games {
  background-color: #FFFFFF;
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

/* Hero Section */
.page-slot-games__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #017439;
  color: #FFFFFF;
  padding-top: 10px; /* Small top padding */
  padding-bottom: 40px;
}

.page-slot-games__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Ensure it doesn't exceed typical hero width */
}

.page-slot-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-slot-games__hero-content {
  padding: 20px;
  max-width: 800px;
}

.page-slot-games__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #FFFFFF;
}

.page-slot-games__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #FFFFFF;
}

.page-slot-games__hero-cta-button {
  display: inline-block;
  background-color: #C30808;
  color: #FFFF00;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
  min-height: 44px;
  min-width: 150px;
}

.page-slot-games__hero-cta-button:hover {
  background-color: #a00606;
}

/* General Section Styling */
.page-slot-games__introduction,
.page-slot-games__popular-games,
.page-slot-games__why-choose,
.page-slot-games__how-to-play,
.page-slot-games__faq,
.page-slot-games__cta-section {
  padding: 40px 0;
  background-color: #FFFFFF;
}

.page-slot-games__introduction,
.page-slot-games__why-choose,
.page-slot-games__how-to-play,
.page-slot-games__faq,
.page-slot-games__cta-section {
  background-color: #f8f8f8;
}

.page-slot-games__section-title {
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  color: #017439;
}

.page-slot-games__text-content {
  font-size: 1rem;
  margin-bottom: 20px;
  text-align: justify;
}

/* Popular Games Grid */
.page-slot-games__game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-items: center;
}

.page-slot-games__game-tile {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.page-slot-games__game-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.page-slot-games__game-tile img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
  border-radius: 8px;
}

/* Why Choose Section */
.page-slot-games__feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.page-slot-games__feature-item {
  background-color: #FFFFFF;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #017439;
}

.page-slot-games__feature-title {
  font-size: 1.4rem;
  color: #017439;
  margin-bottom: 10px;
}

.page-slot-games__feature-description {
  font-size: 0.95rem;
  color: #555555;
}

/* How To Play Section */
.page-slot-games__steps-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.page-slot-games__step-item {
  background-color: #FFFFFF;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-slot-games__step-title {
  font-size: 1.5rem;
  color: #017439;
  margin-bottom: 10px;
}

.page-slot-games__step-description {
  font-size: 0.95rem;
  color: #555555;
  margin-bottom: 20px;
}

.page-slot-games__step-cta {
  display: inline-block;
  background-color: #C30808;
  color: #FFFF00;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
  transition: background-color 0.3s ease;
  min-height: 44px;
  min-width: 120px;
}

.page-slot-games__step-cta:hover {
  background-color: #a00606;
}

/* FAQ Section */
.page-slot-games__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-slot-games__faq-item {
  background-color: #FFFFFF;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-slot-games__faq-question {
  display: block;
  padding: 18px 25px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #017439;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease;
}

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

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

.page-slot-games__faq-question:hover {
  background-color: #e6f7ed;
}

.page-slot-games__faq-answer {
  padding: 0 25px 20px;
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.8;
}

/* CTA Section */
.page-slot-games__cta-section {
  text-align: center;
  background-color: #017439;
  color: #FFFFFF;
  padding: 50px 0;
}

.page-slot-games__cta-section .page-slot-games__section-title {
  color: #FFFFFF;
}

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

.page-slot-games__cta-button {
  display: inline-block;
  background-color: #C30808;
  color: #FFFF00;
  padding: 18px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  transition: background-color 0.3s ease;
  min-height: 44px;
  min-width: 180px;
}

.page-slot-games__cta-button:hover {
  background-color: #a00606;
}

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

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

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

  .page-slot-games__hero-cta-button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .page-slot-games__game-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-slot-games__section-title {
    font-size: 1.8rem;
  }

  .page-slot-games__feature-list,
  .page-slot-games__steps-list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .page-slot-games__game-tile img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 549px) {
  .page-slot-games__container {
    padding: 15px;
  }

  .page-slot-games__hero-section {
    padding-bottom: 20px;
  }

  .page-slot-games__main-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .page-slot-games__hero-description {
    font-size: 0.9rem;
  }

  .page-slot-games__hero-cta-button {
    font-size: 1rem;
    padding: 12px 25px;
  }

  .page-slot-games__game-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .page-slot-games__section-title {
    font-size: 1.5rem;
  }

  .page-slot-games__text-content {
    font-size: 0.9rem;
  }

  .page-slot-games__feature-item,
  .page-slot-games__step-item {
    padding: 20px;
  }

  .page-slot-games__feature-title,
  .page-slot-games__step-title {
    font-size: 1.2rem;
  }

  .page-slot-games__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-slot-games__faq-question::after {
    right: 20px;
  }

  .page-slot-games__faq-answer {
    padding: 0 20px 15px;
  }

  .page-slot-games__cta-button {
    font-size: 1rem;
    padding: 15px 25px;
  }

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

/* General image sizing for content area */
.page-slot-games__game-tile img,
.page-slot-games__how-to-play img {
  min-width: 200px;
  min-height: 200px;
  max-width: 100%;
  height: auto;
}

/* Ensure no filter is applied to images */
.page-slot-games img {
  filter: none !important;
}