.page-jackpot-slots {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

.page-jackpot-slots__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-jackpot-slots__section {
  padding: 60px 0;
  text-align: center;
}

.page-jackpot-slots__section-title {
  font-size: clamp(28px, 4vw, 48px);
  color: #F2C14E; /* Gold */
  margin-bottom: 30px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 1px;
}

.page-jackpot-slots__text-block {
  font-size: 18px;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #A7D9B8; /* Text Secondary */
}

/* Hero Section */
.page-jackpot-slots__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-jackpot-slots__hero-image-wrapper {
  position: relative;
  width: 100%;
  max-height: 700px;
  overflow: hidden;
}

.page-jackpot-slots__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image slightly for text contrast */
}

.page-jackpot-slots__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  color: #F2FFF6; /* Text Main */
  padding: 20px;
  max-width: 900px;
  width: 100%;
  box-sizing: border-box;
}

.page-jackpot-slots__main-title {
  font-size: clamp(32px, 5vw, 64px);
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 0 0 15px rgba(242, 193, 78, 0.7);
}

.page-jackpot-slots__hero-description {
  font-size: clamp(16px, 2.5vw, 22px);
  margin-bottom: 40px;
  color: #A7D9B8; /* Text Secondary */
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-jackpot-slots__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-jackpot-slots__cta-buttons--center {
  margin-top: 40px;
}

.page-jackpot-slots__btn-primary,
.page-jackpot-slots__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
  display: inline-block;
}

.page-jackpot-slots__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  border: 2px solid #2AD16F;
  box-shadow: 0 5px 15px rgba(34, 199, 104, 0.4);
}

.page-jackpot-slots__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(34, 199, 104, 0.6);
}

.page-jackpot-slots__btn-secondary {
  background: transparent;
  color: #F2C14E; /* Gold */
  border: 2px solid #F2C14E;
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.2);
}

.page-jackpot-slots__btn-secondary:hover {
  background: #F2C14E;
  color: #08160F; /* Background */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(242, 193, 78, 0.4);
}

/* Introduction Section */
.page-jackpot-slots__introduction .page-jackpot-slots__text-block {
  text-align: left;
}

