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

/* Base styles for the page content */
.page-slot-games-jackpot-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Default text color for dark body background */
  background-color: var(--dark-bg-1); /* Inherited from shared, assuming dark */
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

/* Container for content sections */
.page-slot-games-jackpot-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

/* Section titles */
.page-slot-games-jackpot-guide__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Auxiliary color for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

/* Paragraphs */
.page-slot-games-jackpot-guide__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #ffffff; /* Light text for readability */
}

/* Buttons */
.page-slot-games-jackpot-guide__btn-primary,
.page-slot-games-jackpot-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%; /* Ensure responsiveness */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

.page-slot-games-jackpot-guide__btn-primary {
  background-color: #4A00B7; /* Primary color */
  color: #ffffff;
  border: 2px solid #4A00B7;
}

.page-slot-games-jackpot-guide__btn-primary:hover {
  background-color: #5a00d9;
  border-color: #5a00d9;
}

.page-slot-games-jackpot-guide__btn-secondary {
  background-color: transparent;
  color: #FFD700; /* Auxiliary color */
  border: 2px solid #FFD700;
}

.page-slot-games-jackpot-guide__btn-secondary:hover {
  background-color: #FFD700;
  color: #4A00B7;
}

/* Hero Section */
.page-slot-games-jackpot-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px; /* Adjust as needed */
  background-color: #1a003f; /* Darker variant of primary color */
  padding: 60px 20px;
  box-sizing: border-box;
  overflow: hidden; /* Prevent image overflow */
}

.page-slot-games-jackpot-guide__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.page-slot-games-jackpot-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle background */
  filter: brightness(0.7); /* Darken image slightly */
}

.page-slot-games-jackpot-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  color: #ffffff;
  padding: 20px;
}

.page-slot-games-jackpot-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  line-height: 1.2;
}

.page-slot-games-jackpot-guide__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

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

/* Introduction Section */
.page-slot-games-jackpot-guide__introduction-section {
  padding: 80px 0;
  background-color: #4A00B7; /* Primary brand color */
  color: #ffffff;
}

.page-slot-games-jackpot-guide__introduction-section .page-slot-games-jackpot-guide__section-title {
  color: #FFD700;
}

/* Types Section */
.page-slot-games-jackpot-guide__types-section {
  padding: 80px 0;
  background-color: var(--dark-bg-1); /* Default dark background */
}

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

.page-slot-games-jackpot-guide__card {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for dark background */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-slot-games-jackpot-guide__card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-slot-games-jackpot-guide__card-text {
  font-size: 1em;
  color: #f0f0f0;
}

/* Strategy Section */
.page-slot-games-jackpot-guide__strategy-section {
  padding: 80px 0;
  background-color: #2a006c; /* Darker shade of primary */
  color: #ffffff;
}

.page-slot-games-jackpot-guide__strategy-section .page-slot-games-jackpot-guide__section-title {
  color: #FFD700;
}

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

.page-slot-games-jackpot-guide__strategy-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-slot-games-jackpot-guide__strategy-card-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-slot-games-jackpot-guide__strategy-card-text {
  font-size: 1em;
  color: #f0f0f0;
}

/* Promotions Section */
.page-slot-games-jackpot-guide__promotions-section {
  padding: 80px 0;
  background-color: var(--dark-bg-1);
}

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

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

.page-slot-games-jackpot-guide__promo-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-slot-games-jackpot-guide__promo-text {
  font-size: 1em;
  color: #f0f0f0;
}

.page-slot-games-jackpot-guide__cta-center {
  text-align: center;
  margin-top: 40px;
}

/* FAQ Section */
.page-slot-games-jackpot-guide__faq-section {
  padding: 80px 0;
  background-color: #4A00B7;
  color: #ffffff;
}

.page-slot-games-jackpot-guide__faq-section .page-slot-games-jackpot-guide__section-title {
  color: #FFD700;
}

.page-slot-games-jackpot-guide__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-slot-games-jackpot-guide__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-slot-games-jackpot-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.05);
  transition: background-color 0.3s ease;
}

.page-slot-games-jackpot-guide__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-slot-games-jackpot-guide__faq-question h3 {
  margin: 0;
  color: #FFD700;
  font-size: 1.2em;
}

