/* style/slot-games-jackpot-details.css */

/* Base styles for the page content, ensuring light text on dark body background */
.page-slot-games-jackpot-details {
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-slot-games-jackpot-details__section {
  padding: 60px 0;
  text-align: center;
}

.page-slot-games-jackpot-details__dark-bg {
  background-color: rgba(38, 169, 224, 0.1); /* Slightly transparent brand color for dark sections */
  color: #ffffff; /* Light text */
}

.page-slot-games-jackpot-details__light-bg {
  background-color: #ffffff;
  color: #333333; /* Dark text */
}

.page-slot-games-jackpot-details__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  overflow: hidden;
}

.page-slot-games-jackpot-details__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-slot-games-jackpot-details__hero-image {
  width: 100%;
  height: auto; /* Maintain aspect ratio */
  object-fit: cover;
  display: block;
}

.page-slot-games-jackpot-details__hero-content {
  position: relative; /* Ensure content is in normal flow */
  z-index: 10; /* Ensure content is above any subtle background elements if any */
  max-width: 900px;
  margin-top: 40px; /* Space between image and text */
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent background for readability */
  border-radius: 8px;
  box-sizing: border-box;
}

.page-slot-games-jackpot-details__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-slot-games-jackpot-details__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  color: #f0f0f0;
  margin-bottom: 30px;
}

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

.page-slot-games-jackpot-details__btn-primary,
.page-slot-games-jackpot-details__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  min-width: 180px;
  text-align: center;
  box-sizing: border-box;
}

.page-slot-games-jackpot-details__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-slot-games-jackpot-details__btn-primary:hover {
  background-color: #1e87b7;
  border-color: #1e87b7;
}

.page-slot-games-jackpot-details__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-slot-games-jackpot-details__btn-secondary:hover {
  background-color: #ffffff;
  color: #26A9E0;
}

.page-slot-games-jackpot-details__section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: bold;
  margin-bottom: 30px;
  color: inherit; /* Inherit color from section (dark/light bg) */
}

.page-slot-games-jackpot-details__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-slot-games-jackpot-details__card {
  background: rgba(255, 255, 255, 0.1); /* Semi-transparent white for dark-bg sections */
  color: #ffffff; /* Light text */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-slot-games-jackpot-details__light-bg .page-slot-games-jackpot-details__card {
  background: #ffffff;
  color: #333333;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-slot-games-jackpot-details__card-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-slot-games-jackpot-details__card-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: inherit;
}

.page-slot-games-jackpot-details__card-text {
  font-size: 1rem;
  line-height: 1.5;
}

.page-slot-games-jackpot-details__cta-wrapper {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

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

.page-slot-games-jackpot-details__feature-item {
  background: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #ffffff;
}

.page-slot-games-jackpot-details__feature-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-slot-games-jackpot-details__feature-item p {
  font-size: 1rem;
  color: #f0f0f0;
}

.page-slot-games-jackpot-details__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-slot-games-jackpot-details__step-card {
  background: #ffffff;
  color: #333333;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-slot-games-jackpot-details__step-image {
  width: 100%;
  height: auto;
  max-height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-slot-games-jackpot-details__step-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-slot-games-jackpot-details__step-card p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #555555;
}

.page-slot-games-jackpot-details__tips-text {
  font-style: italic;
  color: #f0f0f0;
  margin-top: 30px;
}

.page-slot-games-jackpot-details__light-bg .page-slot-games-jackpot-details__tips-text {
  color: #555555;
}

.page-slot-games-jackpot-details__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-slot-games-jackpot-details__faq-item {
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  color: #ffffff;
}

.page-slot-games-jackpot-details__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  background-color: rgba(38, 169, 224, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.page-slot-games-jackpot-details__faq-question:hover {
  background-color: rgba(38, 169, 224, 0.3);
}

.page-slot-games-jackpot-details__faq-qtext {
  flex-grow: 1;
  pointer-events: none; /* Prevent text selection from interfering with click */
}

.page-slot-games-jackpot-details__faq-toggle {
  font-size: 1.5rem;
  margin-left: 15px;
  color: #26A9E0; /* Brand color for toggle */
  pointer-events: none; /* Prevent toggle icon from interfering with click */
}

.page-slot-games-jackpot-details__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  line-height: 1.6;
  color: #f0f0f0;
}

/* Details tag specific styles */
.page-slot-games-jackpot-details__faq-item summary {
  list-style: none; /* Remove default marker */
}

.page-slot-games-jackpot-details__faq-item summary::-webkit-details-marker {
  display: none; /* Remove default marker for webkit */
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-slot-games-jackpot-details {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-slot-games-jackpot-details__section {
    padding: 40px 0;
  }

  .page-slot-games-jackpot-details__container {
    padding: 0 15px;
  }

  .page-slot-games-jackpot-details__hero-section {
    padding: 30px 15px;
    padding-top: 10px !important;
  }

  .page-slot-games-jackpot-details__hero-content {
    margin-top: 20px;
    padding: 15px;
  }

  .page-slot-games-jackpot-details__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin-bottom: 10px;
  }

  .page-slot-games-jackpot-details__subtitle {
    font-size: clamp(0.9rem, 3.5vw, 1.1rem);
    margin-bottom: 20px;
  }

  .page-slot-games-jackpot-details__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-slot-games-jackpot-details__btn-primary,
  .page-slot-games-jackpot-details__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
  }

  .page-slot-games-jackpot-details__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 20px;
  }

  .page-slot-games-jackpot-details__text-block {
    font-size: 1rem;
  }

  .page-slot-games-jackpot-details__grid,
  .page-slot-games-jackpot-details__feature-list,
  .page-slot-games-jackpot-details__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .page-slot-games-jackpot-details__card,
  .page-slot-games-jackpot-details__feature-item,
  .page-slot-games-jackpot-details__step-card {
    padding: 20px;
  }

  .page-slot-games-jackpot-details__card-image,
  .page-slot-games-jackpot-details__step-image {
    max-height: 200px;
  }

  .page-slot-games-jackpot-details__faq-list {
    margin-top: 20px;
  }

  .page-slot-games-jackpot-details__faq-question {
    padding: 15px 20px;
    font-size: 1.1rem;
  }

  .page-slot-games-jackpot-details__faq-answer {
    padding: 0 20px 15px 20px;
    font-size: 0.95rem;
  }

  /* Ensure all images are responsive */
  .page-slot-games-jackpot-details img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Ensure all containers with images/videos/buttons are responsive */
  .page-slot-games-jackpot-details__section,
  .page-slot-games-jackpot-details__card,
  .page-slot-games-jackpot-details__container,
  .page-slot-games-jackpot-details__hero-section,
  .page-slot-games-jackpot-details__hero-image-wrapper,
  .page-slot-games-jackpot-details__cta-buttons,
  .page-slot-games-jackpot-details__cta-wrapper,
  .page-slot-games-jackpot-details__grid,
  .page-slot-games-jackpot-details__feature-list,
  .page-slot-games-jackpot-details__steps-grid,
  .page-slot-games-jackpot-details__step-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    /* No explicit padding-left/right here as container already has it */
    /* Individual elements like buttons will have padding */
  }

  /* Specific adjustments for buttons within flexible containers */
  .page-slot-games-jackpot-details__cta-buttons,
  .page-slot-games-jackpot-details__cta-wrapper {
    flex-direction: column; /* Stack buttons vertically */
    align-items: center;
    gap: 15px;
  }
}