/* style/slot-games-jackpot-secrets.css */
.page-slot-games-jackpot-secrets {
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-slot-games-jackpot-secrets__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom padding */
  background-color: #08160F;
}

.page-slot-games-jackpot-secrets__hero-image-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  /* Maintain aspect ratio for hero image */
  padding-bottom: 56.25%; /* 16:9 aspect ratio (height / width * 100) for 1920x1080 */
}

.page-slot-games-jackpot-secrets__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-slot-games-jackpot-secrets__hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: 20px; /* Space between image and content */
  background-color: transparent; /* No overlay on image */
}

.page-slot-games-jackpot-secrets__main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: #F2C14E; /* Gold */
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-slot-games-jackpot-secrets__description {
  font-size: 1.15rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games-jackpot-secrets__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-slot-games-jackpot-secrets__btn-primary,
.page-slot-games-jackpot-secrets__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-slot-games-jackpot-secrets__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #F2FFF6; /* Text Main */
  border: none;
  box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-slot-games-jackpot-secrets__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 20px rgba(17, 168, 78, 0.6);
}

.page-slot-games-jackpot-secrets__btn-secondary {
  background-color: transparent;
  color: #2AD16F; /* Deep Green */
  border: 2px solid #2AD16F; /* Deep Green */
}

.page-slot-games-jackpot-secrets__btn-secondary:hover {
  background-color: #2AD16F;
  color: #F2FFF6;
}

.page-slot-games-jackpot-secrets__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #F2C14E; /* Gold */
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.3;
}

.page-slot-games-jackpot-secrets__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #22C768; /* Auxiliary color */
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 20px;
  line-height: 1.4;
}

.page-slot-games-jackpot-secrets__introduction,
.page-slot-games-jackpot-secrets__light-bg {
  background-color: #0A4B2C; /* Deep Green for a lighter section, contrasting with #08160F */
  color: #F2FFF6; /* Text Main */
  padding: 60px 0;
}

.page-slot-games-jackpot-secrets__dark-bg {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
  padding: 60px 0;
}

.page-slot-games-jackpot-secrets__introduction p,
.page-slot-games-jackpot-secrets__section p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
}

.page-slot-games-jackpot-secrets__introduction ul,
.page-slot-games-jackpot-secrets__section ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
}

.page-slot-games-jackpot-secrets__introduction li,
.page-slot-games-jackpot-secrets__section li {
  margin-bottom: 10px;
  font-size: 1.05rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-slot-games-jackpot-secrets__introduction li strong,
.page-slot-games-jackpot-secrets__section li strong {
  color: #F2FFF6;
}

.page-slot-games-jackpot-secrets__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

/* FAQ Section */
.page-slot-games-jackpot-secrets__faq-section {
  padding: 60px 0;
  background-color: #08160F; /* Background */
}

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

.page-slot-games-jackpot-secrets__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-slot-games-jackpot-secrets__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.15rem;
  color: #F2FFF6; /* Text Main */
  background-color: #1E3A2A; /* Divider for summary background */
  position: relative;
  list-style: none; /* For details/summary */
}

.page-slot-games-jackpot-secrets__faq-question::-webkit-details-marker {
  display: none;
}

.page-slot-games-jackpot-secrets__faq-qtext {
  flex-grow: 1;
  color: #F2C14E; /* Gold */
}

.page-slot-games-jackpot-secrets__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Glow */
}

.page-slot-games-jackpot-secrets__faq-answer {
  padding: 20px 25px;
  font-size: 1.05rem;
  color: #A7D9B8; /* Text Secondary */
  background-color: #11271B;
}

.page-slot-games-jackpot-secrets__faq-answer p {
  margin-bottom: 0;
  color: #A7D9B8;
}

/* Ensure links within content are visible */
.page-slot-games-jackpot-secrets__section a,
.page-slot-games-jackpot-secrets__faq-answer a {
  color: #2AD16F; /* Green for links */
  text-decoration: underline;
}

