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

.page-slot-games__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 40px;
  background-color: #17191F;
  overflow: hidden;
}

.page-slot-games__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* To prevent image from being too wide on very large screens */
  margin-bottom: 20px;
}

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

.page-slot-games__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.page-slot-games__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFF3E6;
  margin-bottom: 15px;
}

.page-slot-games__intro-description {
  font-size: 1.1em;
  margin-bottom: 30px;
}

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

.page-slot-games__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
  transition: all 0.3s ease;
  min-height: 44px; /* Touch target */
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-slot-games__cta-button--primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  border: none;
}

.page-slot-games__cta-button--primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 15px #FFB04D;
}

.page-slot-games__cta-button--secondary {
  background: #17191F;
  color: #FFA53A;
  border: 1px solid #A84F0C;
}

.page-slot-games__cta-button--secondary:hover {
  background: #2a2d36;
  color: #FFF3E6;
  border-color: #FFA53A;
}

.page-slot-games__section-title {
  font-size: 2.2em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #FFF3E6;
  background: linear-gradient(to right, #FFB04D, #FFA53A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.page-slot-games__about-section,
.page-slot-games__features-section,
.page-slot-games__guide-section,
.page-slot-games__promotions-section,
.page-slot-games__faq-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-slot-games__content-wrapper {
  max-width: 800px;
  margin: 0 auto 30px;
  text-align: center;
}

.page-slot-games__content-wrapper p {
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-slot-games__popular-games-section {
  padding: 60px 20px;
  background-color: #17191F;
  text-align: center;
}

.page-slot-games__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.page-slot-games__game-tile {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #0D0E12;
  border: 1px solid #A84F0C;
}

.page-slot-games__game-tile img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.page-slot-games__game-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 15px #FFB04D;
}

.page-slot-games__game-tile:hover img {
  transform: scale(1.03);
}

.page-slot-games__button-wrapper {
  margin-top: 30px;
  text-align: center;
}

.page-slot-games__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.page-slot-games__feature-card {
  background-color: #17191F;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #A84F0C;
}

.page-slot-games__feature-card img {
  width: 100%;
  max-width: 200px; /* Ensure images are not too small */
  height: auto;
  display: block;
  margin: 0 auto 20px;
  object-fit: cover;
}

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

.page-slot-games__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.page-slot-games__step-card {
  background-color: #17191F;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #A84F0C;
  position: relative;
  padding-top: 60px; /* Space for step number */
}

.page-slot-games__step-number {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  border: 2px solid #FFB04D;
}

.page-slot-games__step-title {
  font-size: 1.4em;
  color: #FFA53A;
  margin-bottom: 10px;
}

.page-slot-games__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-slot-games__faq-item {
  background-color: #17191F;
  border: 1px solid #A84F0C;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-slot-games__faq-question {
  font-size: 1.15em;
  padding: 18px 25px;
  cursor: pointer;
  color: #FFF3E6;
  position: relative;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-slot-games__faq-question::after {
  content: '+';
  font-size: 1.5em;
  font-weight: bold;
  color: #FFA53A;
  transition: transform 0.3s ease;
}

.page-slot-games__faq-question.is-active::after {
  content: '-';
  transform: rotate(0deg);
}

.page-slot-games__faq-answer {
  padding: 0 25px 18px;
  font-size: 1em;
  color: #FFF3E6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-slot-games__faq-answer p {
  margin: 0;
}

.page-slot-games__faq-answer.is-open {
  max-height: 200px; /* Adjust as needed */
  padding-top: 10px;
}

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

  .page-slot-games__hero-image-wrapper {
    margin-bottom: 15px;
  }

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

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

  .page-slot-games__hero-actions {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 300px;
  }

  .page-slot-games__cta-button {
    width: 100%;
  }

  .page-slot-games__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-slot-games__about-section,
  .page-slot-games__features-section,
  .page-slot-games__guide-section,
  .page-slot-games__promotions-section,
  .page-slot-games__faq-section {
    padding: 40px 15px;
  }

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

  .page-slot-games__feature-card img,
  .page-slot-games__feature-card,
  .page-slot-games__step-card {
    min-width: 200px; /* Ensure images and cards are not too small */
  }

  .page-slot-games__feature-card img {
    
  }

  /* Ensure content area images are not smaller than 200px */
  .page-slot-games__popular-games-section img,
  .page-slot-games__features-section img {
    width: 100%;
    height: auto;
    max-width: 100%;
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 549px) {
  .page-slot-games__section-title {
    font-size: 1.5em;
  }

  .page-slot-games__game-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .page-slot-games__popular-games-section img,
  .page-slot-games__features-section img {
    width: 100%;
    height: auto;
    max-width: 100%;
    min-width: 200px;
    min-height: 200px;
  }
}

/* Global image rules for content area to prevent small sizes */
.page-slot-games img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-slot-games__game-grid img,
.page-slot-games__feature-card img {
  min-width: 200px;
  min-height: 200px;
}