.page-blog-understanding-jackpot-games {
  background-color: #08160F;
  color: #F2FFF6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-understanding-jackpot-games__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body handles header offset, small top padding for visual */
  overflow: hidden;
  background-color: #08160F;
}

.page-blog-understanding-jackpot-games__image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-understanding-jackpot-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7);
}

.page-blog-understanding-jackpot-games__hero-content {
  max-width: 960px;
  width: 100%;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  z-index: 1;
  margin-top: -100px; /* Adjust to slightly overlap with image for visual flow */
}

.page-blog-understanding-jackpot-games__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em);
  color: #F2C14E; /* Gold color for main title */
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-blog-understanding-jackpot-games__intro-text {
  font-size: 1.2em;
  color: #F2FFF6;
  margin-bottom: 30px;
}

.page-blog-understanding-jackpot-games__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-understanding-jackpot-games__btn-primary,
.page-blog-understanding-jackpot-games__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  text-align: center;
}

.page-blog-understanding-jackpot-games__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-understanding-jackpot-games__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-blog-understanding-jackpot-games__btn-secondary {
  background: transparent;
  color: #2AD16F;
  border: 2px solid #2AD16F;
  box-shadow: 0 4px 10px rgba(42, 209, 111, 0.2);
}

.page-blog-understanding-jackpot-games__btn-secondary:hover {
  background: rgba(42, 209, 111, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(42, 209, 111, 0.3);
}

.page-blog-understanding-jackpot-games__section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
}

.page-blog-understanding-jackpot-games__content-area {
  background-color: #08160F;
  color: #F2FFF6;
}

.page-blog-understanding-jackpot-games__heading {
  font-size: 2.5em;
  color: #F2C14E;
  margin-bottom: 30px;
  text-align: center;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-blog-understanding-jackpot-games__sub-heading {
  font-size: 1.8em;
  color: #22C768;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-blog-understanding-jackpot-games__paragraph {
  font-size: 1.1em;
  color: #A7D9B8;
  margin-bottom: 20px;
  line-height: 1.8;
}

.page-blog-understanding-jackpot-games__image-container {
  width: 100%;
  max-width: 100%;
  margin: 30px 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  box-sizing: border-box;
}

.page-blog-understanding-jackpot-games__content-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px;
}

.page-blog-understanding-jackpot-games__faq-section {
  background-color: #11271B;
  color: #F2FFF6;
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-blog-understanding-jackpot-games__faq-list {
  margin-top: 40px;
}

.page-blog-understanding-jackpot-games__faq-item {
  background-color: #0A4B2C;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.page-blog-understanding-jackpot-games__faq-item details > summary {
  list-style: none;
}

.page-blog-understanding-jackpot-games__faq-item details > summary::-webkit-details-marker {
  display: none;
}

.page-blog-understanding-jackpot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2FFF6;
  cursor: pointer;
  background-color: #0A4B2C;
  border-bottom: 1px solid #1E3A2A;
}

.page-blog-understanding-jackpot-games__faq-question:hover {
  background-color: #11A84E;
}

.page-blog-understanding-jackpot-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-blog-understanding-jackpot-games__faq-item[open] .page-blog-understanding-jackpot-games__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-understanding-jackpot-games__faq-answer {
  padding: 20px;
  font-size: 1.1em;
  color: #A7D9B8;
  background-color: #11271B;
}

.page-blog-understanding-jackpot-games__call-to-action {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #08160F;
}

.page-blog-understanding-jackpot-games__call-to-action .page-blog-understanding-jackpot-games__heading {
  color: #F2C14E;
}

.page-blog-understanding-jackpot-games__call-to-action .page-blog-understanding-jackpot-games__paragraph {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-blog-understanding-jackpot-games__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-blog-understanding-jackpot-games__hero-content {
    margin-top: -60px;
    padding: 15px;
  }

  .page-blog-understanding-jackpot-games__main-title {
    font-size: 2em;
  }

  .page-blog-understanding-jackpot-games__intro-text {
    font-size: 1em;
  }

  .page-blog-understanding-jackpot-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-blog-understanding-jackpot-games__btn-primary,
  .page-blog-understanding-jackpot-games__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-blog-understanding-jackpot-games__section {
    padding: 40px 15px;
  }

  .page-blog-understanding-jackpot-games__heading {
    font-size: 2em;
    margin-bottom: 20px;
  }

  .page-blog-understanding-jackpot-games__sub-heading {
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-blog-understanding-jackpot-games__paragraph {
    font-size: 1em;
    margin-bottom: 15px;
  }

  .page-blog-understanding-jackpot-games__image-container {
    margin: 20px 0;
  }

  .page-blog-understanding-jackpot-games__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-understanding-jackpot-games__faq-question {
    font-size: 1em;
    padding: 15px;
  }

  .page-blog-understanding-jackpot-games__faq-answer {
    font-size: 0.95em;
    padding: 15px;
  }
}