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

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

.page-slots-games-jackpot-slots__hero-section {
  background: linear-gradient(135deg, #1A2E44 0%, #3a5c80 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-slots-games-jackpot-slots__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:jackpot_slots_background,abstract_lines,dark_texture]');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.page-slots-games-jackpot-slots__hero-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);
  position: relative;
  z-index: 1;
}

.page-slots-games-jackpot-slots__hero-description {
  font-size: 1.3em;
  color: #E0E0E0; /* Light grey for description */
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-slots-games-jackpot-slots__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 50px;
  margin-top: 60px;
  position: relative;
}

.page-slots-games-jackpot-slots__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-slots-games-jackpot-slots__section-subtitle {
  font-size: 1.1em;
  color: #CCCCCC;
  text-align: center;
  margin-bottom: 40px;
}

.page-slots-games-jackpot-slots__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.page-slots-games-jackpot-slots__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A2E44; /* Dark blue text on gold */
}

.page-slots-games-jackpot-slots__btn--primary:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-slots-games-jackpot-slots__btn--secondary {
  background-color: #3a5c80; /* Darker blue button */
  color: #FFD700; /* Gold text on dark blue */
  border: 1px solid #FFD700;
}

.page-slots-games-jackpot-slots__btn--secondary:hover {
  background-color: #2e4a6a;
  transform: translateY(-3px);
}

.page-slots-games-jackpot-slots__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

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

.page-slots-games-jackpot-slots__btn--link {
  background: none;
  color: #FFD700;
  padding: 0;
  text-decoration: underline;
  font-size: 1em;
}

.page-slots-games-jackpot-slots__btn--link:hover {
  color: #e6c200;
  text-decoration: none;
  transform: none;
}

.page-slots-games-jackpot-slots__intro-section {
  padding: 80px 0;
  background-color: #1A2E44;
}

.page-slots-games-jackpot-slots__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-slots-games-jackpot-slots__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-slots-games-jackpot-slots__text-content {
  flex: 1;
  color: #E0E0E0;
}

.page-slots-games-jackpot-slots__text-content p {
  margin-bottom: 20px;
}

.page-slots-games-jackpot-slots__image-content {
  flex: 1;
  text-align: center;
}

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

.page-slots-games-jackpot-slots__advantages-section {
  padding: 80px 0;
  background-color: #223c58; /* Slightly lighter dark blue */
}

.page-slots-games-jackpot-slots__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-slots-games-jackpot-slots__grid-item {
  background-color: #1A2E44;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

.page-slots-games-jackpot-slots__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

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

.page-slots-games-jackpot-slots__item-description {
  color: #CCCCCC;
}

.page-slots-games-jackpot-slots__featured-games {
  padding: 80px 0;
  background-color: #1A2E44;
}

.page-slots-games-jackpot-slots__game-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-slots-games-jackpot-slots__game-card {
  background-color: #223c58;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease;
}

.page-slots-games-jackpot-slots__game-card:hover {
  transform: translateY(-8px);
}

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

.page-slots-games-jackpot-slots__game-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-slots-games-jackpot-slots__game-provider {
  font-size: 0.9em;
  color: #AAAAAA;
  margin-bottom: 10px;
}

.page-slots-games-jackpot-slots__game-desc {
  font-size: 0.95em;
  color: #CCCCCC;
  margin-bottom: 20px;
  padding: 0 15px;
}

.page-slots-games-jackpot-slots__cta-bottom {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-slots-games-jackpot-slots__how-to-play {
  padding: 80px 0;
  background-color: #223c58;
}

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

.page-slots-games-jackpot-slots__step-card {
  background-color: #1A2E44;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.page-slots-games-jackpot-slots__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #FFD700;
  color: #1A2E44;
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

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

.page-slots-games-jackpot-slots__step-card p {
  color: #CCCCCC;
  margin-bottom: 20px;
}

.page-slots-games-jackpot-slots__promotions-section {
  padding: 80px 0;
  background-color: #1A2E44;
}

.page-slots-games-jackpot-slots__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-slots-games-jackpot-slots__promo-card {
  background-color: #223c58;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
}

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

.page-slots-games-jackpot-slots__promo-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-slots-games-jackpot-slots__promo-desc {
  font-size: 0.95em;
  color: #CCCCCC;
  margin-bottom: 20px;
  padding: 0 15px;
}

.page-slots-games-jackpot-slots__responsible-gambling {
  padding: 80px 0;
  background-color: #223c58;
}

.page-slots-games-jackpot-slots__responsible-gambling ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-slots-games-jackpot-slots__responsible-gambling 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="none" stroke="%23FFD700" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') no-repeat left center;
  background-size: 18px;
  padding-left: 30px;
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page-slots-games-jackpot-slots__faq-section {
  padding: 80px 0;
  background-color: #1A2E44;
}

.page-slots-games-jackpot-slots__faq-item {
  background-color: #223c58;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px 30px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.page-slots-games-jackpot-slots__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
}

.page-slots-games-jackpot-slots__faq-answer {
  font-size: 1em;
  color: #CCCCCC;
  line-height: 1.8;
}

.page-slots-games-jackpot-slots__cta-final {
  background: linear-gradient(90deg, #FFD700, #e6c200);
  padding: 80px 0;
  text-align: center;
  color: #1A2E44; /* Dark blue text on gold background */
}

.page-slots-games-jackpot-slots__cta-title {
  font-size: 3em;
  color: #1A2E44;
  margin-bottom: 20px;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-slots-games-jackpot-slots__hero-title {
    font-size: 2.8em;
  }
  .page-slots-games-jackpot-slots__section-title {
    font-size: 2em;
  }
  .page-slots-games-jackpot-slots__content-wrapper {
    flex-direction: column;
  }
  .page-slots-games-jackpot-slots__content-wrapper--reverse {
    flex-direction: column-reverse;
  }
  .page-slots-games-jackpot-slots__game-showcase,
  .page-slots-games-jackpot-slots__grid,
  .page-slots-games-jackpot-slots__content-grid,
  .page-slots-games-jackpot-slots__promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-slots-games-jackpot-slots__hero-title {
    font-size: 2.2em;
  }
  .page-slots-games-jackpot-slots__hero-description {
    font-size: 1.1em;
  }
  .page-slots-games-jackpot-slots__section-title {
    font-size: 1.8em;
  }
  .page-slots-games-jackpot-slots__btn--large {
    padding: 15px 30px;
    font-size: 1em;
  }
  .page-slots-games-jackpot-slots__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 480px) {
  .page-slots-games-jackpot-slots__hero-title {
    font-size: 1.8em;
  }
  .page-slots-games-jackpot-slots__hero-description {
    font-size: 1em;
  }
  .page-slots-games-jackpot-slots__section-title {
    font-size: 1.5em;
  }
  .page-slots-games-jackpot-slots__btn {
    padding: 12px 25px;
    font-size: 0.9em;
  }
  .page-slots-games-jackpot-slots__cta-title {
    font-size: 2em;
  }
  .page-slots-games-jackpot-slots__game-card,
  .page-slots-games-jackpot-slots__grid-item,
  .page-slots-games-jackpot-slots__step-card,
  .page-slots-games-jackpot-slots__promo-card {
    padding: 20px;
  }
}