.page-blog-mmoo-jackpot-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--background);
}

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

.page-blog-mmoo-jackpot-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: var(--deep-green);
  overflow: hidden;
}

.page-blog-mmoo-jackpot-guide__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

.page-blog-mmoo-jackpot-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Subtle darkening for text contrast */
}

.page-blog-mmoo-jackpot-guide__hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px;
  background: linear-gradient(to top, rgba(8, 22, 15, 0.9) 0%, rgba(8, 22, 15, 0) 100%);
  color: var(--text-main);
  text-align: center;
  z-index: 1;
  box-sizing: border-box;
}

.page-blog-mmoo-jackpot-guide__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  color: var(--gold);
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-mmoo-jackpot-guide__lead-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-main);
}

.page-blog-mmoo-jackpot-guide__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-blog-mmoo-jackpot-guide__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-mmoo-jackpot-guide__btn-secondary {
  background: var(--card-b-g);
  color: var(--text-main);
  border: 2px solid var(--border);
}

.page-blog-mmoo-jackpot-guide__btn-secondary:hover {
  background: var(--deep-green);
  color: var(--text-main);
  transform: translateY(-2px);
}

.page-blog-mmoo-jackpot-guide__section-title {
  font-size: 2.5em;
  color: var(--gold);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-blog-mmoo-jackpot-guide__introduction-section,
.page-blog-mmoo-jackpot-guide__terms-section,
.page-blog-mmoo-jackpot-guide__game-types-section,
.page-blog-mmoo-jackpot-guide__safety-section,
.page-blog-mmoo-jackpot-guide__conclusion-section {
  padding: 60px 0;
  background-color: var(--background);
}

.page-blog-mmoo-jackpot-guide__dark-section {
  background-color: var(--deep-green);
  color: var(--text-main);
  padding: 60px 0;
}

.page-blog-mmoo-jackpot-guide__dark-section .page-blog-mmoo-jackpot-guide__section-title {
  color: var(--gold);
}

.page-blog-mmoo-jackpot-guide__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--text-main);
  text-align: justify;
}

.page-blog-mmoo-jackpot-guide__text-secondary {
  color: var(--text-secondary);
}

