.page-slots {
  background-color: #140C0C;
  color: #FFF1E8;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small top padding for first section */
  box-sizing: border-box;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

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

.page-slots__hero-section {
  position: relative;
  text-align: center;
  padding-bottom: 40px;
}

.page-slots__hero-banner {
  width: 100%;
  margin: 0;
  overflow: hidden;
}

.page-slots__hero-banner img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/5; /* Adjusted for banner-like feel */
  object-fit: cover;
  object-position: center;
  min-width: 200px;
  min-height: 200px;
}

.page-slots__hero-content {
  padding: 20px 15px;
  max-width: 900px;
  margin: 0 auto;
}

.page-slots__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: 0.5px;
}

.page-slots__intro-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-slots__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #140C0C;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-slots__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-slots__cta-button--secondary {
  background: #7E0D0D;
  color: #FFF1E8;
}

.page-slots__cta-button--secondary:hover {
  background: #C61F1F;
}

.page-slots__section-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: #F3C54D;
  text-align: center;
  margin-bottom: 30px;
  padding-top: 40px;
  position: relative;
}

.page-slots__section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #E53030;
  margin: 10px auto 0;
}

.page-slots__info-section p {
  text-align: justify;
  margin-bottom: 20px;
}

.page-slots__image-wrapper {
  margin: 30px auto;
  max-width: 800px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.page-slots__image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  min-width: 200px;
  min-height: 200px;
  filter: none; /* No image filters */
}

.page-slots__image-caption {
  background-color: #2A1212;
  color: #FFF1E8;
  padding: 10px 15px;
  font-size: 0.9rem;
  text-align: center;
}

.page-slots__types-section {
  background-color: #2A1212;
  padding: 50px 0;
  margin-top: 40px;
}

.page-slots__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-slots__feature-item {
  background-color: #140C0C;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #6A1E1E;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease;
}

.page-slots__feature-item:hover {
  transform: translateY(-5px);
}

.page-slots__feature-item h3 {
  color: #FFB04A;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.page-slots__feature-item h3 a {
  color: #FFB04A;
  text-decoration: none;
}

.page-slots__feature-item h3 a:hover {
  text-decoration: underline;
  color: #F3C54D;
}

.page-slots__feature-item p {
  font-size: 1rem;
  color: #FFF1E8;
}

.page-slots__benefits-section {
  padding: 50px 0;
}

.page-slots__benefit-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-slots__benefit-item {
  background-color: #2A1212;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #6A1E1E;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  text-align: center;
}

.page-slots__benefit-title {
  color: #F3C54D;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.page-slots__how-to-play-section {
  background-color: #2A1212;
  padding: 50px 0;
  margin-top: 40px;
}

.page-slots__steps-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 700px;
  counter-reset: step-counter;
}

.page-slots__step-item {
  background-color: #140C0C;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #6A1E1E;
  position: relative;
  padding-left: 50px;
}

.page-slots__step-item::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #E53030;
  color: #FFF1E8;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
}

.page-slots__step-item strong {
  color: #FFB04A;
}

.page-slots__faq-section {
  padding: 50px 0;
}

.page-slots__faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.page-slots__faq-item {
  background-color: #2A1212;
  border: 1px solid #6A1E1E;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-slots__faq-question {
  color: #F3C54D;
  font-size: 1.2rem;
  padding: 15px 20px;
  margin: 0;
  cursor: pointer;
  position: relative;
  transition: background-color 0.2s ease;
}

.page-slots__faq-question:hover {
  background-color: #7E0D0D;
}

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

.page-slots__faq-item.active .page-slots__faq-question::after {
  content: '-';
}

.page-slots__faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-slots__faq-item.active .page-slots__faq-answer {
  max-height: 200px; /* Adjust as needed for content */
  padding-bottom: 15px;
}

.page-slots__text-link {
  color: #F3C54D;
  text-decoration: none;
  display: block;
  text-align: center;
  margin-top: 30px;
  font-size: 1.1rem;
}

.page-slots__text-link:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-slots__main-title {
    font-size: clamp(1.6rem, 6vw, 2.5rem);
  }
  .page-slots__intro-text {
    font-size: 1rem;
  }
  .page-slots__feature-list, .page-slots__benefit-list {
    grid-template-columns: 1fr;
  }
  .page-slots__info-section p {
    text-align: left;
  }
  .page-slots__hero-banner img, .page-slots__image-wrapper img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .page-slots__container {
    padding: 15px 12px;
  }
  .page-slots__hero-section {
    padding-bottom: 20px;
  }
  .page-slots__hero-content {
    padding: 15px 12px;
  }
  .page-slots__cta-button {
    padding: 10px 20px;
    font-size: 1rem;
  }
  .page-slots__section-title {
    font-size: clamp(1.3rem, 5vw, 2rem);
    padding-top: 30px;
    margin-bottom: 20px;
  }
  .page-slots__info-section p {
    font-size: 0.95rem;
  }
  .page-slots__feature-item h3, .page-slots__benefit-title {
    font-size: 1.2rem;
  }
  .page-slots__feature-item p {
    font-size: 0.9rem;
  }
  .page-slots__step-item {
    padding-left: 45px;
  }
  .page-slots__step-item::before {
    width: 25px;
    height: 25px;
    font-size: 0.9rem;
  }
  .page-slots__faq-question {
    font-size: 1.1rem;
    padding: 12px 15px;
  }
  .page-slots__faq-question::after {
    right: 15px;
  }
  .page-slots__faq-answer {
    padding: 0 15px;
  }
}

@media (max-width: 549px) {
  .page-slots__info-section p {
    text-align: left;
  }
}