.page-slot-games-jackpot-secrets__section a:hover,
.page-slot-games-jackpot-secrets__faq-answer a:hover {
  color: #57E38D;
}

.page-slot-games-jackpot-secrets__cta-bottom {
  padding: 80px 0;
  text-align: center;
  background-color: #0A4B2C; /* Deep Green, contrasting */
}

.page-slot-games-jackpot-secrets__cta-bottom .page-slot-games-jackpot-secrets__section-title {
  color: #F2C14E; /* Gold */
}

.page-slot-games-jackpot-secrets__cta-bottom p {
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 1.15rem;
  color: #F2FFF6; /* Text Main */
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-slot-games-jackpot-secrets__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .page-slot-games-jackpot-secrets__description {
    font-size: 1rem;
  }
  .page-slot-games-jackpot-secrets__section-title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
  }
  .page-slot-games-jackpot-secrets__sub-title {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
  }
  .page-slot-games-jackpot-secrets__introduction p,
  .page-slot-games-jackpot-secrets__section p {
    font-size: 1rem;
  }
  .page-slot-games-jackpot-secrets__introduction li,
  .page-slot-games-jackpot-secrets__section li {
    font-size: 0.95rem;
  }
  .page-slot-games-jackpot-secrets__faq-question {
    font-size: 1.05rem;
    padding: 15px 20px;
  }
  .page-slot-games-jackpot-secrets__faq-answer {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-slot-games-jackpot-secrets__btn-primary,
  .page-slot-games-jackpot-secrets__btn-secondary {
    padding: 12px 25px;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .page-slot-games-jackpot-secrets {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-slot-games-jackpot-secrets__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-slot-games-jackpot-secrets__hero-content {
    padding: 20px 15px;
  }

  .page-slot-games-jackpot-secrets__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-slot-games-jackpot-secrets__description {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .page-slot-games-jackpot-secrets__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-slot-games-jackpot-secrets__btn-primary,
  .page-slot-games-jackpot-secrets__btn-secondary {
    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-secrets__introduction,
  .page-slot-games-jackpot-secrets__dark-bg,
  .page-slot-games-jackpot-secrets__faq-section,
  .page-slot-games-jackpot-secrets__cta-bottom {
    padding: 40px 0;
  }

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

  .page-slot-games-jackpot-secrets__section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 25px;
  }

  .page-slot-games-jackpot-secrets__sub-title {
    font-size: clamp(1.1rem, 4vw, 1.5rem);
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-slot-games-jackpot-secrets__introduction p,
  .page-slot-games-jackpot-secrets__section p {
    font-size: 0.95rem;
  }

  .page-slot-games-jackpot-secrets__introduction li,
  .page-slot-games-jackpot-secrets__section li {
    font-size: 0.9rem;
    margin-left: 20px;
  }

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

  .page-slot-games-jackpot-secrets__faq-question {
    font-size: 1rem;
    padding: 15px 15px;
  }
  .page-slot-games-jackpot-secrets__faq-answer {
    font-size: 0.95rem;
    padding: 15px 15px;
  }
  .page-slot-games-jackpot-secrets__faq-toggle {
    font-size: 1.5rem;
  }
}

/* Ensure all images are responsive and do not have filters */
.page-slot-games-jackpot-secrets img {
  max-width: 100%;
  height: auto;
  display: block;
  filter: none; /* Absolutely no filters */
}

@media (max-width: 768px) {
  .page-slot-games-jackpot-secrets img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-slot-games-jackpot-secrets__section,
  .page-slot-games-jackpot-secrets__card,
  .page-slot-games-jackpot-secrets__container,
  .page-slot-games-jackpot-secrets__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Ensure no overflow */
  }
  /* Padding for main content sections on mobile */
  .page-slot-games-jackpot-secrets__introduction,
  .page-slot-games-jackpot-secrets__dark-bg,
  .page-slot-games-jackpot-secrets__light-bg,
  .page-slot-games-jackpot-secrets__faq-section,
  .page-slot-games-jackpot-secrets__cta-bottom {
    padding-left: 15px;
    padding-right: 15px;
  }
}