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

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

.page-slot-games-jackpot-guide {
  background-color: var(--page-background);
  color: var(--page-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-slot-games-jackpot-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* body handles --header-offset */
  padding-bottom: 40px;
  overflow: hidden;
}

.page-slot-games-jackpot-guide__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for hero image */
  overflow: hidden;
  position: relative;
}

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

.page-slot-games-jackpot-guide__hero-content {
  position: relative;
  text-align: center;
  padding: 20px;
  max-width: 900px;
  margin-top: -100px; /* Overlap slightly for visual effect, but not text on image */
  background: rgba(8, 22, 15, 0.8); /* Semi-transparent background for readability */
  border-radius: 10px;
  z-index: 10;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  border: 1px solid var(--page-border-color);
}

.page-slot-games-jackpot-guide__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--page-gold-color);
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.page-slot-games-jackpot-guide__intro-text {
  font-size: 1.1rem;
  color: var(--page-text-secondary);
  margin-bottom: 30px;
}

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

.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;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-slot-games-jackpot-guide__btn-primary {
  background: var(--page-button-gradient);
  color: var(--page-text-main);
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-slot-games-jackpot-guide__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

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

.page-slot-games-jackpot-guide__btn-secondary:hover {
  background: var(--page-secondary-color);
  color: var(--page-background);
}

.page-slot-games-jackpot-guide__section {
  padding: 60px 0;
  border-bottom: 1px solid var(--page-divider-color);
}

.page-slot-games-jackpot-guide__section:last-of-type {
  border-bottom: none;
}

.page-slot-games-jackpot-guide__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--page-primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-slot-games-jackpot-guide__text-block {
  font-size: 1.05rem;
  color: var(--page-text-secondary);
  margin-bottom: 20px;
}

.page-slot-games-jackpot-guide__image-and-text {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.page-slot-games-jackpot-guide__image-and-text--reverse {
  flex-direction: row-reverse;
}

.page-slot-games-jackpot-guide__content-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  border: 1px solid var(--page-border-color);
  min-width: 200px; /* Enforce min size */
}

.page-slot-games-jackpot-guide__text-content {
  flex: 1;
  max-width: 50%;
}

.page-slot-games-jackpot-guide__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--page-secondary-color);
  margin-top: 25px;
  margin-bottom: 15px;
  font-weight: bold;
}

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

.page-slot-games-jackpot-guide__card {
  background-color: var(--page-card-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--page-border-color);
  color: var(--page-text-main);
  min-height: 250px; /* Ensure cards have some height */
}

.page-slot-games-jackpot-guide__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.page-slot-games-jackpot-guide__card-title {
  font-size: 1.5rem;
  color: var(--page-primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-slot-games-jackpot-guide__card-text {
  font-size: 1rem;
  color: var(--page-text-secondary);
}

.page-slot-games-jackpot-guide__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid var(--page-border-color);
  min-width: 200px;
  min-height: 200px;
}

.page-slot-games-jackpot-guide__cta-section {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: var(--page-deep-green);
  border-radius: 12px;
  border: 1px solid var(--page-border-color);
}

.page-slot-games-jackpot-guide__cta-text {
  font-size: 1.3rem;
  color: var(--page-text-main);
  margin-bottom: 30px;
  font-weight: bold;
}

.page-slot-games-jackpot-guide__faq-list {
  margin-top: 40px;
}

.page-slot-games-jackpot-guide__faq-item {
  background-color: var(--page-card-bg);
  border: 1px solid var(--page-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-slot-games-jackpot-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  color: var(--page-text-main);
  cursor: pointer;
  font-weight: bold;
  background-color: var(--page-deep-green);
  border-bottom: 1px solid var(--page-border-color);
  list-style: none; /* For details/summary */
}

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

.page-slot-games-jackpot-guide__faq-question:hover {
  background-color: var(--page-primary-color);
}

.page-slot-games-jackpot-guide__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  color: var(--page-gold-color);
  transition: transform 0.3s ease;
}

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

.page-slot-games-jackpot-guide__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: var(--page-text-secondary);
  border-top: 1px solid var(--page-divider-color);
  background-color: var(--page-card-bg);
}

.page-slot-games-jackpot-guide__faq-answer p {
  margin-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-slot-games-jackpot-guide__hero-content {
    margin-top: -80px;
  }

  .page-slot-games-jackpot-guide__image-and-text {
    flex-direction: column;
  }

  .page-slot-games-jackpot-guide__content-image,
  .page-slot-games-jackpot-guide__text-content {
    max-width: 100%;
    flex: none;
  }
}

@media (max-width: 768px) {
  .page-slot-games-jackpot-guide__hero-content {
    margin-top: -60px;
    padding: 15px;
  }

  .page-slot-games-jackpot-guide__main-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

  .page-slot-games-jackpot-guide__intro-text {
    font-size: 1rem;
  }

  .page-slot-games-jackpot-guide__cta-buttons {
    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: 0.95rem;
  }

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

  .page-slot-games-jackpot-guide__section-title {
    font-size: clamp(1.6rem, 4.5vw, 2.2rem);
    margin-bottom: 30px;
  }

  .page-slot-games-jackpot-guide__text-block {
    font-size: 0.95rem;
  }

  .page-slot-games-jackpot-guide__sub-title {
    font-size: clamp(1.2rem, 3.5vw, 1.6rem);
  }

  .page-slot-games-jackpot-guide__tips-grid,
  .page-slot-games-jackpot-guide__types-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .page-slot-games-jackpot-guide__card-title {
    font-size: 1.3rem;
  }

  .page-slot-games-jackpot-guide__card-text {
    font-size: 0.9rem;
  }

  .page-slot-games-jackpot-guide__cta-section {
    padding: 30px 20px;
  }

  .page-slot-games-jackpot-guide__cta-text {
    font-size: 1.1rem;
  }

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

  .page-slot-games-jackpot-guide__faq-toggle {
    font-size: 1.5rem;
  }

  .page-slot-games-jackpot-guide__faq-answer {
    padding: 15px 20px;
    font-size: 0.9rem;
  }

  /* Mobile image, video, container 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__section,
  .page-slot-games-jackpot-guide__card,
  .page-slot-games-jackpot-guide__container,
  .page-slot-games-jackpot-guide__hero-section,
  .page-slot-games-jackpot-guide__hero-image-wrapper,
  .page-slot-games-jackpot-guide__hero-content,
  .page-slot-games-jackpot-guide__image-and-text,
  .page-slot-games-jackpot-guide__text-content,
  .page-slot-games-jackpot-guide__content-image,
  .page-slot-games-jackpot-guide__cta-buttons,
  .page-slot-games-jackpot-guide__cta-section,
  .page-slot-games-jackpot-guide__faq-item,
  .page-slot-games-jackpot-guide__faq-question,
  .page-slot-games-jackpot-guide__faq-answer {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .page-slot-games-jackpot-guide__container,
  .page-slot-games-jackpot-guide__hero-content,
  .page-slot-games-jackpot-guide__cta-section {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-slot-games-jackpot-guide__image-and-text {
    gap: 20px;
  }

  .page-slot-games-jackpot-guide__content-image {
    min-width: unset;
  }

  .page-slot-games-jackpot-guide__faq-item[open] .page-slot-games-jackpot-guide__faq-question {
    border-bottom: 1px solid var(--page-border-color) !important;
  }

  .page-slot-games-jackpot-guide__faq-answer {
    border-top: none !important;
  }
}