.page-slots-jackpot-intro {
  font-family: 'Arial', sans-serif;
  color: #f7f7f7; /* Light gray for general text */
  background-color: #1A202C; /* Main dark background */
  line-height: 1.6;
}

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

.page-slots-jackpot-intro__hero {
  background: linear-gradient(135deg, #1A202C 0%, #3a0f0f 100%); /* Dark gradient for hero */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

.page-slots-jackpot-intro__title {
  font-size: 3.5em;
  color: #ffffff; /* White for main title */
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slots-jackpot-intro__subtitle {
  font-size: 1.5em;
  color: #cccccc; /* Lighter gray for subtitle */
  margin-bottom: 40px;
}

.page-slots-jackpot-intro__section {
  padding: 60px 0;
  background-color: #1A202C;
  color: #f7f7f7;
}

.page-slots-jackpot-intro__section--dark {
  background-color: #2a3340; /* Slightly lighter dark for contrast */
}

.page-slots-jackpot-intro__section--cta {
  background-color: #13171e;
  padding: 80px 0;
  text-align: center;
}

.page-slots-jackpot-intro__section--final-cta {
  background: linear-gradient(90deg, #1A202C, #E53E3E); /* Gradient for final CTA */
  padding: 80px 0;
  text-align: center;
}

.page-slots-jackpot-intro__final-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-slots-jackpot-intro__heading {
  font-size: 2.5em;
  color: #ffffff; /* White for headings */
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-slots-jackpot-intro__heading--white {
  color: #ffffff;
}

.page-slots-jackpot-intro__description {
  font-size: 1.1em;
  color: #cccccc;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-slots-jackpot-intro__description--white {
  color: #ffffff;
}

.page-slots-jackpot-intro__content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .page-slots-jackpot-intro__content-grid {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }
  .page-slots-jackpot-intro__content-grid--reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl; /* For text-image swap */
  }
  .page-slots-jackpot-intro__content-grid--reverse .page-slots-jackpot-intro__text-content {
    direction: ltr;
  }
  .page-slots-jackpot-intro__content-grid--reverse .page-slots-jackpot-intro__image-wrapper {
    direction: ltr;
  }
  .page-slots-jackpot-intro__heading {
    text-align: left;
  }
  .page-slots-jackpot-intro__description {
    text-align: left;
    margin-left: 0;
    margin-right: auto;
  }
}

.page-slots-jackpot-intro__text-content {
  font-size: 1.1em;
  color: #f7f7f7;
}

.page-slots-jackpot-intro__text-content p {
  margin-bottom: 15px;
}

.page-slots-jackpot-intro__image-wrapper {
  text-align: center;
}

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

.page-slots-jackpot-intro__grid-3-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .page-slots-jackpot-intro__grid-3-col {
    grid-template-columns: repeat(3, 1fr);
  }
}

.page-slots-jackpot-intro__card {
  background-color: #1A202C; /* Darker background for cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid rgba(229, 62, 62, 0.3);
}

.page-slots-jackpot-intro__card-title {
  font-size: 1.5em;
  color: #E53E3E; /* Accent color for card titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-slots-jackpot-intro__card-text {
  color: #cccccc;
  font-size: 1em;
}

.page-slots-jackpot-intro__list {
  list-style-type: disc;
  margin-left: 20px;
  color: #f7f7f7;
  margin-top: 20px;
}

.page-slots-jackpot-intro__list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-slots-jackpot-intro__list li strong {
  color: #E53E3E;
}

.page-slots-jackpot-intro__grid-2-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .page-slots-jackpot-intro__grid-2-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

.page-slots-jackpot-intro__tip-card {
  background-color: #2a3340;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: left;
}

.page-slots-jackpot-intro__tip-title {
  font-size: 1.4em;
  color: #E53E3E;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-slots-jackpot-intro__tip-text {
  color: #cccccc;
  font-size: 1em;
}

.page-slots-jackpot-intro__faq {
  margin-top: 40px;
}

.page-slots-jackpot-intro__faq-item {
  background-color: #2a3340;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-slots-jackpot-intro__faq-question {
  font-size: 1.3em;
  color: #E53E3E; /* Accent color for questions */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-slots-jackpot-intro__faq-answer {
  color: #cccccc;
  font-size: 1em;
}

/* Buttons */
.page-slots-jackpot-intro__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  text-align: center;
}

.page-slots-jackpot-intro__button--primary {
  background-color: #E53E3E; /* Accent color for primary button */
  color: #ffffff; /* White text for primary button */
  border: none;
}

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

.page-slots-jackpot-intro__button--secondary {
  background-color: #1A202C;
  color: #E53E3E;
  border: 2px solid #E53E3E;
}

.page-slots-jackpot-intro__button--secondary:hover {
  background-color: #E53E3E;
  color: #ffffff;
  transform: translateY(-2px);
}

.page-slots-jackpot-intro__button--transparent {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-slots-jackpot-intro__button--transparent:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

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

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

.page-slots-jackpot-intro__link-inline {
  color: #E53E3E; /* Accent color for inline links */
  text-decoration: none;
  font-weight: bold;
}

.page-slots-jackpot-intro__link-inline:hover {
  text-decoration: underline;
}

.highlight {
  color: #E53E3E;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .page-slots-jackpot-intro__title {
    font-size: 2.5em;
  }
  .page-slots-jackpot-intro__subtitle {
    font-size: 1.2em;
  }
  .page-slots-jackpot-intro__heading {
    font-size: 2em;
  }
  .page-slots-jackpot-intro__section {
    padding: 40px 0;
  }
  .page-slots-jackpot-intro__card,
  .page-slots-jackpot-intro__tip-card,
  .page-slots-jackpot-intro__faq-item {
    padding: 20px;
  }
  .page-slots-jackpot-intro__button {
    width: 100%;
    margin-bottom: 15px;
  }
  .page-slots-jackpot-intro__button-group {
    flex-direction: column;
  }
}