/* style/jackpot-slots-tips.css */

/* Custom Colors */
:root {
  --page-jackpot-slots-tips-card-bg: #11271B;
  --page-jackpot-slots-tips-background: #08160F;
  --page-jackpot-slots-tips-text-main: #F2FFF6;
  --page-jackpot-slots-tips-text-secondary: #A7D9B8;
  --page-jackpot-slots-tips-border: #2E7A4E;
  --page-jackpot-slots-tips-glow: #57E38D;
  --page-jackpot-slots-tips-gold: #F2C14E;
  --page-jackpot-slots-tips-divider: #1E3A2A;
  --page-jackpot-slots-tips-deep-green: #0A4B2C;
}

.page-jackpot-slots-tips {
  color: var(--page-jackpot-slots-tips-text-main); /* Ensure text is visible on dark body background */
  background-color: var(--page-jackpot-slots-tips-background);
}

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

.page-jackpot-slots-tips__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.5); /* Slightly darken image for text readability */
}

.page-jackpot-slots-tips__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  color: var(--page-jackpot-slots-tips-text-main);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.page-jackpot-slots-tips__main-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--page-jackpot-slots-tips-gold);
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.7);
}

.page-jackpot-slots-tips__hero-description {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--page-jackpot-slots-tips-text-secondary);
  max-width: 700px;
  line-height: 1.6;
}

.page-jackpot-slots-tips__cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.page-jackpot-slots-tips__btn-primary,
.page-jackpot-slots-tips__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
  max-width: 100%;
}

.page-jackpot-slots-tips__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-jackpot-slots-tips__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 15px var(--page-jackpot-slots-tips-glow);
}

.page-jackpot-slots-tips__btn-secondary {
  background: transparent;
  color: var(--page-jackpot-slots-tips-gold);
  border: 2px solid var(--page-jackpot-slots-tips-gold);
}

.page-jackpot-slots-tips__btn-secondary:hover {
  background: var(--page-jackpot-slots-tips-gold);
  color: var(--page-jackpot-slots-tips-background);
  box-shadow: 0 0 15px var(--page-jackpot-slots-tips-gold);
}

.page-jackpot-slots-tips__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--page-jackpot-slots-tips-background);
  color: var(--page-jackpot-slots-tips-text-main);
}

.page-jackpot-slots-tips__container {
  padding: 20px 0;
}

.page-jackpot-slots-tips__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--page-jackpot-slots-tips-gold);
  text-align: center;
  margin-bottom: 30px;
  margin-top: 50px;
  position: relative;
}

.page-jackpot-slots-tips__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--page-jackpot-slots-tips-gold);
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-jackpot-slots-tips__sub-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--page-jackpot-slots-tips-text-main);
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid var(--page-jackpot-slots-tips-gold);
  padding-left: 15px;
}

.page-jackpot-slots-tips__sub-sub-title {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--page-jackpot-slots-tips-text-secondary);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-jackpot-slots-tips__text-block {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 15px;
  color: var(--page-jackpot-slots-tips-text-secondary);
}

.page-jackpot-slots-tips__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--page-jackpot-slots-tips-text-secondary);
}

.page-jackpot-slots-tips__list-item {
  margin-bottom: 10px;
  line-height: 1.6;
}

.page-jackpot-slots-tips__link {
  color: var(--page-jackpot-slots-tips-gold);
  text-decoration: underline;
}

.page-jackpot-slots-tips__link:hover {
  color: var(--page-jackpot-slots-tips-glow);
}

/* FAQ Section */
.page-jackpot-slots-tips__faq-list {
  margin-top: 40px;
}

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

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

.page-jackpot-slots-tips__faq-question::-webkit-details-marker {
  display: none;
}

.page-jackpot-slots-tips__faq-question:hover {
  background-color: var(--page-jackpot-slots-tips-border);
}

.page-jackpot-slots-tips__faq-qtext {
  flex-grow: 1;
}

.page-jackpot-slots-tips__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  margin-left: 15px;
  color: var(--page-jackpot-slots-tips-gold);
}

.page-jackpot-slots-tips__faq-item[open] .page-jackpot-slots-tips__faq-toggle {
  content: '−';
}

.page-jackpot-slots-tips__faq-answer {
  padding: 15px 25px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--page-jackpot-slots-tips-text-secondary);
}

.page-jackpot-slots-tips__faq-answer p {
  margin-bottom: 0;
}

.page-jackpot-slots-tips__cta-buttons--bottom {
  margin-top: 40px;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-jackpot-slots-tips__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* body handles --header-offset, this is for visual spacing */
  }

  .page-jackpot-slots-tips__main-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .page-jackpot-slots-tips__hero-description {
    font-size: clamp(0.9rem, 3.5vw, 1.1rem);
  }

  .page-jackpot-slots-tips__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }

  .page-jackpot-slots-tips__btn-primary,
  .page-jackpot-slots-tips__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1rem !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }

  .page-jackpot-slots-tips__content-area {
    padding: 30px 15px;
  }

  .page-jackpot-slots-tips__section, 
  .page-jackpot-slots-tips__card, 
  .page-jackpot-slots-tips__container, 
  .page-jackpot-slots-tips__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-jackpot-slots-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-jackpot-slots-tips video,
  .page-jackpot-slots-tips__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-jackpot-slots-tips__video-section,
  .page-jackpot-slots-tips__video-container,
  .page-jackpot-slots-tips__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-jackpot-slots-tips__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-jackpot-slots-tips__faq-answer {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

/* Ensure images in content areas are not small */
.page-jackpot-slots-tips img:not(.page-jackpot-slots-tips__hero-image) {
  min-width: 200px;
  min-height: 200px;
  width: 100%; /* For content images to fill container */
  height: auto;
  object-fit: cover;
  margin: 20px 0;
  border-radius: 8px;
}

/* No CSS filters on images */
.page-jackpot-slots-tips img {
  filter: none; /* Reset any potential filters */
}

/* Hero image specific filter */
.page-jackpot-slots-tips__hero-image {
  filter: brightness(0.5); /* Allowed for background effect */
}