/* style/slots-games-jackpot.css */
.page-slots-games-jackpot {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* White text for dark background */
  background-color: #0A2342; /* Main dark blue background */
  line-height: 1.6;
}

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

.page-slots-games-jackpot__section {
  padding: 80px 0;
  text-align: center;
}

.page-slots-games-jackpot__section:nth-of-type(even) {
  background-color: #1A3A5E; /* Slightly lighter dark blue for contrast */
}

.page-slots-games-jackpot__section-title {
  font-size: 2.8em;
  color: #E0B400; /* Gold accent for titles */
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.page-slots-games-jackpot__section-description {
  font-size: 1.1em;
  color: #CCCCCC;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-slots-games-jackpot__hero {
  background: linear-gradient(135deg, #0A2342 0%, #1A3A5E 100%);
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-slots-games-jackpot__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-slots-games-jackpot__hero-title {
  font-size: 4em;
  color: #E0B400;
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.page-slots-games-jackpot__hero-subtitle {
  font-size: 1.4em;
  color: #F0F0F0;
  margin-bottom: 40px;
  font-weight: 300;
}

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

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

/* Buttons */
.page-slots-games-jackpot__btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.page-slots-games-jackpot__btn--primary {
  background-color: #E0B400; /* Gold */
  color: #0A2342; /* Dark blue text */
}

.page-slots-games-jackpot__btn--primary:hover {
  background-color: #FFC800; /* Lighter gold on hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-slots-games-jackpot__btn--secondary {
  background-color: transparent;
  color: #E0B400;
  border: 2px solid #E0B400;
  padding: 13px 33px;
}

.page-slots-games-jackpot__btn--secondary:hover {
  background-color: #E0B400;
  color: #0A2342;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-slots-games-jackpot__btn--large {
  padding: 18px 45px;
  font-size: 1.3em;
}

/* Content Grids */
.page-slots-games-jackpot__content-grid {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
  margin-top: 40px;
}

.page-slots-games-jackpot__content-grid:nth-child(even) {
  flex-direction: row-reverse; /* Alternate image/text order */
}

.page-slots-games-jackpot__text-content {
  flex: 1;
}

.page-slots-games-jackpot__text-content h3 {
  color: #E0B400;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-slots-games-jackpot__text-content p {
  color: #F0F0F0;
  margin-bottom: 20px;
}

.page-slots-games-jackpot__text-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-slots-games-jackpot__text-content ul li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23E0B400"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left center;
  background-size: 18px;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #F0F0F0;
}

.page-slots-games-jackpot__image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-slots-games-jackpot__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Game List */
.page-slots-games-jackpot__game-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-slots-games-jackpot__game-card {
  background-color: #1A3A5E;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slots-games-jackpot__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
}

.page-slots-games-jackpot__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.page-slots-games-jackpot__game-title {
  font-size: 1.8em;
  color: #E0B400;
  margin-bottom: 10px;
}

.page-slots-games-jackpot__game-description {
  color: #CCCCCC;
  font-size: 0.95em;
  margin-bottom: 25px;
}

/* Security Features */
.page-slots-games-jackpot__security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-slots-games-jackpot__feature-item {
  background-color: #0A2342;
  border: 1px solid #E0B400;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-slots-games-jackpot__feature-item:hover {
  transform: translateY(-5px);
}

.page-slots-games-jackpot__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.page-slots-games-jackpot__feature-item h3 {
  color: #E0B400;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-slots-games-jackpot__feature-item p {
  color: #CCCCCC;
  font-size: 0.95em;
}

.page-slots-games-jackpot__cta-text {
  margin-top: 40px;
  font-size: 1.2em;
  color: #F0F0F0;
}

/* FAQ */
.page-slots-games-jackpot__faq-list {
  margin-top: 50px;
  text-align: left;
}

.page-slots-games-jackpot__faq-item {
  background-color: #1A3A5E;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px 30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-slots-games-jackpot__faq-question {
  color: #E0B400;
  font-size: 1.4em;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-slots-games-jackpot__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-slots-games-jackpot__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-slots-games-jackpot__faq-answer {
  color: #CCCCCC;
  font-size: 1em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.page-slots-games-jackpot__faq-answer.show {
  max-height: 200px; /* Adjust as needed */
  padding-top: 10px;
}

/* App Download */
.page-slots-games-jackpot__download-app {
  background-color: #0A2342;
  padding: 80px 0;
}

.page-slots-games-jackpot__app-download-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.page-slots-games-jackpot__btn--app-store,
.page-slots-games-jackpot__btn--google-play {
  background-color: #E0B400;
  color: #0A2342;
  padding: 15px 30px;
  font-size: 1.1em;
}

.page-slots-games-jackpot__btn--app-store:hover,
.page-slots-games-jackpot__btn--google-play:hover {
  background-color: #FFC800;
}

.page-slots-games-jackpot__app-image {
  max-width: 400px;
  width: 100%;
  height: auto;
  margin-top: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Final CTA */
.page-slots-games-jackpot__cta-final {
  background: linear-gradient(45deg, #0A2342, #E0B400);
  padding: 100px 0;
}

.page-slots-games-jackpot__cta-final .page-slots-games-jackpot__section-title,
.page-slots-games-jackpot__cta-final .page-slots-games-jackpot__section-description {
  color: #0A2342;
  text-shadow: none;
}

.page-slots-games-jackpot__cta-final .page-slots-games-jackpot__section-title {
  color: #0A2342;
}

.page-slots-games-jackpot__cta-final .page-slots-games-jackpot__section-description {
  color: #333;
}

.page-slots-games-jackpot__cta-final .page-slots-games-jackpot__btn--primary {
  background-color: #0A2342;
  color: #E0B400;
  margin: 0 10px;
}

.page-slots-games-jackpot__cta-final .page-slots-games-jackpot__btn--primary:hover {
  background-color: #1A3A5E;
  color: #FFC800;
}

.page-slots-games-jackpot__cta-final .page-slots-games-jackpot__btn--secondary {
  background-color: transparent;
  border-color: #0A2342;
  color: #0A2342;
  margin: 0 10px;
}

.page-slots-games-jackpot__cta-final .page-slots-games-jackpot__btn--secondary:hover {
  background-color: #0A2342;
  color: #E0B400;
}

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

  .page-slots-games-jackpot__hero-subtitle {
    font-size: 1.2em;
  }

  .page-slots-games-jackpot__section-title {
    font-size: 2.2em;
  }

  .page-slots-games-jackpot__content-grid {
    flex-direction: column;
    text-align: center;
  }

  .page-slots-games-jackpot__content-grid:nth-child(even) {
    flex-direction: column;
  }

  .page-slots-games-jackpot__text-content h3 {
    text-align: center;
  }

  .page-slots-games-jackpot__text-content ul {
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .page-slots-games-jackpot__app-image {
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .page-slots-games-jackpot__hero {
    padding: 80px 0;
  }

  .page-slots-games-jackpot__hero-title {
    font-size: 2.5em;
  }

  .page-slots-games-jackpot__section {
    padding: 60px 0;
  }

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

  .page-slots-games-jackpot__game-list,
  .page-slots-games-jackpot__security-features {
    grid-template-columns: 1fr;
  }

  .page-slots-games-jackpot__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-slots-games-jackpot__btn--large {
    padding: 15px 35px;
    font-size: 1.1em;
  }

  .page-slots-games-jackpot__cta-final .page-slots-games-jackpot__btn {
    margin-bottom: 15px;
  }

  .page-slots-games-jackpot__app-download-links {
    flex-direction: column;
    align-items: center;
  }
}

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

  .page-slots-games-jackpot__hero-subtitle {
    font-size: 1em;
  }

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

  .page-slots-games-jackpot__btn {
    width: 100%;
    margin-bottom: 15px;
  }

  .page-slots-games-jackpot__cta-final .page-slots-games-jackpot__btn--large {
    width: auto;
  }

  .page-slots-games-jackpot__app-image {
    max-width: 250px;
  }
}