.page-slot-games-jackpots {
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-slot-games-jackpots__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 60px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: #08160F; /* Ensure hero background matches body */
}

.page-slot-games-jackpots__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for aesthetic */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.page-slot-games-jackpots__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-width: 1920px; /* Max width for large screens */
}

.page-slot-games-jackpots__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-slot-games-jackpots__main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-slot-games-jackpots__description {
  font-size: 1.2rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 30px;
}

.page-slot-games-jackpots__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-slot-games-jackpots__btn-primary,
.page-slot-games-jackpots__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  text-align: center;
  cursor: pointer;
}

.page-slot-games-jackpots__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-slot-games-jackpots__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-slot-games-jackpots__btn-secondary {
  background-color: transparent;
  color: #F2FFF6; /* Text Main */
  border: 2px solid #2AD16F; /* Button primary color for border */
}

.page-slot-games-jackpots__btn-secondary:hover {
  background-color: rgba(42, 209, 111, 0.1);
  color: #2AD16F;
}

.page-slot-games-jackpots__section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-slot-games-jackpots__text-block {
  font-size: 1.1rem;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games-jackpots__text-block .highlight {
  color: #57E38D; /* Glow */
  font-weight: bold;
}

.page-slot-games-jackpots__about-section,
.page-slot-games-jackpots__types-section,
.page-slot-games-jackpots__guide-section,
.page-slot-games-jackpots__featured-games-section,
.page-slot-games-jackpots__security-section,
.page-slot-games-jackpots__promotions-section,
.page-slot-games-jackpots__faq-section,
.page-slot-games-jackpots__cta-final-section {
  padding: 60px 0;
  background-color: #08160F; /* Background */
}

.page-slot-games-jackpots__features-grid,
.page-slot-games-jackpots__type-grid,
.page-slot-games-jackpots__guide-grid,
.page-slot-games-jackpots__games-grid,
.page-slot-games-jackpots__security-grid,
.page-slot-games-jackpots__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games-jackpots__feature-card,
.page-slot-games-jackpots__type-card,
.page-slot-games-jackpots__guide-item,
.page-slot-games-jackpots__game-card,
.page-slot-games-jackpots__security-item,
.page-slot-games-jackpots__promo-card {
  background-color: #11271B; /* Card B G */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-slot-games-jackpots__feature-title,
.page-slot-games-jackpots__type-title,
.page-slot-games-jackpots__guide-title,
.page-slot-games-jackpots__game-title,
.page-slot-games-jackpots__security-title,
.page-slot-games-jackpots__promo-title {
  font-size: 1.5rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

.page-slot-games-jackpots__feature-card p,
.page-slot-games-jackpots__type-card p,
.page-slot-games-jackpots__guide-item p,
.page-slot-games-jackpots__game-card p,
.page-slot-games-jackpots__security-item p,
.page-slot-games-jackpots__promo-card p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
  line-height: 1.5;
}

.page-slot-games-jackpots__type-image,
.page-slot-games-jackpots__game-image,
.page-slot-games-jackpots__security-icon,
.page-slot-games-jackpots__promo-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-slot-games-jackpots__guide-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  margin-top: 60px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  object-fit: cover;
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
}

.page-slot-games-jackpots__game-link {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.page-slot-games-jackpots__game-link:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-slot-games-jackpots__cta-center {
  text-align: center;
  margin-top: 40px;
}

.page-slot-games-jackpots__faq-list {
  margin-top: 40px;
}

.page-slot-games-jackpots__faq-item {
  background-color: #11271B; /* Card B G */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-slot-games-jackpots__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #11271B; /* Card B G */
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-slot-games-jackpots__faq-question::-webkit-details-marker {
  display: none;
}

.page-slot-games-jackpots__faq-question:hover {
  background-color: #0A4B2C; /* Deep Green */
}

.page-slot-games-jackpots__faq-qtext {
  flex-grow: 1;
  color: #F2FFF6;
}

.page-slot-games-jackpots__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Glow */
}

.page-slot-games-jackpots__faq-answer {
  padding: 0 20px 20px;
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.5;
}

.page-slot-games-jackpots__faq-answer p {
  margin-bottom: 0;
  color: #A7D9B8;
}

/* Ensure links in text blocks are visible */
.page-slot-games-jackpots__text-block a,
.page-slot-games-jackpots__faq-answer a {
  color: #57E38D; /* Glow */
  text-decoration: underline;
}

.page-slot-games-jackpots__text-block a:hover,
.page-slot-games-jackpots__faq-answer a:hover {
  color: #F2C14E; /* Gold */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-slot-games-jackpots__hero-content {
    padding: 0 15px;
  }

  .page-slot-games-jackpots__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .page-slot-games-jackpots__section-title {
    font-size: clamp(1.8rem, 4.5vw, 2.5rem);
  }
}

@media (max-width: 768px) {
  .page-slot-games-jackpots__hero-section {
    padding-bottom: 40px;
    padding-top: 10px !important;
  }

  .page-slot-games-jackpots__hero-image-wrapper {
    max-height: 400px;
  }

  .page-slot-games-jackpots__hero-image {
    min-width: 200px;
    min-height: 200px;
  }

  .page-slot-games-jackpots__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-slot-games-jackpots__description {
    font-size: 1rem;
  }

  .page-slot-games-jackpots__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }

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

  .page-slot-games-jackpots__section-title {
    font-size: clamp(1.5rem, 5.5vw, 2.2rem);
    margin-bottom: 30px;
    padding-top: 30px;
  }

  .page-slot-games-jackpots__text-block {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .page-slot-games-jackpots__features-grid,
  .page-slot-games-jackpots__type-grid,
  .page-slot-games-jackpots__guide-grid,
  .page-slot-games-jackpots__games-grid,
  .page-slot-games-jackpots__security-grid,
  .page-slot-games-jackpots__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
  }

  .page-slot-games-jackpots__feature-card,
  .page-slot-games-jackpots__type-card,
  .page-slot-games-jackpots__guide-item,
  .page-slot-games-jackpots__game-card,
  .page-slot-games-jackpots__security-item,
  .page-slot-games-jackpots__promo-card {
    padding: 20px;
  }

  .page-slot-games-jackpots__feature-title,
  .page-slot-games-jackpots__type-title,
  .page-slot-games-jackpots__guide-title,
  .page-slot-games-jackpots__game-title,
  .page-slot-games-jackpots__security-title,
  .page-slot-games-jackpots__promo-title {
    font-size: 1.3rem;
  }

  .page-slot-games-jackpots__feature-card p,
  .page-slot-games-jackpots__type-card p,
  .page-slot-games-jackpots__guide-item p,
  .page-slot-games-jackpots__game-card p,
  .page-slot-games-jackpots__security-item p,
  .page-slot-games-jackpots__promo-card p {
    font-size: 0.9rem;
  }

  .page-slot-games-jackpots__guide-image {
    margin-top: 40px;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-slot-games-jackpots__type-image,
  .page-slot-games-jackpots__game-image,
  .page-slot-games-jackpots__security-icon,
  .page-slot-games-jackpots__promo-image {
    min-width: 200px !important;
    min-height: 200px !important;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-slot-games-jackpots__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

  .page-slot-games-jackpots__about-section,
  .page-slot-games-jackpots__types-section,
  .page-slot-games-jackpots__guide-section,
  .page-slot-games-jackpots__featured-games-section,
  .page-slot-games-jackpots__security-section,
  .page-slot-games-jackpots__promotions-section,
  .page-slot-games-jackpots__faq-section,
  .page-slot-games-jackpots__cta-final-section {
    padding: 40px 0;
  }

  .page-slot-games-jackpots__faq-question {
    font-size: 1.05rem;
    padding: 15px;
  }

  .page-slot-games-jackpots__faq-answer {
    font-size: 0.95rem;
    padding: 0 15px 15px;
  }
}