.page-game-guides-slots-jackpot-guide {
  --primary-color: #0A192F;
  --secondary-color: #FFD700;
  --text-color-light: #F0F2F5;
  --text-color-dark: #1A2A3A;
  --bg-color-alt: #1A2A3A;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-light);
}

.page-game-guides-slots-jackpot-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-guides-slots-jackpot-guide__hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1A2A3A 100%);
  padding: 100px 0;
  text-align: center;
  color: var(--text-color-light);
  position: relative;
  overflow: hidden;
}

.page-game-guides-slots-jackpot-guide__hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  animation: page-game-guides-slots-jackpot-guide__pulse 10s infinite alternate;
  z-index: 0;
}

@keyframes page-game-guides-slots-jackpot-guide__pulse {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(1.2); opacity: 0.8; }
}

.page-game-guides-slots-jackpot-guide__hero > * {
  position: relative;
  z-index: 1;
}

.page-game-guides-slots-jackpot-guide__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-game-guides-slots-jackpot-guide__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-guides-slots-jackpot-guide__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  margin: 10px;
  cursor: pointer;
}

.page-game-guides-slots-jackpot-guide__btn--primary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--secondary-color);
}

.page-game-guides-slots-jackpot-guide__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.page-game-guides-slots-jackpot-guide__btn--secondary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-game-guides-slots-jackpot-guide__btn--secondary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.page-game-guides-slots-jackpot-guide__btn--outline {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-game-guides-slots-jackpot-guide__btn--outline:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.page-game-guides-slots-jackpot-guide__section {
  padding: 60px 0;
  background-color: var(--primary-color);
  color: var(--text-color-light);
}

.page-game-guides-slots-jackpot-guide__section--alt-bg {
  background-color: var(--bg-color-alt);
}

.page-game-guides-slots-jackpot-guide__heading {
  font-size: 2.5em;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-game-guides-slots-jackpot-guide__heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

.page-game-guides-slots-jackpot-guide__content-block h3 {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-game-guides-slots-jackpot-guide__content-block p {
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-game-guides-slots-jackpot-guide__content-block ul {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-game-guides-slots-jackpot-guide__content-block li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-game-guides-slots-jackpot-guide__image-wrapper {
  margin: 40px auto;
  max-width: 800px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  background-color: var(--primary-color);
  padding: 15px;
}

.page-game-guides-slots-jackpot-guide__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
}

.page-game-guides-slots-jackpot-guide__image-wrapper figcaption {
  text-align: center;
  font-style: italic;
  font-size: 0.95em;
  color: #a0a0a0;
  margin-top: 15px;
}

.page-game-guides-slots-jackpot-guide__faq {
  padding: 60px 0;
  background-color: var(--primary-color);
}

.page-game-guides-slots-jackpot-guide__faq-item {
  background-color: var(--bg-color-alt);
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.page-game-guides-slots-jackpot-guide__faq-item:hover {
  transform: translateY(-5px);
}

.page-game-guides-slots-jackpot-guide__faq-item h3 {
  color: var(--secondary-color);
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-game-guides-slots-jackpot-guide__faq-item p {
  color: var(--text-color-light);
  font-size: 1.05em;
  margin-bottom: 0;
}

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

  .page-game-guides-slots-jackpot-guide__heading {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-game-guides-slots-jackpot-guide__hero {
    padding: 80px 0;
  }

  .page-game-guides-slots-jackpot-guide__title {
    font-size: 2.2em;
  }

  .page-game-guides-slots-jackpot-guide__subtitle {
    font-size: 1.1em;
  }

  .page-game-guides-slots-jackpot-guide__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-game-guides-slots-jackpot-guide__heading {
    font-size: 1.8em;
  }

  .page-game-guides-slots-jackpot-guide__content-block h3 {
    font-size: 1.5em;
  }

  .page-game-guides-slots-jackpot-guide__content-block p,
  .page-game-guides-slots-jackpot-guide__content-block li {
    font-size: 1em;
  }

  .page-game-guides-slots-jackpot-guide__faq-item h3 {
    font-size: 1.3em;
  }
}

@media (max-width: 576px) {
  .page-game-guides-slots-jackpot-guide__hero {
    padding: 60px 0;
  }

  .page-game-guides-slots-jackpot-guide__title {
    font-size: 1.8em;
  }

  .page-game-guides-slots-jackpot-guide__subtitle {
    font-size: 0.95em;
  }

  .page-game-guides-slots-jackpot-guide__btn {
    padding: 10px 20px;
    font-size: 0.9em;
    margin: 5px;
  }

  .page-game-guides-slots-jackpot-guide__heading {
    font-size: 1.5em;
  }

  .page-game-guides-slots-jackpot-guide__content-block h3 {
    font-size: 1.3em;
  }

  .page-game-guides-slots-jackpot-guide__content-block p,
  .page-game-guides-slots-jackpot-guide__content-block li {
    font-size: 0.95em;
  }

  .page-game-guides-slots-jackpot-guide__faq-item h3 {
    font-size: 1.1em;
  }
}