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

.page-slot-games__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
  background-color: #100224;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-slot-games__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-slot-games__hero-content {
  padding: 40px 20px;
  text-align: center;
  max-width: 900px;
  width: 100%;
  z-index: 1;
}

.page-slot-games__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #ff9500, #ff5e3a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

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

.page-slot-games__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-slot-games__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-slot-games__btn--primary {
  background: linear-gradient(90deg, #ff9500, #ff5e3a);
  color: #FFFFFF;
}

.page-slot-games__btn--primary:hover {
  background: linear-gradient(90deg, #ff5e3a, #ff9500);
  transform: translateY(-2px);
}

.page-slot-games__btn--secondary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-slot-games__btn--secondary:hover {
  background-color: #1e87c0;
  border-color: #1e87c0;
  transform: translateY(-2px);
}

.page-slot-games__btn--small {
  padding: 8px 15px;
  font-size: 0.9em;
  border-radius: 20px;
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-slot-games__btn--small:hover {
  background-color: #1e87c0;
}

.page-slot-games__section-title {
  font-size: 2.2em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #26A9E0;
}

.page-slot-games__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555555;
}

.page-slot-games__game-showcase-section {
  padding: 60px 20px;
  background-color: #F8F8F8;
}

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

.page-slot-games__game-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

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

.page-slot-games__game-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-slot-games__game-card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-slot-games__game-card-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-slot-games__game-card-title a {
  color: #26A9E0;
  text-decoration: none;
}

.page-slot-games__game-card-title a:hover {
  text-decoration: underline;
}

.page-slot-games__game-card-description {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 15px;
}

.page-slot-games__jackpot-info-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  background-color: #EBF7FB;
  gap: 40px;
}

.page-slot-games__jackpot-info-content {
  max-width: 600px;
  text-align: center;
}

.page-slot-games__jackpot-info-image-wrapper {
  width: 100%;
  max-width: 800px;
  text-align: center;
}

.page-slot-games__jackpot-info-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  display: block;
}

.page-slot-games__how-to-play-section {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.page-slot-games__how-to-play-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 40px auto;
}

.page-slot-games__step-card {
  background-color: #F0F8FF;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-slot-games__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #26A9E0;
  color: #FFFFFF;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 15px;
}

.page-slot-games__step-title {
  font-size: 1.3em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-slot-games__step-description {
  font-size: 0.95em;
  color: #666666;
}

.page-slot-games__how-to-play-cta {
  text-align: center;
  margin-top: 40px;
}

.page-slot-games__faq-section {
  padding: 60px 20px;
  background-color: #F8F8F8;
}

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

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

.page-slot-games__faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1em;
  font-weight: bold;
  color: #333333;
  background-color: #FFFFFF;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.3s ease;
}

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

.page-slot-games__faq-question.active {
  background-color: #EBF7FB;
}

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

.page-slot-games__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-slot-games__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding: 15px 25px 25px 25px;
}

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

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

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

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

  .page-slot-games__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-slot-games__btn {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

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

  .page-slot-games__game-showcase-section,
  .page-slot-games__jackpot-info-section,
  .page-slot-games__how-to-play-section,
  .page-slot-games__faq-section {
    padding: 40px 15px;
  }

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

  .page-slot-games__jackpot-info-section {
    flex-direction: column;
  }

  .page-slot-games__how-to-play-steps {
    grid-template-columns: 1fr;
  }

  /* Critical: prevent content area images from overflowing */
  .page-slot-games img {
    max-width: 100% !important;
    height: auto !important;
  }

  /* Ensure no content area image width/height is below 200px in CSS */
  .page-slot-games__game-card-image {
    width: 100%; /* Will be constrained by max-width: 100% */
    height: auto; /* Will be constrained by max-width: 100% */
    min-width: 200px;
    min-height: 200px;
  }

  .page-slot-games__jackpot-info-image {
    width: 100%; /* Will be constrained by max-width: 100% */
    height: auto; /* Will be constrained by max-width: 100% */
    min-width: 200px;
    min-height: 200px;
  }
}

@media (min-width: 769px) {
  .page-slot-games__jackpot-info-section {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: left;
  }

  .page-slot-games__jackpot-info-content {
    text-align: left;
    margin-right: 40px;
  }

  .page-slot-games__jackpot-info-image-wrapper {
    flex-shrink: 0;
    max-width: 50%;
  }

  .page-slot-games__hero-section {
    min-height: 500px;
    justify-content: center;
  }

  .page-slot-games__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }

  .page-slot-games__hero-image {
    height: 100%;
  }

  .page-slot-games__hero-content {
    position: relative;
    z-index: 1;
  }
}