/* style/slots-games-jackpot-games.css */
.page-slots-games-jackpot-games {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark backgrounds */
  background-color: #0A1931; /* Main background color */
  line-height: 1.6;
}

.page-slots-games-jackpot-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-slots-games-jackpot-games__hero {
  position: relative;
  background: linear-gradient(135deg, #0A1931 0%, #1a3a66 100%); /* Dark blue gradient */
  color: #FFFFFF;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 450px;
}

.page-slots-games-jackpot-games__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.2;
}

.page-slots-games-jackpot-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.page-slots-games-jackpot-games__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-slots-games-jackpot-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-slots-games-jackpot-games__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #FFFFFF;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-slots-games-jackpot-games__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A1931; /* Dark blue text on gold button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-slots-games-jackpot-games__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-slots-games-jackpot-games__section {
  padding: 60px 0;
  text-align: center;
  position: relative;
}

.page-slots-games-jackpot-games__section--dark {
  background-color: #1A2C4A; /* Slightly lighter dark blue for contrast */
  color: #E0E0E0;
}

.page-slots-games-jackpot-games__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.page-slots-games-jackpot-games__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-slots-games-jackpot-games__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-slots-games-jackpot-games__game-card {
  background-color: #0A1931; /* Dark blue card background */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-slots-games-jackpot-games__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
}

.page-slots-games-jackpot-games__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-slots-games-jackpot-games__game-title {
  font-size: 1.5em;
  color: #FFD700; /* Gold for game titles */
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-slots-games-jackpot-games__game-description {
  font-size: 0.95em;
  color: #CCCCCC;
  padding: 0 15px 20px;
  flex-grow: 1;
}

.page-slots-games-jackpot-games__game-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A1931;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: auto; /* Push button to bottom */
}

.page-slots-games-jackpot-games__game-button:hover {
  background-color: #e6c200;
}

.page-slots-games-jackpot-games__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-slots-games-jackpot-games__list li {
  background-color: #0A1931; /* Dark blue list item background */
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-slots-games-jackpot-games__list-title {
  font-size: 1.3em;
  color: #FFD700; /* Gold for list titles */
  margin-bottom: 10px;
}

.page-slots-games-jackpot-games__image-full-width {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-slots-games-jackpot-games__features-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slots-games-jackpot-games__features-list li {
  background-color: #0A1931;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-slots-games-jackpot-games__icon {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-slots-games-jackpot-games__responsive-display {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.page-slots-games-jackpot-games__responsive-text {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.page-slots-games-jackpot-games__responsive-image-wrapper {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.page-slots-games-jackpot-games__responsive-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-slots-games-jackpot-games__faq {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-slots-games-jackpot-games__faq-item {
  background-color: #0A1931;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  text-align: left;
  overflow: hidden;
}

.page-slots-games-jackpot-games__faq-question {
  font-size: 1.2em;
  color: #FFD700;
  padding: 20px;
  cursor: pointer;
  margin: 0;
  background-color: #1A2C4A; /* Slightly lighter dark blue for question background */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-slots-games-jackpot-games__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-slots-games-jackpot-games__faq-question.active::after {
  transform: rotate(45deg);
}

.page-slots-games-jackpot-games__faq-answer {
  font-size: 1em;
  color: #CCCCCC;
  padding: 0 20px 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-slots-games-jackpot-games__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding: 20px 20px 20px;
}

.page-slots-games-jackpot-games__cta-banner {
  background-color: #0A1931;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
}

.page-slots-games-jackpot-games__cta-banner .page-slots-games-jackpot-games__container {
  position: relative;
  z-index: 1;
}

.page-slots-games-jackpot-games__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-slots-games-jackpot-games__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-slots-games-jackpot-games__cta-button--primary {
  background-color: #FFD700;
  color: #0A1931;
  font-size: 1.2em;
  padding: 18px 35px;
  border-radius: 8px;
}

.page-slots-games-jackpot-games__cta-button--primary:hover {
  background-color: #e6c200;
}

.page-slots-games-jackpot-games__cta-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.2;
  filter: brightness(0.6);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-slots-games-jackpot-games__hero-title {
    font-size: 3em;
  }
  .page-slots-games-jackpot-games__section-title {
    font-size: 2.2em;
  }
  .page-slots-games-jackpot-games__cta-title {
    font-size: 2.4em;
  }
}

@media (max-width: 768px) {
  .page-slots-games-jackpot-games__hero {
    padding: 80px 0;
  }
  .page-slots-games-jackpot-games__hero-title {
    font-size: 2.5em;
  }
  .page-slots-games-jackpot-games__hero-subtitle {
    font-size: 1.2em;
  }
  .page-slots-games-jackpot-games__section {
    padding: 40px 0;
  }
  .page-slots-games-jackpot-games__section-title {
    font-size: 2em;
  }
  .page-slots-games-jackpot-games__text,
  .page-slots-games-jackpot-games__game-description,
  .page-slots-games-jackpot-games__list-title,
  .page-slots-games-jackpot-games__faq-question,
  .page-slots-games-jackpot-games__faq-answer {
    font-size: 1em;
  }
  .page-slots-games-jackpot-games__game-grid,
  .page-slots-games-jackpot-games__features-list {
    grid-template-columns: 1fr;
  }
  .page-slots-games-jackpot-games__responsive-display {
    flex-direction: column;
  }
  .page-slots-games-jackpot-games__cta-title {
    font-size: 2em;
  }
  .page-slots-games-jackpot-games__cta-description {
    font-size: 1em;
  }
  .page-slots-games-jackpot-games__cta-button--primary {
    padding: 15px 25px;
    font-size: 1.1em;
  }
  .page-slots-games-jackpot-games__faq-question.active::after {
    transform: rotate(45deg);
  }
  .page-slots-games-jackpot-games__faq-answer.active {
    max-height: 400px; /* Adjust for mobile */
  }
}

@media (max-width: 480px) {
  .page-slots-games-jackpot-games__hero-title {
    font-size: 2em;
  }
  .page-slots-games-jackpot-games__hero-subtitle {
    font-size: 1em;
  }
  .page-slots-games-jackpot-games__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-slots-games-jackpot-games__section-title {
    font-size: 1.8em;
  }
  .page-slots-games-jackpot-games__cta-title {
    font-size: 1.8em;
  }
}