.page-slot-games-jackpot-analysis {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
}

.page-slot-games-jackpot-analysis__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  min-height: 600px;
  overflow: hidden;
  color: #FFFFFF;
  background-color: #26A9E0; /* Use brand color for hero background */
}

.page-slot-games-jackpot-analysis__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.2;
}

.page-slot-games-jackpot-analysis__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text contrast */
}

.page-slot-games-jackpot-analysis__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-slot-games-jackpot-analysis__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slot-games-jackpot-analysis__intro-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #F0F0F0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games-jackpot-analysis__btn-primary,
.page-slot-games-jackpot-analysis__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  margin: 10px;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-slot-games-jackpot-analysis__btn-primary {
  background-color: #EA7C07; /* Login color for primary CTA */
  color: #FFFFFF;
  border: 2px solid #EA7C07;
}

.page-slot-games-jackpot-analysis__btn-primary:hover {
  background-color: #FF8C00;
  transform: translateY(-2px);
}

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

.page-slot-games-jackpot-analysis__btn-secondary:hover {
  background-color: #F0F8FF;
  transform: translateY(-2px);
}

.page-slot-games-jackpot-analysis__section {
  padding: 60px 20px;
}

.page-slot-games-jackpot-analysis__content-area {
  max-width: 1200px;
  margin: 0 auto;
}

.page-slot-games-jackpot-analysis__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-slot-games-jackpot-analysis__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-slot-games-jackpot-analysis__light-bg {
  background-color: #FFFFFF;
  color: #333333;
}

.page-slot-games-jackpot-analysis__light-bg .page-slot-games-jackpot-analysis__section-title,
.page-slot-games-jackpot-analysis__light-bg .page-slot-games-jackpot-analysis__card-title,
.page-slot-games-jackpot-analysis__light-bg .page-slot-games-jackpot-analysis__list-item strong {
  color: #26A9E0;
}

.page-slot-games-jackpot-analysis__dark-bg {
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-slot-games-jackpot-analysis__dark-bg .page-slot-games-jackpot-analysis__section-title,
.page-slot-games-jackpot-analysis__dark-bg .page-slot-games-jackpot-analysis__list-item strong {
  color: #FFFFFF;
}

.page-slot-games-jackpot-analysis__content-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  min-width: 200px;
  min-height: 200px;
}

.page-slot-games-jackpot-analysis__list,
.page-slot-games-jackpot-analysis__ordered-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-slot-games-jackpot-analysis__ordered-list {
  list-style-type: decimal;
}

.page-slot-games-jackpot-analysis__list-item {
  margin-bottom: 10px;
}

.page-slot-games-jackpot-analysis__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-slot-games-jackpot-analysis__card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease;
  color: #333333;
}

.page-slot-games-jackpot-analysis__card:hover {
  transform: translateY(-5px);
}

.page-slot-games-jackpot-analysis__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-slot-games-jackpot-analysis__card-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-slot-games-jackpot-analysis__card-text {
  font-size: 1em;
  color: #555555;
}

.page-slot-games-jackpot-analysis__paragraph--cta {
  text-align: center;
  font-style: italic;
  margin-top: 40px;
}

.page-slot-games-jackpot-analysis__cta-buttons {
  text-align: center;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-slot-games-jackpot-analysis__faq-container {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.page-slot-games-jackpot-analysis__faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 10px;
}

.page-slot-games-jackpot-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFFFFF;
  transition: color 0.3s ease;
}

.page-slot-games-jackpot-analysis__faq-question:hover {
  color: #F0F0F0;
}

.page-slot-games-jackpot-analysis__faq-question h3 {
  margin: 0;
  color: inherit;
  font-size: 1em; /* Adjust to fit parent font size */
}

.page-slot-games-jackpot-analysis__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-slot-games-jackpot-analysis__faq-item.active .page-slot-games-jackpot-analysis__faq-toggle {
  transform: rotate(45deg); /* Change + to X or - */
}

.page-slot-games-jackpot-analysis__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 1.0em;
  color: #E0E0E0;
}

.page-slot-games-jackpot-analysis__faq-item.active .page-slot-games-jackpot-analysis__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show all content */
  padding: 15px;
}

.page-slot-games-jackpot-analysis__faq-answer p {
  margin: 0 0 10px 0;
  color: inherit;
}

.page-slot-games-jackpot-analysis__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  margin: 30px 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-slot-games-jackpot-analysis__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  cursor: pointer;
  min-width: 200px; /* Ensure video is not too small */
  min-height: 112px; /* Maintain 16:9 ratio for min size */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-slot-games-jackpot-analysis__main-title {
    font-size: 2.8em;
  }
  .page-slot-games-jackpot-analysis__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-slot-games-jackpot-analysis {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-slot-games-jackpot-analysis__hero-section {
    padding: 60px 15px;
    min-height: 400px;
  }
  .page-slot-games-jackpot-analysis__main-title {
    font-size: 2em;
  }
  .page-slot-games-jackpot-analysis__intro-text {
    font-size: 1em;
  }
  .page-slot-games-jackpot-analysis__btn-primary,
  .page-slot-games-jackpot-analysis__btn-secondary {
    width: 100% !important;
    margin: 10px 0;
    padding: 12px 20px;
  }
  .page-slot-games-jackpot-analysis__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  .page-slot-games-jackpot-analysis__section {
    padding: 40px 15px;
  }
  .page-slot-games-jackpot-analysis__section-title {
    font-size: 1.8em;
  }
  .page-slot-games-jackpot-analysis__paragraph {
    font-size: 1em;
  }
  .page-slot-games-jackpot-analysis__list,
  .page-slot-games-jackpot-analysis__ordered-list {
    margin-left: 15px;
    font-size: 1em;
  }
  .page-slot-games-jackpot-analysis__card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-slot-games-jackpot-analysis__card {
    padding: 20px;
  }
  .page-slot-games-jackpot-analysis__card-image {
    height: 180px;
  }
  .page-slot-games-jackpot-analysis__card-title {
    font-size: 1.3em;
  }
  .page-slot-games-jackpot-analysis__faq-question {
    font-size: 1.1em;
    padding: 15px 0;
  }
  .page-slot-games-jackpot-analysis__faq-answer {
    padding: 10px 15px;
    font-size: 0.95em;
  }
  .page-slot-games-jackpot-analysis img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-slot-games-jackpot-analysis__section,
  .page-slot-games-jackpot-analysis__card,
  .page-slot-games-jackpot-analysis__container,
  .page-slot-games-jackpot-analysis__video-section,
  .page-slot-games-jackpot-analysis__video-container,
  .page-slot-games-jackpot-analysis__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-slot-games-jackpot-analysis__hero-section {
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-slot-games-jackpot-analysis video,
  .page-slot-games-jackpot-analysis__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-slot-games-jackpot-analysis__video-wrapper {
    padding-bottom: 56.25% !important; /* Ensure aspect ratio is maintained */
    height: 0 !important;
    overflow: hidden !important;
  }
}