.page-slot-games-jackpots {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Dark body background, so main text is light */
  background-color: #000; /* Body background from shared.css */
}

.page-slot-games-jackpots__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 180px 20px 60px; /* Adjusted padding-top for fixed header */
  background: linear-gradient(135deg, #8B0000, #FFD700); /* Blend of primary and secondary for visual impact */
}

@media (max-width: 768px) {
  .page-slot-games-jackpots__hero-section {
    padding: 140px 15px 40px; /* Adjusted padding-top for mobile fixed header */
  }
}

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

.page-slot-games-jackpots__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-slot-games-jackpots__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

.page-slot-games-jackpots__hero-title {
  font-size: 48px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-slot-games-jackpots__hero-description a {
  color: #FFD700;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-slot-games-jackpots__hero-description a:hover {
  color: #FFA500;
  text-decoration: underline;
}

.page-slot-games-jackpots__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700;
  color: #000000; /* Ensure high contrast with gold */
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-slot-games-jackpots__cta-button:hover {
  background: #FFA500;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-slot-games-jackpots__section {
  padding: 60px 20px;
}

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

.page-slot-games-jackpots__section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
  color: #FFD700; /* Gold for titles */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-slot-games-jackpots__text-block {
  font-size: 18px;
  line-height: 1.7;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-slot-games-jackpots__text-block p {
  margin-bottom: 15px;
}

.page-slot-games-jackpots__text-block a {
  color: #FFD700;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-slot-games-jackpots__text-block a:hover {
  color: #FFA500;
  text-decoration: underline;
}

.page-slot-games-jackpots__dark-bg {
  background-color: #0d0d0d; /* Slightly lighter dark background for sections */
  color: #ffffff;
}

.page-slot-games-jackpots__light-bg {
  background-color: #f1f3f5;
  color: #333333; /* Dark text on light background */
}

.page-slot-games-jackpots__light-bg .page-slot-games-jackpots__section-title {
  color: #8B0000; /* Dark red for titles on light background */
  text-shadow: none;
}

.page-slot-games-jackpots__light-bg .page-slot-games-jackpots__text-block {
  color: #333333;
}

.page-slot-games-jackpots__light-bg .page-slot-games-jackpots__text-block a {
  color: #8B0000;
}

.page-slot-games-jackpots__light-bg .page-slot-games-jackpots__text-block a:hover {
  color: #B80000;
}

/* Grid for popular types */
.page-slot-games-jackpots__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games-jackpots__card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333333; /* Dark text on card background */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-slot-games-jackpots__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-slot-games-jackpots__card-image {
  width: 100%;
  max-width: 300px; /* Ensure images are large enough */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-height: 200px; /* Minimum size requirement */
  min-width: 200px;
}

.page-slot-games-jackpots__card-title {
  font-size: 24px;
  font-weight: bold;
  color: #8B0000;
  margin-bottom: 15px;
}

.page-slot-games-jackpots__card-description {
  font-size: 16px;
  line-height: 1.6;
  color: #555555;
}

/* Benefits List */
.page-slot-games-jackpots__benefits-list,
.page-slot-games-jackpots__strategy-list,
.page-slot-games-jackpots__promotion-list {
  list-style-type: none;
  padding: 0;
  margin: 0 0 30px;
}

.page-slot-games-jackpots__benefits-list li,
.page-slot-games-jackpots__strategy-list li,
.page-slot-games-jackpots__promotion-list li {
  background: rgba(255, 255, 255, 0.05);
  border-left: 5px solid #FFD700;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 17px;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-slot-games-jackpots__benefits-list li strong,
.page-slot-games-jackpots__strategy-list li strong,
.page-slot-games-jackpots__promotion-list li strong {
  color: #FFD700;
}

.page-slot-games-jackpots__strategy-list li {
  border-left-color: #8B0000;
}

.page-slot-games-jackpots__promotion-list li {
  border-left-color: #FFD700;
}

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

.page-slot-games-jackpots__cta-button--large {
  padding: 18px 50px;
  font-size: 20px;
  border-radius: 8px;
}

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

.page-slot-games-jackpots__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-slot-games-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;
}

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

.page-slot-games-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;
  color: #333333; /* Dark text on light background */
}

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

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

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

.page-slot-games-jackpots__faq-toggle {
  font-size: 28px;
  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: 32px;
  height: 32px;
}

.page-slot-games-jackpots__faq-item.active .page-slot-games-jackpots__faq-toggle {
  color: #8B0000;
  transform: rotate(45deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-slot-games-jackpots__hero-title {
    font-size: 40px;
  }
  .page-slot-games-jackpots__hero-description {
    font-size: 18px;
  }
  .page-slot-games-jackpots__section-title {
    font-size: 32px;
  }
  .page-slot-games-jackpots__text-block {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .page-slot-games-jackpots__hero-title {
    font-size: 32px;
  }
  .page-slot-games-jackpots__hero-description {
    font-size: 16px;
  }
  .page-slot-games-jackpots__cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }
  .page-slot-games-jackpots__section {
    padding: 40px 15px;
  }
  .page-slot-games-jackpots__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-slot-games-jackpots__text-block {
    font-size: 15px;
  }
  .page-slot-games-jackpots__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-slot-games-jackpots__card {
    padding: 20px;
  }
  .page-slot-games-jackpots__card-title {
    font-size: 20px;
  }
  .page-slot-games-jackpots__card-image {
    max-width: 250px;
  }
  .page-slot-games-jackpots__benefits-list li,
  .page-slot-games-jackpots__strategy-list li,
  .page-slot-games-jackpots__promotion-list li {
    font-size: 15px;
    padding: 12px 15px;
  }
  .page-slot-games-jackpots__cta-button--large {
    padding: 15px 40px;
    font-size: 18px;
  }
  .page-slot-games-jackpots__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  .page-slot-games-jackpots__faq-question h3 {
    font-size: 16px;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  .page-slot-games-jackpots__faq-toggle {
    margin-left: 10px;
    width: 28px;
    height: 28px;
    font-size: 24px;
  }
  .page-slot-games-jackpots__faq-answer {
    padding: 0 15px;
  }
  .page-slot-games-jackpots__faq-item.active .page-slot-games-jackpots__faq-answer {
    padding: 15px !important;
  }
}

@media (max-width: 480px) {
  .page-slot-games-jackpots__hero-title {
    font-size: 28px;
  }
  .page-slot-games-jackpots__hero-description {
    font-size: 15px;
  }
  .page-slot-games-jackpots__section-title {
    font-size: 24px;
  }
  .page-slot-games-jackpots__card-image {
    max-width: 100%;
  }
}