.page-blog-mmoo-jackpot-guide__step-by-step-guide {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-mmoo-jackpot-guide__guide-item {
  background-color: var(--card-b-g);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-mmoo-jackpot-guide__guide-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-blog-mmoo-jackpot-guide__guide-title {
  font-size: 1.5em;
  color: var(--gold);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-mmoo-jackpot-guide__guide-text {
  color: var(--text-secondary);
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
  text-align: justify;
}

.page-blog-mmoo-jackpot-guide__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-blog-mmoo-jackpot-guide__term-item {
  background-color: var(--card-b-g);
  border-left: 5px solid var(--glow);
  padding: 20px 30px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-mmoo-jackpot-guide__term-title {
  font-size: 1.4em;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-blog-mmoo-jackpot-guide__term-description {
  color: var(--text-secondary);
  font-size: 1em;
}

.page-blog-mmoo-jackpot-guide__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-mmoo-jackpot-guide__strategy-card {
  background-color: var(--card-b-g);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-mmoo-jackpot-guide__card-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-blog-mmoo-jackpot-guide__card-title {
  font-size: 1.3em;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-blog-mmoo-jackpot-guide__card-text {
  color: var(--text-secondary);
  font-size: 0.95em;
  flex-grow: 1;
  text-align: justify;
}

.page-blog-mmoo-jackpot-guide__game-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-blog-mmoo-jackpot-guide__game-type-card {
  background-color: var(--card-b-g);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-bottom: 3px solid var(--glow);
}

.page-blog-mmoo-jackpot-guide__game-type-title {
  font-size: 1.4em;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-blog-mmoo-jackpot-guide__game-type-description {
  color: var(--text-secondary);
  font-size: 0.95em;
}

.page-blog-mmoo-jackpot-guide__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-blog-mmoo-jackpot-guide__tip-item {
  background-color: var(--card-b-g);
  border-right: 5px solid var(--gold);
  padding: 20px 30px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-mmoo-jackpot-guide__tip-title {
  font-size: 1.4em;
  color: var(--glow);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-blog-mmoo-jackpot-guide__tip-description {
  color: var(--text-secondary);
  font-size: 1em;
}

.page-blog-mmoo-jackpot-guide__safety-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  list-style: none;
  padding: 0;
}

.page-blog-mmoo-jackpot-guide__safety-item {
  background-color: var(--card-b-g);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-mmoo-jackpot-guide__safety-icon {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-blog-mmoo-jackpot-guide__safety-title {
  font-size: 1.5em;
  color: var(--gold);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-mmoo-jackpot-guide__safety-description {
  color: var(--text-secondary);
  font-size: 1em;
  flex-grow: 1;
  text-align: justify;
}

.page-blog-mmoo-jackpot-guide__faq-section {
  padding: 60px 0;
}

.page-blog-mmoo-jackpot-guide__faq-list {
  margin-top: 40px;
}

.page-blog-mmoo-jackpot-guide__faq-item {
  background-color: var(--card-b-g);
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.page-blog-mmoo-jackpot-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  font-size: 1.2em;
  color: var(--gold);
  font-weight: bold;
  cursor: pointer;
  background-color: var(--deep-green);
  border-bottom: 1px solid var(--divider);
}

.page-blog-mmoo-jackpot-guide__faq-question:hover {
  background-color: var(--border);
}

.page-blog-mmoo-jackpot-guide__faq-item[open] .page-blog-mmoo-jackpot-guide__faq-question {
  background-color: var(--border);
}

.page-blog-mmoo-jackpot-guide__faq-qtext {
  flex-grow: 1;
}

.page-blog-mmoo-jackpot-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 20px;
}

.page-blog-mmoo-jackpot-guide__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-mmoo-jackpot-guide__faq-answer {
  padding: 20px 30px;
  color: var(--text-secondary);
  font-size: 1em;
  border-top: 1px solid var(--divider);
}

.page-blog-mmoo-jackpot-guide__conclusion-section .page-blog-mmoo-jackpot-guide__cta-button {
  margin-top: 30px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 350px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-mmoo-jackpot-guide__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }
  .page-blog-mmoo-jackpot-guide__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-blog-mmoo-jackpot-guide__hero-content {
    padding: 20px;
  }
  .page-blog-mmoo-jackpot-guide__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }
  .page-blog-mmoo-jackpot-guide__lead-text {
    font-size: 1em;
  }
  .page-blog-mmoo-jackpot-guide__section-title {
    font-size: 1.8em;
  }
  .page-blog-mmoo-jackpot-guide__introduction-section,
  .page-blog-mmoo-jackpot-guide__dark-section,
  .page-blog-mmoo-jackpot-guide__terms-section,
  .page-blog-mmoo-jackpot-guide__game-types-section,
  .page-blog-mmoo-jackpot-guide__safety-section,
  .page-blog-mmoo-jackpot-guide__conclusion-section {
    padding: 40px 0;
  }

  /* Mobile image and video responsiveness */
  .page-blog-mmoo-jackpot-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-mmoo-jackpot-guide__hero-image-wrapper,
  .page-blog-mmoo-jackpot-guide__guide-item,
  .page-blog-mmoo-jackpot-guide__strategy-card,
  .page-blog-mmoo-jackpot-guide__safety-item,
  .page-blog-mmoo-jackpot-guide__container,
  .page-blog-mmoo-jackpot-guide__step-by-step-guide,
  .page-blog-mmoo-jackpot-guide__strategy-grid,
  .page-blog-mmoo-jackpot-guide__game-type-grid,
  .page-blog-mmoo-jackpot-guide__safety-list,
  .page-blog-mmoo-jackpot-guide__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

  /* Mobile button responsiveness */
  .page-blog-mmoo-jackpot-guide__cta-button,
  .page-blog-mmoo-jackpot-guide__btn-primary,
  .page-blog-mmoo-jackpot-guide__btn-secondary,
  .page-blog-mmoo-jackpot-guide a[class*="button"],
  .page-blog-mmoo-jackpot-guide a[class*="btn"] {
    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-blog-mmoo-jackpot-guide__guide-item .page-blog-mmoo-jackpot-guide__btn-secondary,
  .page-blog-mmoo-jackpot-guide__safety-item .page-blog-mmoo-jackpot-guide__btn-primary {
    width: auto !important; /* Allow buttons in cards to be smaller if content allows */
    max-width: 100% !important;
    padding: 10px 20px;
  }

  .page-blog-mmoo-jackpot-guide__conclusion-section .page-blog-mmoo-jackpot-guide__cta-button {
    max-width: 100% !important;
    width: 100% !important;
  }

  .page-blog-mmoo-jackpot-guide__hero-section {
    padding-top: 10px !important;
  }

  .page-blog-mmoo-jackpot-guide__hero-content {
    position: relative;
    background: var(--deep-green);
    text-shadow: none;
  }
  .page-blog-mmoo-jackpot-guide__hero-image-wrapper {
    height: 250px;
  }
  .page-blog-mmoo-jackpot-guide__hero-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    filter: brightness(0.9); /* Less darkening on mobile */
  }

  .page-blog-mmoo-jackpot-guide__guide-item, .page-blog-mmoo-jackpot-guide__strategy-card, .page-blog-mmoo-jackpot-guide__safety-item {
    padding: 20px;
  }

  .page-blog-mmoo-jackpot-guide__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-blog-mmoo-jackpot-guide__faq-answer {
    padding: 15px 20px;
  }
}