.page-slot-games-jackpot-strategy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark #121212, so text should be light */
  background-color: transparent;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-slot-games-jackpot-strategy__hero-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  min-height: 500px;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.page-slot-games-jackpot-strategy__hero-content {
  max-width: 600px;
  text-align: left;
  z-index: 1;
}

.page-slot-games-jackpot-strategy__hero-title {
  font-size: 3.2em;
  color: #FFFF00; /* Register/Login font color for prominence */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-slot-games-jackpot-strategy__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-slot-games-jackpot-strategy__hero-image-wrapper {
  flex-shrink: 0;
  max-width: 600px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.page-slot-games-jackpot-strategy__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

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

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

.page-slot-games-jackpot-strategy__section-title {
  font-size: 2.5em;
  color: #FFFF00; /* Use prominent color for titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-slot-games-jackpot-strategy__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #017439;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-slot-games-jackpot-strategy__sub-title {
  font-size: 1.8em;
  color: #017439;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-slot-games-jackpot-strategy__text-block {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 20px;
}

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

.page-slot-games-jackpot-strategy__grid--2-col {
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
}

.page-slot-games-jackpot-strategy__card {
  background: rgba(255, 255, 255, 0.08); /* Slightly transparent white for dark body bg */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #ffffff;
}

.page-slot-games-jackpot-strategy__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-slot-games-jackpot-strategy__card-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-slot-games-jackpot-strategy__card-title {
  font-size: 1.5em;
  color: #FFFF00; /* Prominent color for card titles */
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-slot-games-jackpot-strategy__card p {
  font-size: 1em;
  color: #f0f0f0;
}

.page-slot-games-jackpot-strategy__list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.page-slot-games-jackpot-strategy__list li {
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid #017439;
  border-radius: 8px;
  color: #f0f0f0;
  font-size: 1.1em;
}

.page-slot-games-jackpot-strategy__cta-buttons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.page-slot-games-jackpot-strategy__btn-primary {
  background-color: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #C30808;
}

.page-slot-games-jackpot-strategy__btn-primary:hover {
  background-color: #e01010;
  border-color: #e01010;
  transform: translateY(-3px);
}

.page-slot-games-jackpot-strategy__btn-secondary {
  background-color: transparent;
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #FFFF00;
}

.page-slot-games-jackpot-strategy__btn-secondary:hover {
  background-color: #FFFF00;
  color: #C30808;
  transform: translateY(-3px);
}

.page-slot-games-jackpot-strategy__dark-bg {
  background-color: #017439; /* Main brand color for dark sections */
  color: #ffffff;
}

.page-slot-games-jackpot-strategy__dark-bg .page-slot-games-jackpot-strategy__section-title {
  color: #FFFF00;
}

.page-slot-games-jackpot-strategy__dark-bg .page-slot-games-jackpot-strategy__sub-title {
  color: #FFFF00;
}

.page-slot-games-jackpot-strategy__dark-bg .page-slot-games-jackpot-strategy__text-block {
  color: #f0f0f0;
}

.page-slot-games-jackpot-strategy__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-slot-games-jackpot-strategy__light-bg .page-slot-games-jackpot-strategy__section-title {
  color: #017439;
}

.page-slot-games-jackpot-strategy__light-bg .page-slot-games-jackpot-strategy__sub-title {
  color: #017439;
}

.page-slot-games-jackpot-strategy__light-bg .page-slot-games-jackpot-strategy__text-block {
  color: #333333;
}

.page-slot-games-jackpot-strategy__light-bg .page-slot-games-jackpot-strategy__card {
  background: #f8f8f8;
  color: #333333;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-slot-games-jackpot-strategy__light-bg .page-slot-games-jackpot-strategy__card-title {
  color: #017439;
}

.page-slot-games-jackpot-strategy__light-bg .page-slot-games-jackpot-strategy__card p {
  color: #555555;
}

.page-slot-games-jackpot-strategy__image-text-layout {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.page-slot-games-jackpot-strategy__image-text-layout .page-slot-games-jackpot-strategy__text-block {
  flex: 1;
}

.page-slot-games-jackpot-strategy__content-image {
  flex-shrink: 0;
  max-width: 500px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  display: block;
}

.page-slot-games-jackpot-strategy__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  margin: 40px auto;
  max-width: 960px;
}

.page-slot-games-jackpot-strategy__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  cursor: pointer;
}

.page-slot-games-jackpot-strategy__video-caption {
  text-align: center;
  margin-top: 20px;
  font-style: italic;
  color: #f0f0f0;
}

.page-slot-games-jackpot-strategy__video-cta {
  display: block;
  margin: 30px auto 0;
  max-width: 300px;
}

.page-slot-games-jackpot-strategy__faq-list {
  margin-top: 30px;
}

.page-slot-games-jackpot-strategy__faq-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

.page-slot-games-jackpot-strategy__faq-question:hover {
  background-color: #028a45;
}

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

.page-slot-games-jackpot-strategy__faq-item.active .page-slot-games-jackpot-strategy__faq-toggle {
  transform: rotate(45deg);
}

.page-slot-games-jackpot-strategy__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
  font-size: 1.1em;
}

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

