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

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

.page-slot-jackpot__hero-section {
  position: relative;
  width: 100%;
  padding: 10px 0 60px 0; /* body handles header offset, this is for aesthetic top padding */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, #0A4B2C 0%, #08160F 100%); /* Deep Green to Background */
}

.page-slot-jackpot__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-slot-jackpot__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-slot-jackpot__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(17, 39, 27, 0.7); /* Card BG with transparency */
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.page-slot-jackpot__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.page-slot-jackpot__description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-jackpot__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-slot-jackpot__btn-primary,
.page-slot-jackpot__btn-secondary {
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05em;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-slot-jackpot__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  border: 2px solid transparent;
}

.page-slot-jackpot__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 15px #57E38D; /* Glow */
}

.page-slot-jackpot__btn-secondary {
  background: transparent;
  color: #2AD16F; /* Button top color */
  border: 2px solid #2AD16F;
}

.page-slot-jackpot__btn-secondary:hover {
  background: #2AD16F;
  color: #F2FFF6; /* Text Main */
  box-shadow: 0 0 15px rgba(42, 209, 111, 0.5);
}

.page-slot-jackpot__section {
  padding: 60px 0;
  background-color: #08160F; /* Background */
}

.page-slot-jackpot__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.page-slot-jackpot__text-block {
  font-size: 1.05em;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.page-slot-jackpot__highlight {
  color: #2AD16F; /* Bright green from button gradient */
  font-weight: 600;
}

.page-slot-jackpot__features-section {
  background-color: #0A4B2C; /* Deep Green */
}

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

.page-slot-jackpot__feature-card,
.page-slot-jackpot__card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.page-slot-jackpot__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  object-fit: cover;
}

.page-slot-jackpot__card-title {
  font-size: 1.5em;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-slot-jackpot__card-text {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 0;
}

.page-slot-jackpot__card-text a {
  color: #2AD16F;
  text-decoration: none;
}

.page-slot-jackpot__card-text a:hover {
  text-decoration: underline;
}

.page-slot-jackpot__game-type-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.page-slot-jackpot__game-type-item {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 25px;
  border: 1px solid #2E7A4E; /* Border */
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.page-slot-jackpot__game-type-title {
  font-size: 1.4em;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-slot-jackpot__game-type-description {
  font-size: 0.95em;
  color: #A7D9B8; /* Text Secondary */
}

.page-slot-jackpot__tips-section {
  background-color: #0A4B2C; /* Deep Green */
}

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

.page-slot-jackpot__tip-card {
  padding: 25px;
}

.page-slot-jackpot__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-slot-jackpot__step-item {
  padding: 30px 20px;
}

.page-slot-jackpot__step-icon {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: 700;
  margin: 0 auto 20px auto;
  box-shadow: 0 0 10px #57E38D;
}

.page-slot-jackpot__step-title {
  font-size: 1.3em;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-slot-jackpot__step-description {
  font-size: 0.95em;
  color: #A7D9B8; /* Text Secondary */
}

.page-slot-jackpot__step-description a {
  color: #2AD16F;
  text-decoration: none;
}

.page-slot-jackpot__step-description a:hover {
  text-decoration: underline;
}

.page-slot-jackpot__faq-section {
  background-color: #08160F; /* Background */
}

.page-slot-jackpot__faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-slot-jackpot__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-slot-jackpot__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.15em;
  color: #F2FFF6; /* Text Main */
  font-weight: 600;
  user-select: none;
  background-color: #11271B; /* Card BG */
  transition: background-color 0.3s ease;
}

.page-slot-jackpot__faq-item[open] > .page-slot-jackpot__faq-question {
  background-color: #1E3A2A; /* Divider */
  color: #F2C14E; /* Gold */
}

.page-slot-jackpot__faq-question:hover {
  background-color: #1E3A2A; /* Divider */
}

.page-slot-jackpot__faq-qtext a {
  color: #F2FFF6;
  text-decoration: none;
}

.page-slot-jackpot__faq-qtext a:hover {
  text-decoration: underline;
}

.page-slot-jackpot__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #2AD16F;
}

.page-slot-jackpot__faq-item[open] .page-slot-jackpot__faq-toggle {
  transform: rotate(45deg);
  color: #F2C14E;
}

.page-slot-jackpot__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.7;
}

.page-slot-jackpot__faq-answer p {
  margin: 0;
}

.page-slot-jackpot__faq-answer a {
  color: #2AD16F;
  text-decoration: none;
}

.page-slot-jackpot__faq-answer a:hover {
  text-decoration: underline;
}

.page-slot-jackpot__conclusion-section {
  background-color: #0A4B2C; /* Deep Green */
  text-align: center;
}

/* ----- Responsive Styles ----- */

/* Default image/video/button responsive styles */
.page-slot-jackpot img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-slot-jackpot video,
.page-slot-jackpot__video {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.page-slot-jackpot__video-section,
.page-slot-jackpot__video-container,
.page-slot-jackpot__video-wrapper,
.page-slot-jackpot__cta-buttons,
.page-slot-jackpot__button-group,
.page-slot-jackpot__btn-container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

@media (max-width: 768px) {
  .page-slot-jackpot {
    font-size: 15px;
    line-height: 1.6;
  }

  .page-slot-jackpot__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-slot-jackpot__hero-content {
    padding: 30px 15px;
  }

  .page-slot-jackpot__main-title {
    font-size: 2em;
  }

  .page-slot-jackpot__description {
    font-size: 1em;
  }

  .page-slot-jackpot__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }

  .page-slot-jackpot__btn-primary,
  .page-slot-jackpot__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-slot-jackpot__section {
    padding: 40px 0;
  }

  .page-slot-jackpot__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-slot-jackpot__text-block {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-slot-jackpot__container {
    padding: 0 15px;
  }

  .page-slot-jackpot__feature-grid,
  .page-slot-jackpot__game-type-list,
  .page-slot-jackpot__tips-grid,
  .page-slot-jackpot__guide-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-slot-jackpot__feature-card,
  .page-slot-jackpot__card,
  .page-slot-jackpot__game-type-item,
  .page-slot-jackpot__tip-card,
  .page-slot-jackpot__step-item {
    padding: 20px;
  }

  .page-slot-jackpot__card-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

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

  .page-slot-jackpot video,
  .page-slot-jackpot__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-slot-jackpot__video-section,
  .page-slot-jackpot__video-container,
  .page-slot-jackpot__video-wrapper,
  .page-slot-jackpot__section,
  .page-slot-jackpot__card,
  .page-slot-jackpot__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-slot-jackpot__video-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }

  .page-slot-jackpot__faq-question {
    padding: 15px 20px;
    font-size: 1.05em;
  }

  .page-slot-jackpot__faq-answer {
    padding: 0 20px 15px 20px;
    font-size: 0.95em;
  }

  .page-slot-jackpot__faq-list {
    padding: 0 15px;
  }
}