.page-slot-games-jackpot-guide__faq-toggle {
  font-size: 1.8em;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-slot-games-jackpot-guide__faq-item.active .page-slot-games-jackpot-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-slot-games-jackpot-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
}

.page-slot-games-jackpot-guide__faq-item.active .page-slot-games-jackpot-guide__faq-answer {
  max-height: 1000px !important; /* Important for JS toggle */
  padding: 20px 25px;
}

.page-slot-games-jackpot-guide__faq-answer p {
  margin: 0;
  font-size: 1em;
  color: #f0f0f0;
}

/* Call to Action Section */
.page-slot-games-jackpot-guide__cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: var(--dark-bg-1);
}

.page-slot-games-jackpot-guide__cta-content {
  max-width: 900px;
}

.page-slot-games-jackpot-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap; /* For mobile responsiveness */
}

/* Images */
.page-slot-games-jackpot-guide__image-wrapper {
  margin: 40px auto;
  max-width: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-slot-games-jackpot-guide__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-slot-games-jackpot-guide__hero-title {
    font-size: 3em;
  }

  .page-slot-games-jackpot-guide__hero-description {
    font-size: 1.2em;
  }

  .page-slot-games-jackpot-guide__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-slot-games-jackpot-guide {
    font-size: 16px;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile padding-top */
  }

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

  .page-slot-games-jackpot-guide__hero-section {
    min-height: 450px;
    padding: 40px 15px;
  }

  .page-slot-games-jackpot-guide__hero-title {
    font-size: 2.2em;
  }

  .page-slot-games-jackpot-guide__hero-description {
    font-size: 1em;
  }

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

  .page-slot-games-jackpot-guide__btn-primary,
  .page-slot-games-jackpot-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-slot-games-jackpot-guide__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-slot-games-jackpot-guide__grid,
  .page-slot-games-jackpot-guide__strategy-grid,
  .page-slot-games-jackpot-guide__promo-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-slot-games-jackpot-guide__card,
  .page-slot-games-jackpot-guide__strategy-card,
  .page-slot-games-jackpot-guide__promo-item {
    padding: 20px;
  }

  .page-slot-games-jackpot-guide__card-title,
  .page-slot-games-jackpot-guide__strategy-card-title,
  .page-slot-games-jackpot-guide__promo-title {
    font-size: 1.4em;
  }

  /* Mobile image responsiveness */
  .page-slot-games-jackpot-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-slot-games-jackpot-guide__image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    margin-left: 0;
    margin-right: 0;
    border-radius: 0; /* Remove border-radius on mobile for full width */
  }

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

  .page-slot-games-jackpot-guide__faq-question {
    padding: 15px 20px;
  }

  .page-slot-games-jackpot-guide__faq-question h3 {
    font-size: 1.1em;
  }

  .page-slot-games-jackpot-guide__faq-answer {
    padding: 0 20px;
  }

  .page-slot-games-jackpot-guide__faq-item.active .page-slot-games-jackpot-guide__faq-answer {
    padding: 15px 20px;
  }
}

/* Color Contrast Safeguards - explicitly set for dark background */
.page-slot-games-jackpot-guide__dark-section {
  background-color: #4A00B7;
  color: #ffffff; /* Forced white text */
}

.page-slot-games-jackpot-guide__dark-section .page-slot-games-jackpot-guide__section-title {
  color: #FFD700; /* Titles on dark section use auxiliary color */
}

/* Ensure content area default text is light on dark background */
.page-slot-games-jackpot-guide p,
.page-slot-games-jackpot-guide li,
.page-slot-games-jackpot-guide__card-text,
.page-slot-games-jackpot-guide__strategy-card-text {
  color: #f0f0f0;
}

.page-slot-games-jackpot-guide__card,
.page-slot-games-jackpot-guide__strategy-card,
.page-slot-games-jackpot-guide__promo-item {
  background-color: rgba(255, 255, 255, 0.08); /* Semi-transparent white on dark background */
  color: #ffffff;
}

/* Ensure images don't have color filters */
.page-slot-games-jackpot-guide img {
  filter: none; /* Explicitly remove any default filters */
}