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

:root {
  --qh8win-green-main: #11A84E;
  --qh8win-green-accent: #22C768;
  --qh8win-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --qh8win-card-bg: #11271B;
  --qh8win-bg-primary: #08160F;
  --qh8win-text-main: #F2FFF6;
  --qh8win-text-secondary: #A7D9B8;
  --qh8win-border: #2E7A4E;
  --qh8win-glow: #57E38D;
  --qh8win-gold: #F2C14E;
  --qh8win-divider: #1E3A2A;
  --qh8win-deep-green: #0A4B2C;
}

.page-slot-games-jackpot-strategy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--qh8win-text-main); /* Default text color for dark background */
  background-color: var(--qh8win-bg-primary); /* Default background color for the page */
}

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

.page-slot-games-jackpot-strategy__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: var(--qh8win-gold); /* Using gold for main titles */
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-slot-games-jackpot-strategy__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive H1 font size */
  font-weight: 800;
  color: var(--qh8win-gold); /* Gold for main H1 */
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games-jackpot-strategy__description {
  font-size: 1.1em;
  color: var(--qh8win-text-secondary);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-slot-games-jackpot-strategy__text-block {
  font-size: 1.05em;
  color: var(--qh8win-text-main);
  margin-bottom: 20px;
}

.page-slot-games-jackpot-strategy__text-main {
  color: var(--qh8win-text-main);
}

.page-slot-games-jackpot-strategy__text-secondary {
  color: var(--qh8win-text-secondary);
}

/* Buttons */
.page-slot-games-jackpot-strategy__btn-primary,
.page-slot-games-jackpot-strategy__btn-secondary {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
}

.page-slot-games-jackpot-strategy__btn-primary {
  background: var(--qh8win-button-gradient);
  color: #ffffff; /* White text for primary button */
  border: none;
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

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

.page-slot-games-jackpot-strategy__btn-secondary {
  background: transparent;
  color: var(--qh8win-green-accent);
  border: 2px solid var(--qh8win-green-accent);
}

.page-slot-games-jackpot-strategy__btn-secondary:hover {
  background: var(--qh8win-green-accent);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Hero Section */
.page-slot-games-jackpot-strategy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  min-height: 600px;
  overflow: hidden;
  background-color: var(--qh8win-bg-primary);
}

.page-slot-games-jackpot-strategy__hero-image-wrapper {
  position: relative;
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px; /* Space between image and content */
}

.page-slot-games-jackpot-strategy__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  max-width: 100%; /* Ensure image fits container */
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.page-slot-games-jackpot-strategy__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

/* Intro Section */
.page-slot-games-jackpot-strategy__intro-section {
  padding: 60px 0;
  background-color: var(--qh8win-bg-primary);
}

/* Mechanics Section */
.page-slot-games-jackpot-strategy__mechanics-section {
  padding: 60px 0;
  background-color: var(--qh8win-card-bg); /* Darker background for card section */
}

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

.page-slot-games-jackpot-strategy__card {
  background-color: var(--qh8win-bg-primary);
  border: 1px solid var(--qh8win-border);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-slot-games-jackpot-strategy__card-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-slot-games-jackpot-strategy__card-title {
  font-size: 1.6em;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--qh8win-gold);
}

.page-slot-games-jackpot-strategy__card-text {
  font-size: 1em;
  color: var(--qh8win-text-secondary);
}

/* Strategy Guide Section */
.page-slot-games-jackpot-strategy__strategy-guide {
  padding: 60px 0;
  background-color: var(--qh8win-bg-primary);
}

.page-slot-games-jackpot-strategy__strategy-item {
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-slot-games-jackpot-strategy__strategy-item:nth-child(even) {
  flex-direction: column-reverse; /* Alternate image/text order */
}

.page-slot-games-jackpot-strategy__strategy-subtitle {
  font-size: 2em;
  font-weight: 700;
  color: var(--qh8win-green-accent);
  margin-bottom: 20px;
}

.page-slot-games-jackpot-strategy__strategy-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  margin: 30px 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  min-width: 200px;
  min-height: 200px;
}

/* qh8 win Slots Section */
.page-slot-games-jackpot-strategy__qh8win-slots-section {
  padding: 60px 0;
  background-color: var(--qh8win-card-bg);
}

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

.page-slot-games-jackpot-strategy__slot-card {
  background-color: var(--qh8win-bg-primary);
  border: 1px solid var(--qh8win-border);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-slot-games-jackpot-strategy__slot-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
}

.page-slot-games-jackpot-strategy__slot-title {
  font-size: 1.4em;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--qh8win-gold);
}

.page-slot-games-jackpot-strategy__slot-description {
  font-size: 0.95em;
  color: var(--qh8win-text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Promotions Section */
.page-slot-games-jackpot-strategy__promotions-section {
  padding: 60px 0;
  background-color: var(--qh8win-bg-primary);
  text-align: center;
}

/* FAQ Section */
.page-slot-games-jackpot-strategy__faq-section {
  padding: 60px 0;
  background-color: var(--qh8win-card-bg);
}

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

.page-slot-games-jackpot-strategy__faq-item {
  background-color: var(--qh8win-bg-primary);
  border: 1px solid var(--qh8win-border);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-slot-games-jackpot-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: 600;
  color: var(--qh8win-text-main);
  cursor: pointer;
  background-color: var(--qh8win-card-bg);
  border-bottom: 1px solid var(--qh8win-divider);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-slot-games-jackpot-strategy__faq-question::-webkit-details-marker {
  display: none; /* For details/summary */
}

.page-slot-games-jackpot-strategy__faq-question:hover {
  background-color: var(--qh8win-deep-green);
}

.page-slot-games-jackpot-strategy__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--qh8win-green-accent);
  transition: transform 0.3s ease;
}

.page-slot-games-jackpot-strategy__faq-item[open] .page-slot-games-jackpot-strategy__faq-toggle {
  transform: rotate(45deg);
}

.page-slot-games-jackpot-strategy__faq-answer {
  padding: 15px 25px;
  font-size: 1em;
  color: var(--qh8win-text-secondary);
  background-color: var(--qh8win-bg-primary);
}

/* CTA Section */
.page-slot-games-jackpot-strategy__cta-section {
  padding: 80px 0;
  background-color: var(--qh8win-deep-green);
  text-align: center;
}

.page-slot-games-jackpot-strategy__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

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

  .page-slot-games-jackpot-strategy__card-title {
    font-size: 1.4em;
  }

  .page-slot-games-jackpot-strategy__strategy-subtitle {
    font-size: 1.8em;
  }
}

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

  .page-slot-games-jackpot-strategy__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-slot-games-jackpot-strategy__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* body already handles header offset */
  }

  .page-slot-games-jackpot-strategy__hero-image-wrapper {
    margin-bottom: 20px;
  }

  .page-slot-games-jackpot-strategy__hero-image,
  .page-slot-games-jackpot-strategy__card-image,
  .page-slot-games-jackpot-strategy__strategy-image,
  .page-slot-games-jackpot-strategy__slot-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-slot-games-jackpot-strategy__section,
  .page-slot-games-jackpot-strategy__card,
  .page-slot-games-jackpot-strategy__container,
  .page-slot-games-jackpot-strategy__hero-section,
  .page-slot-games-jackpot-strategy__intro-section,
  .page-slot-games-jackpot-strategy__mechanics-section,
  .page-slot-games-jackpot-strategy__strategy-guide,
  .page-slot-games-jackpot-strategy__qh8win-slots-section,
  .page-slot-games-jackpot-strategy__promotions-section,
  .page-slot-games-jackpot-strategy__faq-section,
  .page-slot-games-jackpot-strategy__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-slot-games-jackpot-strategy__grid,
  .page-slot-games-jackpot-strategy__slot-carousel {
    grid-template-columns: 1fr;
  }

  .page-slot-games-jackpot-strategy__card {
    padding: 20px;
  }

  .page-slot-games-jackpot-strategy__strategy-item:nth-child(even) {
    flex-direction: column; /* Reset order for mobile */
  }

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

  .page-slot-games-jackpot-strategy__btn-primary,
  .page-slot-games-jackpot-strategy__btn-secondary,
  .page-slot-games-jackpot-strategy a[class*="button"],
  .page-slot-games-jackpot-strategy a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-slot-games-jackpot-strategy__faq-answer {
    padding: 10px 20px;
  }

  .page-slot-games-jackpot-strategy__section-title {
    font-size: 1.8em;
  }

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

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