.page-slot-games-jackpot-strategy__faq-answer p {
  margin: 0;
  color: #f0f0f0;
}

.page-slot-games-jackpot-strategy__cta-section {
  background-color: #1a1a1a;
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
}

.page-slot-games-jackpot-strategy__cta-section .page-slot-games-jackpot-strategy__section-title {
  color: #FFFF00;
}

.page-slot-games-jackpot-strategy__cta-section p {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.2em;
  color: #f0f0f0;
}

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

  .page-slot-games-jackpot-strategy__hero-description {
    font-size: 1.1em;
  }

  .page-slot-games-jackpot-strategy__section-title {
    font-size: 2em;
  }

  .page-slot-games-jackpot-strategy__grid--2-col {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-slot-games-jackpot-strategy {
    font-size: 16px;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-slot-games-jackpot-strategy__hero-section {
    flex-direction: column;
    text-align: center;
    padding: 40px 15px;
    gap: 30px;
  }

  .page-slot-games-jackpot-strategy__hero-content {
    max-width: 100%;
    order: 2;
  }

  .page-slot-games-jackpot-strategy__hero-title {
    font-size: 2.2em;
    text-align: center;
  }

  .page-slot-games-jackpot-strategy__hero-description {
    font-size: 1em;
    text-align: center;
  }

  .page-slot-games-jackpot-strategy__hero-image-wrapper {
    order: 1;
    max-width: 100%;
  }

  .page-slot-games-jackpot-strategy__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }

  .page-slot-games-jackpot-strategy__btn-primary,
  .page-slot-games-jackpot-strategy__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-slot-games-jackpot-strategy__section {
    padding: 40px 15px;
  }

  .page-slot-games-jackpot-strategy__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-slot-games-jackpot-strategy__sub-title {
    font-size: 1.5em;
  }

  .page-slot-games-jackpot-strategy__grid,
  .page-slot-games-jackpot-strategy__grid--2-col {
    grid-template-columns: 1fr;
  }

  .page-slot-games-jackpot-strategy__card {
    padding: 25px;
  }

  .page-slot-games-jackpot-strategy__card-image {
    max-height: 200px;
  }

  .page-slot-games-jackpot-strategy__image-text-layout {
    flex-direction: column;
  }

  .page-slot-games-jackpot-strategy__content-image {
    max-width: 100%;
    width: 100%;
  }

  .page-slot-games-jackpot-strategy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-slot-games-jackpot-strategy__section,
  .page-slot-games-jackpot-strategy__card,
  .page-slot-games-jackpot-strategy__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-slot-games-jackpot-strategy__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-strategy video,
  .page-slot-games-jackpot-strategy__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-slot-games-jackpot-strategy__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-slot-games-jackpot-strategy__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-slot-games-jackpot-strategy__faq-answer {
    padding: 0 20px;
  }

  .page-slot-games-jackpot-strategy__faq-item.active .page-slot-games-jackpot-strategy__faq-answer {
    padding: 10px 20px 15px;
  }

  .page-slot-games-jackpot-strategy__cta-section p {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-slot-games-jackpot-strategy__hero-title {
    font-size: 1.8em;
  }

  .page-slot-games-jackpot-strategy__section-title {
    font-size: 1.5em;
  }
}