.page-slot-games-jackpot-strategy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Default text color for the page, assuming dark body background */
  background-color: transparent; /* Body handles its own background */
}

.page-slot-games-jackpot-strategy__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding as body handles header offset */
  padding-bottom: 60px;
  background-color: #0d0d0d; /* Dark background for hero section */
  color: #ffffff;
}

.page-slot-games-jackpot-strategy__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

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

.page-slot-games-jackpot-strategy__hero-content {
  max-width: 900px;
  margin-top: 30px;
  text-align: center;
  padding: 0 20px;
  z-index: 1;
}

.page-slot-games-jackpot-strategy__main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem); /* Responsive font size */
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-slot-games-jackpot-strategy__hero-description {
  font-size: 1.1rem;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-slot-games-jackpot-strategy__btn-primary {
  display: inline-block;
  background-color: #26A9E0; /* Primary brand color */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s ease;
  min-width: 200px; /* Ensure minimum size */
  box-sizing: border-box;
  text-align: center;
}

.page-slot-games-jackpot-strategy__btn-primary:hover {
  background-color: #1a7fb3;
}

.page-slot-games-jackpot-strategy__content-section {
  padding: 60px 0;
}

.page-slot-games-jackpot-strategy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-slot-games-jackpot-strategy__section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: #26A9E0; /* Primary brand color for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-slot-games-jackpot-strategy__sub-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: #26A9E0; /* Primary brand color for sub-titles */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-slot-games-jackpot-strategy__paragraph {
  font-size: 1.05rem;
  margin-bottom: 15px;
  line-height: 1.7;
}

.page-slot-games-jackpot-strategy__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: inherit; /* Inherit from parent section */
}

.page-slot-games-jackpot-strategy__list-item {
  margin-bottom: 8px;
}

.page-slot-games-jackpot-strategy__image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  object-fit: cover;
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
}

/* Section specific colors for contrast */
.page-slot-games-jackpot-strategy__light-bg {
  background-color: #ffffff; /* White background */
  color: #333333; /* Dark text for light background */
}

.page-slot-games-jackpot-strategy__dark-section {
  background-color: #26A9E0; /* Primary brand color as background */
  color: #ffffff; /* White text for dark background */
}

.page-slot-games-jackpot-strategy__dark-section .page-slot-games-jackpot-strategy__section-title,
.page-slot-games-jackpot-strategy__dark-section .page-slot-games-jackpot-strategy__sub-title {
  color: #ffffff; /* Ensure titles are white on dark background */
}

/* FAQ Section */
.page-slot-games-jackpot-strategy__faq-section {
  padding: 60px 0;
  background-color: #0d0d0d; /* Dark background */
  color: #ffffff;
}

.page-slot-games-jackpot-strategy__faq-list {
  margin-top: 40px;
}

.page-slot-games-jackpot-strategy__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-slot-games-jackpot-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  list-style: none; /* For details/summary */
}

.page-slot-games-jackpot-strategy__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for Chrome */
}

.page-slot-games-jackpot-strategy__faq-item summary {
  list-style: none; /* Hide default marker for Firefox/Edge */
}

.page-slot-games-jackpot-strategy__faq-item summary::marker {
  display: none; /* Hide default marker for modern browsers */
}

.page-slot-games-jackpot-strategy__faq-qtext {
  flex-grow: 1;
}

.page-slot-games-jackpot-strategy__faq-toggle {
  font-size: 1.5rem;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-slot-games-jackpot-strategy__faq-item[open] .page-slot-games-jackpot-strategy__faq-toggle {
  transform: rotate(45deg); /* Rotate for 'x' or 'minus' effect */
}

.page-slot-games-jackpot-strategy__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1rem;
  color: #f0f0f0;
}

.page-slot-games-jackpot-strategy__faq-answer p {
  margin-bottom: 0;
}

.page-slot-games-jackpot-strategy__faq-image {
  margin-top: 40px;
}

