.page-slot-games-jackpot-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background is handled by shared.css (#111) */
}

.page-slot-games-jackpot-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  min-height: 600px;
  overflow: hidden;
  color: #ffffff;
}

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

.page-slot-games-jackpot-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-slot-games-jackpot-guide__hero-content {
  max-width: 900px;
  z-index: 1;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Slightly darker overlay for text */
  border-radius: 10px;
}

.page-slot-games-jackpot-guide__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #E0B14A; /* Auxiliary color for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

.page-slot-games-jackpot-guide__btn-primary {
  display: inline-block;
  background-color: #E0B14A;
  color: #0A2463;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-slot-games-jackpot-guide__btn-primary:hover {
  background-color: #f5c768;
}

.page-slot-games-jackpot-guide__btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: #E0B14A;
  padding: 15px 30px;
  border-radius: 5px;
  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;
  border: 2px solid #E0B14A;
  cursor: pointer;
  margin-left: 15px;
}

.page-slot-games-jackpot-guide__btn-secondary:hover {
  background-color: #E0B14A;
  color: #0A2463;
}

.page-slot-games-jackpot-guide__video-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #0A2463; /* Main brand color for section background */
  color: #ffffff;
}

.page-slot-games-jackpot-guide__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 1000px;
  margin: 40px auto;
  background-color: #000;
}

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

.page-slot-games-jackpot-guide__video-link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.page-slot-games-jackpot-guide__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #1a1a1a; /* Slightly lighter dark background for content blocks */
  color: #ffffff;
}

.page-slot-games-jackpot-guide__section-title {
  font-size: 2.5em;
  margin-bottom: 25px;
  color: #E0B14A; /* Auxiliary color for section titles */
  text-align: center;
}

.page-slot-games-jackpot-guide__section-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games-jackpot-guide__text-block {
  margin-bottom: 20px;
  font-size: 1.05em;
  line-height: 1.8;
}

.page-slot-games-jackpot-guide__text-link {
  color: #E0B14A;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-slot-games-jackpot-guide__text-link:hover {
  color: #f5c768;
}

.page-slot-games-jackpot-guide__sub-section-title {
  font-size: 1.8em;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-slot-games-jackpot-guide__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  font-size: 1.05em;
}

.page-slot-games-jackpot-guide__list li {
  margin-bottom: 10px;
}

.page-slot-games-jackpot-guide__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-slot-games-jackpot-guide__card {
  background-color: #0A2463;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #ffffff;
}

.page-slot-games-jackpot-guide__card-image {
  max-width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-slot-games-jackpot-guide__card-title {
  font-size: 1.5em;
  color: #E0B14A;
  margin-bottom: 15px;
}

.page-slot-games-jackpot-guide__card-description {
  font-size: 0.95em;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-slot-games-jackpot-guide__faq-section {
  padding: 80px 20px;
  background-color: #0A2463;
  color: #ffffff;
}

.page-slot-games-jackpot-guide__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-slot-games-jackpot-guide__faq-item {
  background-color: #1a1a1a;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-slot-games-jackpot-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #0A2463;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
}

.page-slot-games-jackpot-guide__faq-question:hover {
  background-color: #1a3c7c;
}

.page-slot-games-jackpot-guide__faq-title {
  font-size: 1.2em;
  color: #ffffff;
  margin: 0;
}

.page-slot-games-jackpot-guide__faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: #E0B14A;
  transition: transform 0.3s ease;
  line-height: 1;
}

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

.page-slot-games-jackpot-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  background-color: #1a1a1a;
  color: #f0f0f0;
}

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

.page-slot-games-jackpot-guide__cta-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #111;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-slot-games-jackpot-guide__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.4);
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-slot-games-jackpot-guide__hero-title {
    font-size: 2.8em;
  }
  .page-slot-games-jackpot-guide__hero-description {
    font-size: 1.2em;
  }
  .page-slot-games-jackpot-guide__section-title {
    font-size: 2em;
  }
  .page-slot-games-jackpot-guide__card-image {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .page-slot-games-jackpot-guide__hero-section {
    padding: 40px 15px;
    padding-top: var(--header-offset, 120px) !important; /* Mobile fixed header offset */
  }
  .page-slot-games-jackpot-guide__hero-title {
    font-size: 2.2em;
  }
  .page-slot-games-jackpot-guide__hero-description {
    font-size: 1em;
  }
  .page-slot-games-jackpot-guide__btn-primary,
  .page-slot-games-jackpot-guide__btn-secondary {
    padding: 12px 20px;
    font-size: 1em;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-left: 0;
  }
  .page-slot-games-jackpot-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-slot-games-jackpot-guide__video-section,
  .page-slot-games-jackpot-guide__content-area,
  .page-slot-games-jackpot-guide__faq-section,
  .page-slot-games-jackpot-guide__cta-section {
    padding: 40px 15px;
  }

  .page-slot-games-jackpot-guide__container {
    padding-left: 0;
    padding-right: 0;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-slot-games-jackpot-guide img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-slot-games-jackpot-guide__video,
  .page-slot-games-jackpot-guide__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-slot-games-jackpot-guide__game-cards {
    grid-template-columns: 1fr;
  }

  .page-slot-games-jackpot-guide__card-image {
    height: auto;
  }

  .page-slot-games-jackpot-guide__faq-question {
    padding: 15px 20px;
  }

  .page-slot-games-jackpot-guide__faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-slot-games-jackpot-guide__hero-title {
    font-size: 1.8em;
  }
  .page-slot-games-jackpot-guide__hero-description {
    font-size: 0.9em;
  }
  .page-slot-games-jackpot-guide__section-title {
    font-size: 1.8em;
  }
  .page-slot-games-jackpot-guide__sub-section-title {
    font-size: 1.5em;
  }
  .page-slot-games-jackpot-guide__faq-title {
    font-size: 1.1em;
  }
}