.page-slot-jackpots {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light body background */
  background-color: #FFFFFF; /* Default body background */
}

.page-slot-jackpots__section {
  padding: 60px 0;
  text-align: center;
}

.page-slot-jackpots__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-slot-jackpots__section-title {
  font-size: 36px;
  margin-bottom: 40px;
  color: #017439;
  font-weight: bold;
  text-align: center;
}

.page-slot-jackpots__text-block {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

/* Hero Section */
.page-slot-jackpots__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); /* Fixed header spacing */
  background: linear-gradient(135deg, #017439, #004d26); /* Darker green gradient */
  color: #ffffff;
  overflow: hidden;
}

.page-slot-jackpots__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.page-slot-jackpots__hero-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 30px;
}

.page-slot-jackpots__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-slot-jackpots__hero-title {
  font-size: 48px;
  margin-bottom: 20px;
  color: #FFFF00; /* Register/Login font color for highlight */
  font-weight: bold;
  line-height: 1.2;
}

.page-slot-jackpots__hero-description {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.page-slot-jackpots__cta-button,
.page-slot-jackpots__btn-primary,
.page-slot-jackpots__btn-secondary {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-slot-jackpots__btn-primary:hover {
  background: #e00b0b;
  border-color: #e00b0b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-slot-jackpots__btn-secondary {
  background: #ffffff;
  color: #017439;
  border: 2px solid #017439;
}

.page-slot-jackpots__btn-secondary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-slot-jackpots__full-width-btn {
  width: 100%;
  max-width: 400px;
  margin: 30px auto 0 auto;
  display: block;
}

/* Section Backgrounds */
.page-slot-jackpots__dark-bg {
  background: #017439;
  color: #ffffff;
}

.page-slot-jackpots__dark-bg .page-slot-jackpots__section-title {
  color: #FFFF00; /* Highlight titles on dark background */
}

.page-slot-jackpots__light-bg {
  background: #ffffff;
  color: #333333;
}

/* Game Types Section */
.page-slot-jackpots__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slot-jackpots__game-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  color: #333333;
}

.page-slot-jackpots__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  min-height: 200px; /* Enforce minimum image size */
}

.page-slot-jackpots__card-title {
  font-size: 22px;
  font-weight: bold;
  margin: 20px 20px 10px 20px;
  color: #017439;
}

.page-slot-jackpots__card-description {
  font-size: 16px;
  line-height: 1.7;
  margin: 0 20px;
  flex-grow: 1;
}

/* Guide List */
.page-slot-jackpots__guide-list {
  text-align: left;
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-slot-jackpots__guide-list li {
  background: #f9f9f9;
  border-left: 5px solid #017439;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 17px;
  line-height: 1.7;
}

.page-slot-jackpots__guide-list li strong {
  color: #017439;
  font-size: 18px;
}

/* Strategy List */
.page-slot-jackpots__strategy-list {
  text-align: left;
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-slot-jackpots__strategy-list li {
  background: rgba(255, 255, 255, 0.1);
  border-left: 5px solid #FFFF00;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 17px;
  line-height: 1.7;
  color: #ffffff;
}

.page-slot-jackpots__strategy-list li strong {
  color: #FFFF00;
  font-size: 18px;
}

/* Promotions Section */
.page-slot-jackpots__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slot-jackpots__promo-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  color: #333333;
}

.page-slot-jackpots__promo-card .page-slot-jackpots__card-image {
  height: 250px;
  min-height: 200px; /* Enforce minimum image size */
}

.page-slot-jackpots__promo-card .page-slot-jackpots__card-title {
  color: #017439;
}

.page-slot-jackpots__promo-card .page-slot-jackpots__card-description {
  flex-grow: 1;
  margin: 0 20px 20px 20px;
}

/* Security & Support Section */
.page-slot-jackpots__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slot-jackpots__feature-item {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  color: #333333;
}

.page-slot-jackpots__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce minimum image size */
  min-height: 200px; /* Enforce minimum image size */
}

.page-slot-jackpots__feature-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #017439;
}

.page-slot-jackpots__feature-description {
  font-size: 16px;
  line-height: 1.7;
}

/* FAQ Section */
.page-slot-jackpots__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-slot-jackpots__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-slot-jackpots__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 15px;
  opacity: 0;
  background: #f9f9f9;
  color: #333333;
}

.page-slot-jackpots__faq-item.active .page-slot-jackpots__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  border-radius: 0 0 5px 5px;
}

.page-slot-jackpots__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-slot-jackpots__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-slot-jackpots__faq-question:active {
  background: #eeeeee;
}

.page-slot-jackpots__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #017439;
}

.page-slot-jackpots__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #666;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-slot-jackpots__faq-item.active .page-slot-jackpots__faq-toggle {
  color: #333;
  transform: rotate(45deg); /* Change to X shape */
}

.page-slot-jackpots__faq-answer p {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.7;
}

.page-slot-jackpots__faq-answer .page-slot-jackpots__btn-primary,
.page-slot-jackpots__faq-answer .page-slot-jackpots__btn-secondary {
  margin-top: 10px;
  display: block;
  width: fit-content;
  max-width: 100%;
}

/* Final CTA Section */
.page-slot-jackpots__cta-final {
  padding: 80px 20px;
  background: linear-gradient(135deg, #017439, #004d26);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-slot-jackpots__cta-container {
  position: relative;
  z-index: 1;
}