/* CTA Section */
.page-slot-games-jackpot-strategy__cta-section {
  text-align: center;
  padding: 80px 0;
  background-color: #f0f0f0; /* Light background for final CTA */
  color: #333333;
}

.page-slot-games-jackpot-strategy__cta-section .page-slot-games-jackpot-strategy__section-title {
  color: #26A9E0;
}

.page-slot-games-jackpot-strategy__cta-section .page-slot-games-jackpot-strategy__paragraph {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

.page-slot-games-jackpot-strategy__cta-bottom {
  margin-top: 40px;
}

/* Links within content */
.page-slot-games-jackpot-strategy__paragraph a,
.page-slot-games-jackpot-strategy__list-item a,
.page-slot-games-jackpot-strategy__faq-answer a {
  color: #26A9E0;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-slot-games-jackpot-strategy__paragraph a:hover,
.page-slot-games-jackpot-strategy__list-item a:hover,
.page-slot-games-jackpot-strategy__faq-answer a:hover {
  color: #1a7fb3;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-slot-games-jackpot-strategy__container {
    padding: 0 30px;
  }
}

@media (max-width: 768px) {
  .page-slot-games-jackpot-strategy__hero-section {
    padding-bottom: 40px;
  }

  .page-slot-games-jackpot-strategy__main-title {
    font-size: 2.2rem;
  }

  .page-slot-games-jackpot-strategy__hero-description {
    font-size: 1rem;
  }

  .page-slot-games-jackpot-strategy__btn-primary {
    padding: 12px 25px;
    font-size: 0.95rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-slot-games-jackpot-strategy__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .page-slot-games-jackpot-strategy__sub-title {
    font-size: 1.3rem;
  }

  .page-slot-games-jackpot-strategy__paragraph,
  .page-slot-games-jackpot-strategy__list-item,
  .page-slot-games-jackpot-strategy__faq-answer {
    font-size: 0.95rem;
  }

  .page-slot-games-jackpot-strategy__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: unset;
    min-height: unset;
  }

  .page-slot-games-jackpot-strategy__content-section,
  .page-slot-games-jackpot-strategy__faq-section,
  .page-slot-games-jackpot-strategy__cta-section {
    padding: 40px 0;
  }

  .page-slot-games-jackpot-strategy__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-slot-games-jackpot-strategy__faq-question {
    font-size: 1rem;
    padding: 15px;
  }
  
  .page-slot-games-jackpot-strategy__faq-answer {
    padding: 0 15px 15px 15px;
  }

  .page-slot-games-jackpot-strategy__faq-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
}

/* Ensure no filter on images */
.page-slot-games-jackpot-strategy img {
  filter: none !important;
}

/* Ensure content area images are not too small by CSS */
.page-slot-games-jackpot-strategy__content-section img,
.page-slot-games-jackpot-strategy__faq-section img {
    min-width: 200px;
    min-height: 200px;
}

/* For images that are not explicitly content-section images but are within the main content */
.page-slot-games-jackpot-strategy .page-slot-games-jackpot-strategy__image {
    min-width: 200px;
    min-height: 200px;
}

/* Mobile specific adjustments to ensure no overflow */
@media (max-width: 768px) {
  .page-slot-games-jackpot-strategy__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }
}

/* Button responsive checks */
.page-slot-games-jackpot-strategy__btn-primary {
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}
.page-slot-games-jackpot-strategy__cta-buttons,
.page-slot-games-jackpot-strategy__button-group,
.page-slot-games-jackpot-strategy__btn-container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

@media (max-width: 768px) {
  .page-slot-games-jackpot-strategy__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-slot-games-jackpot-strategy__cta-buttons,
  .page-slot-games-jackpot-strategy__button-group,
  .page-slot-games-jackpot-strategy__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px; /* Space between buttons if multiple */
  }
  .page-slot-games-jackpot-strategy__cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}