.page-slot-jackpots {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

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

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

.page-slot-jackpots__dark-bg {
  background-color: #017439; /* Primary brand color for dark sections */
  color: #ffffff;
}

.page-slot-jackpots__section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #ffffff; /* Ensure titles are light on dark backgrounds */
}

.page-slot-jackpots__text-block {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #f0f0f0; /* Slightly off-white for readability */
}

.page-slot-jackpots__text-block strong {
  color: #ffffff;
}

.page-slot-jackpots__link {
  color: #FFFF00; /* Yellow for links on dark background */
  text-decoration: underline;
}

.page-slot-jackpots__link:hover {
  color: #f0f0f0;
}

/* Hero Section */
.page-slot-jackpots__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding-top: var(--header-offset, 120px); /* Account for fixed header */
  padding-bottom: 60px;
  overflow: hidden;
  text-align: center;
}

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

.page-slot-jackpots__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability, no color change */
}

.page-slot-jackpots__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text */
  border-radius: 10px;
}

.page-slot-jackpots__hero-title {
  font-size: 52px;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-slot-jackpots__hero-description {
  font-size: 22px;
  color: #f0f0f0;
  margin-bottom: 40px;
  line-height: 1.5;
}

.page-slot-jackpots__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.page-slot-jackpots__btn-primary,
.page-slot-jackpots__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

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

.page-slot-jackpots__btn-primary:hover {
  background-color: #005f2e;
  border-color: #005f2e;
}

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

.page-slot-jackpots__btn-secondary:hover {
  background-color: #FFFFFF;
  color: #017439;
}

.page-slot-jackpots__btn-register {
  background-color: #C30808;
  border-color: #C30808;
  color: #FFFF00;
}

.page-slot-jackpots__btn-register:hover {
  background-color: #a30606;
  border-color: #a30606;
}

.page-slot-jackpots__btn-login {
  background-color: #C30808;
  border-color: #C30808;
  color: #FFFF00;
}

.page-slot-jackpots__btn-login:hover {
  background-color: #a30606;
  border-color: #a30606;
}

.page-slot-jackpots__btn-large {
  padding: 18px 35px;
  font-size: 20px;
}

.page-slot-jackpots__text-center {
  text-align: center;
}

/* Features 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-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-slot-jackpots__feature-icon {
  width: 100%;
  max-width: 400px; /* Ensure images are not too wide */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

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

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

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

.page-slot-jackpots__game-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-slot-jackpots__game-image {
  width: 100%;
  max-width: 300px; /* Card images */
  height: auto;
  margin-bottom: 15px;
  border-radius: 8px;
  object-fit: cover;
}

.page-slot-jackpots__game-title {
  font-size: 22px;
  font-weight: bold;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.page-slot-jackpots__game-description {
  font-size: 16px;
  line-height: 1.6;
  color: #cccccc;
}

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

.page-slot-jackpots__guide-list li {
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  font-size: 18px;
  line-height: 1.7;
  color: #f0f0f0;
}

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

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

.page-slot-jackpots__strategy-list li {
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  padding: 15px;
  border-left: 5px solid #017439;
  border-radius: 5px;
  font-size: 17px;
  line-height: 1.6;
  color: #cccccc;
}

.page-slot-jackpots__strategy-list li strong {
  color: #FFFFFF;
}

/* Promotions Section */
.page-slot-jackpots__promo-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  text-align: left;
}

.page-slot-jackpots__promo-list li {
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  font-size: 18px;
  line-height: 1.7;
  color: #f0f0f0;
  border-left: 5px solid #FFFF00; /* Highlight with yellow */
}

.page-slot-jackpots__promo-list li strong {
  color: #FFFFFF;
}

/* App Section */
.page-slot-jackpots__app-content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  text-align: left;
}

.page-slot-jackpots__app-text-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.page-slot-jackpots__app-image-wrapper {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  text-align: center;
}

.page-slot-jackpots__app-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-slot-jackpots__app-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-slot-jackpots__btn-download {
  background-color: #C30808;
  border-color: #C30808;
  color: #FFFF00;
}

.page-slot-jackpots__btn-download:hover {
  background-color: #a30606;
  border-color: #a30606;
}

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

.page-slot-jackpots__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.page-slot-jackpots__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 20px;
  font-weight: bold;
  color: #FFFFFF;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  list-style: none; /* For details/summary */
}

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

.page-slot-jackpots__faq-qtext {
  flex-grow: 1;
}

.page-slot-jackpots__faq-toggle {
  font-size: 24px;
  line-height: 1;
  width: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-slot-jackpots__faq-item[open] .page-slot-jackpots__faq-toggle {
  transform: rotate(45deg);
}

.page-slot-jackpots__faq-answer {
  padding: 15px 20px 20px;
  font-size: 17px;
  line-height: 1.7;
  color: #cccccc;
}

.page-slot-jackpots__faq-answer p {
  margin-bottom: 10px;
}

/* CTA Section */
.page-slot-jackpots__cta-section {
  background-color: #017439;
  padding: 80px 0;
}

.page-slot-jackpots__cta-section .page-slot-jackpots__section-title {
  color: #FFFFFF;
}

.page-slot-jackpots__cta-section .page-slot-jackpots__text-block {
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-slot-jackpots__hero-title {
    font-size: 44px;
  }
  .page-slot-jackpots__hero-description {
    font-size: 20px;
  }
  .page-slot-jackpots__section-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .page-slot-jackpots__hero-section {
    min-height: 500px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-slot-jackpots__hero-title {
    font-size: 36px;
  }
  .page-slot-jackpots__hero-description {
    font-size: 18px;
  }
  .page-slot-jackpots__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-slot-jackpots__btn-primary, .page-slot-jackpots__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 16px;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-slot-jackpots__btn-large {
    padding: 15px 25px;
    font-size: 18px;
  }
  .page-slot-jackpots__section {
    padding: 40px 0;
  }
  .page-slot-jackpots__section-title {
    font-size: 28px;
  }
  .page-slot-jackpots__text-block {
    font-size: 16px;
  }
  .page-slot-jackpots__feature-card, .page-slot-jackpots__game-card {
    padding: 20px;
  }
  .page-slot-jackpots__app-content-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .page-slot-jackpots__app-text-content {
    max-width: 100%;
  }
  .page-slot-jackpots__app-image-wrapper {
    max-width: 100%;
  }
  .page-slot-jackpots__app-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }
  .page-slot-jackpots__app-buttons a {
    width: 100%;
    max-width: 100%;
  }
  .page-slot-jackpots__feature-icon, .page-slot-jackpots__game-image, .page-slot-jackpots__app-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-slot-jackpots__section,
  .page-slot-jackpots__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }
  .page-slot-jackpots__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-slot-jackpots__hero-title {
    font-size: 30px;
  }
  .page-slot-jackpots__hero-description {
    font-size: 16px;
  }
  .page-slot-jackpots__section-title {
    font-size: 24px;
  }
  .page-slot-jackpots__faq-question {
    font-size: 18px;
    padding: 15px;
  }
  .page-slot-jackpots__faq-answer {
    font-size: 16px;
  }
}