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

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

.page-slots-games-jackpot-details__hero-section {
  background: linear-gradient(135deg, #0A192F 0%, #1a3a60 100%);
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.page-slots-games-jackpot-details__hero-content {
  z-index: 2;
  max-width: 800px;
  margin-bottom: 40px;
}

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

.page-slots-games-jackpot-details__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

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

.page-slots-games-jackpot-details__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.page-slots-games-jackpot-details__overview-section {
  background-color: #122842;
}

.page-slots-games-jackpot-details__game-types-section {
  background-color: #0A192F;
}

.page-slots-games-jackpot-details__how-to-play-section {
  background-color: #122842;
}

.page-slots-games-jackpot-details__bonuses-section {
  background-color: #0A192F;
}

.page-slots-games-jackpot-details__safety-section {
  background-color: #122842;
}

.page-slots-games-jackpot-details__faq-section {
  background-color: #0A192F;
}

.page-slots-games-jackpot-details__final-cta-section {
  background: linear-gradient(45deg, #0A192F, #333);
  padding: 80px 0;
}

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

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

.page-slots-games-jackpot-details__text--center {
  text-align: center;
}

.page-slots-games-jackpot-details__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1.1em;
}

.page-slots-games-jackpot-details__btn--primary {
  background-color: #FFD700; /* Gold background */
  color: #0A192F; /* Dark blue text */
}

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

.page-slots-games-jackpot-details__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-slots-games-jackpot-details__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-2px);
}

.page-slots-games-jackpot-details__btn--small {
  padding: 8px 18px;
  font-size: 0.9em;
}

.page-slots-games-jackpot-details__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

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

.page-slots-games-jackpot-details__game-card,
.page-slots-games-jackpot-details__promo-card {
  background-color: #1e3a5f; /* Slightly lighter dark blue */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-slots-games-jackpot-details__game-card:hover,
.page-slots-games-jackpot-details__promo-card:hover {
  transform: translateY(-5px);
}

.page-slots-games-jackpot-details__game-thumbnail,
.page-slots-games-jackpot-details__promo-thumbnail {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  border: 2px solid #FFD700;
}

.page-slots-games-jackpot-details__game-title,
.page-slots-games-jackpot-details__promo-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-slots-games-jackpot-details__game-description,
.page-slots-games-jackpot-details__promo-description {
  font-size: 0.95em;
  color: #CCCCCC;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-slots-games-jackpot-details__more-games {
  margin-top: 30px;
  font-size: 1.1em;
  color: #E0E0E0;
}

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

.page-slots-games-jackpot-details__steps-list li {
  background-color: #1e3a5f;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  font-size: 1.1em;
  color: #E0E0E0;
  border-left: 5px solid #FFD700;
}

.page-slots-games-jackpot-details__steps-list li strong {
  color: #FFD700;
}

.page-slots-games-jackpot-details__steps-list li a {
  color: #FFD700;
  text-decoration: none;
}

.page-slots-games-jackpot-details__steps-list li a:hover {
  text-decoration: underline;
}

.page-slots-games-jackpot-details__cta-group {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-slots-games-jackpot-details__security-image {
  max-width: 300px;
  margin-top: 30px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-slots-games-jackpot-details__faq-item {
  background-color: #1e3a5f;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 20px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-slots-games-jackpot-details__faq-question {
  color: #FFD700;
  font-size: 1.3em;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

.page-slots-games-jackpot-details__faq-answer {
  color: #CCCCCC;
  font-size: 1em;
  display: none;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  margin-top: 10px;
}

.page-slots-games-jackpot-details__faq-answer.active {
  display: block;
}

.page-slots-games-jackpot-details__faq-item a {
  color: #FFD700;
  text-decoration: none;
}

.page-slots-games-jackpot-details__faq-item a:hover {
  text-decoration: underline;
}

.page-slots-games-jackpot-details__contact-us {
  margin-top: 30px;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-slots-games-jackpot-details__contact-us a {
  color: #FFD700;
  text-decoration: none;
}

.page-slots-games-jackpot-details__contact-us a:hover {
  text-decoration: underline;
}

.page-slots-games-jackpot-details__small-text {
  font-size: 0.9em;
  color: #CCCCCC;
  margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-slots-games-jackpot-details__main-title {
    font-size: 2.8em;
  }

  .page-slots-games-jackpot-details__section-title {
    font-size: 2em;
  }

  .page-slots-games-jackpot-details__hero-section {
    padding: 60px 0;
  }

  .page-slots-games-jackpot-details__section {
    padding: 40px 0;
  }
}

@media (max-width: 768px) {
  .page-slots-games-jackpot-details__main-title {
    font-size: 2.2em;
  }

  .page-slots-games-jackpot-details__hero-description {
    font-size: 1em;
  }

  .page-slots-games-jackpot-details__section-title {
    font-size: 1.8em;
  }

  .page-slots-games-jackpot-details__game-grid,
  .page-slots-games-jackpot-details__promo-grid {
    grid-template-columns: 1fr;
  }

  .page-slots-games-jackpot-details__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  .page-slots-games-jackpot-details__cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-slots-games-jackpot-details__btn {
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .page-slots-games-jackpot-details__main-title {
    font-size: 1.8em;
  }

  .page-slots-games-jackpot-details__section-title {
    font-size: 1.5em;
  }

  .page-slots-games-jackpot-details__btn {
    font-size: 1em;
    padding: 10px 20px;
  }

  .page-slots-games-jackpot-details__hero-section {
    padding: 40px 0;
  }

  .page-slots-games-jackpot-details__section {
    padding: 30px 0;
  }
}