.page-jackpot-slots__image-wrapper--inline {
  margin-top: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.page-jackpot-slots__content-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Why Choose Section */
.page-jackpot-slots__why-choose {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
}

.page-jackpot-slots__why-choose .page-jackpot-slots__section-title {
  color: #F2C14E; /* Gold */
}

.page-jackpot-slots__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-jackpot-slots__feature-card {
  background-color: #0A4B2C; /* Deep Green */
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  border: 1px solid #2E7A4E; /* Border */
}

.page-jackpot-slots__card-title {
  font-size: 24px;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-jackpot-slots__card-description {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
}

/* Popular Games Section */
.page-jackpot-slots__popular-games .page-jackpot-slots__text-block {
  text-align: left;
}

.page-jackpot-slots__game-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-jackpot-slots__game-card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.page-jackpot-slots__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-jackpot-slots__game-title {
  font-size: 22px;
  color: #F2C14E; /* Gold */
  padding: 15px 20px 5px;
  font-weight: bold;
}

.page-jackpot-slots__game-description {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  padding: 0 20px 20px;
  flex-grow: 1;
}

/* How to Play Section */
.page-jackpot-slots__how-to-play {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-jackpot-slots__how-to-play .page-jackpot-slots__section-title {
  color: #F2C14E; /* Gold */
}

.page-jackpot-slots__how-to-play .page-jackpot-slots__text-block {
  text-align: left;
}

.page-jackpot-slots__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-jackpot-slots__step-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  text-align: left;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-jackpot-slots__step-title {
  font-size: 20px;
  color: #57E38D; /* Glow */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-jackpot-slots__step-description {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
}

/* Strategies Section */
.page-jackpot-slots__strategies .page-jackpot-slots__text-block {
  text-align: left;
}

.page-jackpot-slots__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-jackpot-slots__tip-item {
  background-color: #0A4B2C; /* Deep Green */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-jackpot-slots__tip-title {
  font-size: 20px;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-jackpot-slots__tip-description {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
}

/* Promotions Section */
.page-jackpot-slots__promotions {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
}

.page-jackpot-slots__promotions .page-jackpot-slots__section-title {
  color: #F2C14E; /* Gold */
}

.page-jackpot-slots__promo-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-jackpot-slots__promo-item {
  background-color: #0A4B2C; /* Deep Green */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-jackpot-slots__promo-title {
  font-size: 20px;
  color: #57E38D; /* Glow */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-jackpot-slots__promo-description {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
}

/* FAQ Section */
.page-jackpot-slots__faq {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-jackpot-slots__faq .page-jackpot-slots__section-title {
  color: #F2C14E; /* Gold */
}

.page-jackpot-slots__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-jackpot-slots__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-jackpot-slots__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #0A4B2C; /* Deep Green */
  border-bottom: 1px solid #2E7A4E;
}

.page-jackpot-slots__faq-item[open] .page-jackpot-slots__faq-question {
  border-bottom: 1px solid #2E7A4E;
}

.page-jackpot-slots__faq-question::-webkit-details-marker {
  display: none;
}

.page-jackpot-slots__faq-question::marker {
  display: none;
}

.page-jackpot-slots__faq-qtext {
  flex-grow: 1;
}

.page-jackpot-slots__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 15px;
  color: #F2C14E; /* Gold */
}

.page-jackpot-slots__faq-answer {
  padding: 20px 25px;
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  background-color: #11271B; /* Card BG */
}

.page-jackpot-slots__faq-answer p {
  margin-bottom: 0;
}

/* Final CTA Section */
.page-jackpot-slots__cta-final {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
  padding-bottom: 80px;
}

.page-jackpot-slots__cta-final .page-jackpot-slots__section-title {
  color: #F2C14E; /* Gold */
}

.page-jackpot-slots__cta-final .page-jackpot-slots__text-block {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-jackpot-slots__hero-content {
    padding: 15px;
  }

  .page-jackpot-slots__main-title {
    font-size: clamp(28px, 4.5vw, 56px);
  }

  .page-jackpot-slots__hero-description {
    font-size: clamp(15px, 2.2vw, 20px);
    margin-bottom: 30px;
  }

  .page-jackpot-slots__btn-primary,
  .page-jackpot-slots__btn-secondary {
    padding: 12px 25px;
    font-size: 16px;
  }

  .page-jackpot-slots__section-title {
    font-size: clamp(24px, 3.5vw, 40px);
  }

  .page-jackpot-slots__text-block {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .page-jackpot-slots__hero-image {
    filter: brightness(0.4); /* Darken more for mobile readability */
  }

  .page-jackpot-slots__hero-content {
    position: static;
    transform: none;
    padding: 30px 20px;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text */
    margin-top: -100px; /* Pull content up over image */
    width: 100%;
  }

  .page-jackpot-slots__hero-section {
    padding-top: 10px !important;
    padding-bottom: 0;
  }

  .page-jackpot-slots__main-title {
    font-size: clamp(24px, 7vw, 40px);
    margin-bottom: 15px;
  }

  .page-jackpot-slots__hero-description {
    font-size: clamp(14px, 3.5vw, 18px);
    margin-bottom: 25px;
  }

  .page-jackpot-slots__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-jackpot-slots__btn-primary,
  .page-jackpot-slots__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 14px 20px;
    font-size: 16px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-jackpot-slots__section {
    padding: 40px 0;
  }

  .page-jackpot-slots__section-title {
    font-size: clamp(22px, 6vw, 36px);
    margin-bottom: 25px;
  }

  .page-jackpot-slots__text-block {
    font-size: 16px;
  }

  .page-jackpot-slots img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-jackpot-slots__image-wrapper,
  .page-jackpot-slots__container,
  .page-jackpot-slots__feature-card,
  .page-jackpot-slots__game-card,
  .page-jackpot-slots__step-item,
  .page-jackpot-slots__tip-item,
  .page-jackpot-slots__promo-item,
  .page-jackpot-slots__faq-item,
  .page-jackpot-slots__cta-buttons,
  .page-jackpot-slots__button-group,
  .page-jackpot-slots__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-jackpot-slots__hero-image-wrapper {
    max-height: 400px;
  }

  .page-jackpot-slots__hero-image {
    height: 100%;
    width: auto;
    object-position: center;
  }

  .page-jackpot-slots__faq-question {
    padding: 15px 20px;
    font-size: 16px;
  }

  .page-jackpot-slots__faq-answer {
    padding: 15px 20px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .page-jackpot-slots__hero-content {
    margin-top: -50px;
  }

  .page-jackpot-slots__main-title {
    font-size: clamp(20px, 8vw, 32px);
  }

  .page-jackpot-slots__hero-description {
    font-size: clamp(13px, 4vw, 16px);
  }

  .page-jackpot-slots__section-title {
    font-size: clamp(20px, 7vw, 30px);
  }

  .page-jackpot-slots__text-block {
    font-size: 15px;
  }

  .page-jackpot-slots__card-title,
  .page-jackpot-slots__game-title,
  .page-jackpot-slots__step-title,
  .page-jackpot-slots__tip-title,
  .page-jackpot-slots__promo-title {
    font-size: 18px;
  }

  .page-jackpot-slots__card-description,
  .page-jackpot-slots__game-description,
  .page-jackpot-slots__step-description,
  .page-jackpot-slots__tip-description,
  .page-jackpot-slots__promo-description {
    font-size: 14px;
  }
}