.page-slot-game-play-introduction {
  --primary-color: #FF8C1A;
  --secondary-color: #FFA53A;
  --card-bg: #17191F;
  --background-color: #0D0E12;
  --text-main: #FFF3E6;
  --border-color: #A84F0C;
  --glow-color: #FFB04D;
  --deep-orange: #D96800;
  
  background-color: var(--background-color);
  color: var(--text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden; /* Prevent horizontal scroll on main content */
}

.page-slot-game-play-introduction__hero-section {
  display: flex;
  flex-direction: column; /* Default to column for mobile-first approach */
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding for first section */
  padding-bottom: 40px;
  background-color: var(--card-bg);
  border-bottom: 1px solid var(--border-color);
}

.page-slot-game-play-introduction__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Max width for desktop image */
  margin-bottom: 20px;
}

.page-slot-game-play-introduction__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-slot-game-play-introduction__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-slot-game-play-introduction__main-title {
  color: var(--primary-color);
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  text-shadow: 0 0 8px rgba(255, 140, 26, 0.5);
}

.page-slot-game-play-introduction__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--text-main);
}

.page-slot-game-play-introduction__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, var(--secondary-color) 0%, var(--deep-orange) 100%);
  color: var(--text-main);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 165, 58, 0.4);
}

.page-slot-game-play-introduction__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 165, 58, 0.6);
}

.page-slot-game-play-introduction__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border-color);
}

.page-slot-game-play-introduction__section:last-of-type {
  border-bottom: none;
}

.page-slot-game-play-introduction__section-title {
  font-size: 2.2em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-slot-game-play-introduction__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  border-radius: 2px;
}

.page-slot-game-play-introduction__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.page-slot-game-play-introduction__content-wrapper--column {
  flex-direction: column;
  align-items: center;
}

.page-slot-game-play-introduction__text-content {
  flex: 1;
}

.page-slot-game-play-introduction__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Enforce minimum image size */
  min-height: 200px; /* Enforce minimum image size */
}

.page-slot-game-play-introduction__image--left {
  flex: 0 0 400px; /* Fixed width for left image on desktop */
  max-width: 400px;
}

.page-slot-game-play-introduction__image--right {
  flex: 0 0 400px; /* Fixed width for right image on desktop */
  max-width: 400px;
  order: 1; /* Puts image on the right */
}

.page-slot-game-play-introduction__rules-list,
.page-slot-game-play-introduction__tips-list,
.page-slot-game-play-introduction__types-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.page-slot-game-play-introduction__rules-list li,
.page-slot-game-play-introduction__tips-list li {
  background-color: var(--card-bg);
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-slot-game-play-introduction__rules-list li strong,
.page-slot-game-play-introduction__tips-list li strong {
  color: var(--secondary-color);
}

.page-slot-game-play-introduction__types-list li {
  background-color: var(--card-bg);
  padding: 25px;
  margin-bottom: 25px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-slot-game-play-introduction__types-list li h3 {
  color: var(--secondary-color);
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-slot-game-play-introduction__types-list li img {
  margin-top: 20px;
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  min-width: 200px; /* Enforce minimum image size */
  min-height: 200px; /* Enforce minimum image size */
}

.page-slot-game-play-introduction__secondary-button {
  display: inline-block;
  background: var(--card-bg);
  color: var(--secondary-color);
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid var(--border-color);
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: 30px;
}

.page-slot-game-play-introduction__secondary-button:hover {
  background-color: var(--primary-color);
  color: var(--text-main);
  border-color: var(--primary-color);
}

.page-slot-game-play-introduction__faq-list {
  margin-top: 40px;
}

.page-slot-game-play-introduction__faq-item {
  background-color: var(--card-bg);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.page-slot-game-play-introduction__faq-question {
  color: var(--text-main);
  padding: 20px;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--card-bg);
  transition: background-color 0.3s ease;
}

.page-slot-game-play-introduction__faq-question:hover {
  background-color: rgba(var(--primary-color), 0.1);
}

.page-slot-game-play-introduction__faq-question::after {
  content: '+';
  font-size: 1.5em;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.page-slot-game-play-introduction__faq-item.active .page-slot-game-play-introduction__faq-question::after {
  transform: rotate(45deg);
}

.page-slot-game-play-introduction__faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.page-slot-game-play-introduction__faq-answer p {
  padding-bottom: 20px;
  margin: 0;
  color: var(--text-main);
}

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

  .page-slot-game-play-introduction__hero-image-wrapper {
    margin-bottom: 15px;
  }

  .page-slot-game-play-introduction__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em); /* Use clamp for H1 on mobile */
    margin-bottom: 15px;
  }

  .page-slot-game-play-introduction__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-slot-game-play-introduction__cta-button {
    width: 100%;
    max-width: 300px;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-slot-game-play-introduction__section {
    padding: 40px 15px;
  }

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

  .page-slot-game-play-introduction__content-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .page-slot-game-play-introduction__image,
  .page-slot-game-play-introduction__image--left,
  .page-slot-game-play-introduction__image--right {
    max-width: 100%;
    height: auto;
    order: unset; /* Reset order for column layout */
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px; /* Ensure images are not too small */
  }

  .page-slot-game-play-introduction__rules-list li,
  .page-slot-game-play-introduction__tips-list li,
  .page-slot-game-play-introduction__types-list li {
    padding: 15px;
    margin-bottom: 10px;
  }

  .page-slot-game-play-introduction__types-list li h3 {
    font-size: 1.3em;
  }

  .page-slot-game-play-introduction__secondary-button {
    width: 100%;
    max-width: 250px;
    margin: 20px auto 0;
  }
}

@media (max-width: 549px) {
  .page-slot-game-play-introduction__section {
    padding: 30px 10px;
  }

  .page-slot-game-play-introduction__main-title {
    font-size: clamp(1.5em, 7vw, 2em);
  }

  .page-slot-game-play-introduction__section-title {
    font-size: 1.6em;
    margin-bottom: 25px;
  }

  .page-slot-game-play-introduction__hero-description {
    font-size: 0.95em;
  }

  .page-slot-game-play-introduction__faq-question {
    font-size: 1em;
    padding: 15px;
  }
}

/* Ensure content area images are never smaller than 200px */
.page-slot-game-play-introduction img {
  min-width: 200px;
  min-height: 200px;
}

@media (max-width: 768px) {
  .page-slot-game-play-introduction img {
    max-width: 100%;
    height: auto;
  }
  /* Ensure content area images are not explicitly set to smaller sizes */
  .page-slot-game-play-introduction__image,
  .page-slot-game-play-introduction__types-list li img {
    width: 100%; /* Override fixed width if any */
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Maintain minimum size */
    min-height: 200px; /* Maintain minimum size */
  }
}