.page-blog-understanding-progressive-jackpots {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-main, #1F2D3D); /* Fallback to a dark color if var not set */
  background-color: var(--background, #F4F7FB);
}

.page-blog-understanding-progressive-jackpots__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, header offset handled by body in shared.css */
  background: linear-gradient(180deg, var(--primary-color, #2F6BFF) 0%, var(--auxiliary-color, #6FA3FF) 100%);
  color: #ffffff;
  overflow: hidden;
}

.page-blog-understanding-progressive-jackpots__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%; /* Ensure full width for flex item */
}

.page-blog-understanding-progressive-jackpots__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-understanding-progressive-jackpots__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}

.page-blog-understanding-progressive-jackpots__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 20px;
}

.page-blog-understanding-progressive-jackpots__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.page-blog-understanding-progressive-jackpots__description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 30px;
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-understanding-progressive-jackpots__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-blog-understanding-progressive-jackpots__cta-button:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-understanding-progressive-jackpots__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background: var(--card-bg, #FFFFFF);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-top: -80px; /* Overlap with hero section for visual appeal */
  position: relative;
  z-index: 1;
}

.page-blog-understanding-progressive-jackpots__article {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-understanding-progressive-jackpots__section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-main, #1F2D3D);
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 2px solid var(--border-color, #D6E2FF);
  padding-bottom: 10px;
}

.page-blog-understanding-progressive-jackpots__sub-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--primary-color, #2F6BFF);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-understanding-progressive-jackpots p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: var(--text-main, #1F2D3D);
}

.page-blog-understanding-progressive-jackpots a {
  color: var(--primary-color, #2F6BFF);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-blog-understanding-progressive-jackpots a:hover {
  color: var(--auxiliary-color, #6FA3FF);
  text-decoration: underline;
}

.page-blog-understanding-progressive-jackpots__image-inline {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.page-blog-understanding-progressive-jackpots__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--text-main, #1F2D3D);
}

.page-blog-understanding-progressive-jackpots__list li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.page-blog-understanding-progressive-jackpots__cta-button--inline {
  margin-top: 30px;
  margin-bottom: 30px;
}

.page-blog-understanding-progressive-jackpots__faq-container {
  margin-top: 40px;
}

details.page-blog-understanding-progressive-jackpots__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid var(--border-color, #D6E2FF);
  overflow: hidden;
  background: var(--card-bg, #FFFFFF);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

details.page-blog-understanding-progressive-jackpots__faq-item summary.page-blog-understanding-progressive-jackpots__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: var(--text-main, #1F2D3D);
}

details.page-blog-understanding-progressive-jackpots__faq-item summary.page-blog-understanding-progressive-jackpots__faq-question::-webkit-details-marker {
  display: none;
}

details.page-blog-understanding-progressive-jackpots__faq-item summary.page-blog-understanding-progressive-jackpots__faq-question:hover {
  background: #f5f5f5;
}

.page-blog-understanding-progressive-jackpots__faq-qtext {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
}

.page-blog-understanding-progressive-jackpots__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color, #2F6BFF);
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-blog-understanding-progressive-jackpots__faq-item .page-blog-understanding-progressive-jackpots__faq-answer {
  padding: 0 20px 20px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  color: var(--text-main, #1F2D3D);
}

.page-blog-understanding-progressive-jackpots__cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
  margin-bottom: 30px;
}

.page-blog-understanding-progressive-jackpots__cta-button--large {
  padding: 18px 50px;
  font-size: 20px;
}

.page-blog-understanding-progressive-jackpots__cta-button--secondary {
  background: var(--card-bg, #FFFFFF);
  color: var(--primary-color, #2F6BFF);
  border: 2px solid var(--primary-color, #2F6BFF);
  box-shadow: none;
}

.page-blog-understanding-progressive-jackpots__cta-button--secondary:hover {
  background: var(--primary-color, #2F6BFF);
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-blog-understanding-progressive-jackpots__content-area {
    padding: 40px 15px;
  }
  .page-blog-understanding-progressive-jackpots__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-blog-understanding-progressive-jackpots__section-title {
    font-size: 1.8rem;
  }
  .page-blog-understanding-progressive-jackpots__sub-title {
    font-size: 1.4rem;
  }
  .page-blog-understanding-progressive-jackpots p,
  .page-blog-understanding-progressive-jackpots__list li,
  .page-blog-understanding-progressive-jackpots__faq-qtext {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .page-blog-understanding-progressive-jackpots__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-understanding-progressive-jackpots__hero-image img {
    border-radius: 8px;
  }
  .page-blog-understanding-progressive-jackpots__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-blog-understanding-progressive-jackpots__cta-group {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  .page-blog-understanding-progressive-jackpots__cta-button--large {
    font-size: 18px;
    padding: 15px 30px;
  }
  .page-blog-understanding-progressive-jackpots__content-area {
    padding: 30px 15px;
    margin-top: -50px;
  }
  .page-blog-understanding-progressive-jackpots__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .page-blog-understanding-progressive-jackpots__section-title {
    font-size: 1.6rem;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .page-blog-understanding-progressive-jackpots__sub-title {
    font-size: 1.2rem;
  }
  .page-blog-understanding-progressive-jackpots img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-blog-understanding-progressive-jackpots__section,
  .page-blog-understanding-progressive-jackpots__card,
  .page-blog-understanding-progressive-jackpots__container,
  .page-blog-understanding-progressive-jackpots__cta-buttons,
  .page-blog-understanding-progressive-jackpots__button-group,
  .page-blog-understanding-progressive-jackpots__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  details.page-blog-understanding-progressive-jackpots__faq-item summary.page-blog-understanding-progressive-jackpots__faq-question { padding: 15px; }
  .page-blog-understanding-progressive-jackpots__faq-qtext { font-size: 15px; }
  details.page-blog-understanding-progressive-jackpots__faq-item .page-blog-understanding-progressive-jackpots__faq-answer { padding: 0 15px 15px; }
}

@media (max-width: 480px) {
  .page-blog-understanding-progressive-jackpots__main-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }
  .page-blog-understanding-progressive-jackpots__description {
    font-size: 0.95rem;
  }
  .page-blog-understanding-progressive-jackpots__section-title {
    font-size: 1.4rem;
  }
  .page-blog-understanding-progressive-jackpots__sub-title {
    font-size: 1.1rem;
  }
  .page-blog-understanding-progressive-jackpots p,
  .page-blog-understanding-progressive-jackpots__list li,
  .page-blog-understanding-progressive-jackpots__faq-qtext {
    font-size: 0.9rem;
  }
}