/* style/resources-13-win-jackpot-tips.css */

:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --login-button-color: #EA7C07;
  --background-color: #FFFFFF;
  --black-color: #000000;
}

.page-resources-13-win-jackpot-tips {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-color);
}

.page-resources-13-win-jackpot-tips__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
  background-color: var(--primary-color);
  color: var(--text-light);
  overflow: hidden;
  min-height: 500px;
}

.page-resources-13-win-jackpot-tips__dark-bg {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-resources-13-win-jackpot-tips__light-bg {
  background-color: var(--background-color);
  color: var(--text-dark);
}

.page-resources-13-win-jackpot-tips__hero-content {
  max-width: 800px;
  z-index: 1;
  position: relative;
}

.page-resources-13-win-jackpot-tips__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: var(--text-light);
}

.page-resources-13-win-jackpot-tips__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.8;
}

.page-resources-13-win-jackpot-tips__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-resources-13-win-jackpot-tips__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-resources-13-win-jackpot-tips__btn-primary {
  display: inline-block;
  background-color: var(--login-button-color); /* Using login color for primary action */
  color: var(--text-light);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: 2px solid transparent;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-13-win-jackpot-tips__btn-primary:hover {
  background-color: darken(var(--login-button-color), 10%);
}

.page-resources-13-win-jackpot-tips__btn-secondary {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid var(--primary-color);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-13-win-jackpot-tips__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-resources-13-win-jackpot-tips__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--background-color);
  color: var(--text-dark);
}

.page-resources-13-win-jackpot-tips__section-title {
  font-size: 2.2em;
  color: var(--primary-color);
  margin-top: 50px;
  margin-bottom: 25px;
  text-align: center;
}

.page-resources-13-win-jackpot-tips__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
  text-align: justify;
}

.page-resources-13-win-jackpot-tips__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-resources-13-win-jackpot-tips__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-resources-13-win-jackpot-tips__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-13-win-jackpot-tips__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-resources-13-win-jackpot-tips__cta-footer {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

/* FAQ Styles */
.page-resources-13-win-jackpot-tips__faq-list {
  margin-top: 40px;
}

.page-resources-13-win-jackpot-tips__faq-item {
  background-color: var(--secondary-color);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-dark);
}

.page-resources-13-win-jackpot-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: #f9f9f9;
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.3s ease;
  color: var(--text-dark);
  list-style: none; /* For details/summary */
}

.page-resources-13-win-jackpot-tips__faq-question::-webkit-details-marker {
  display: none;
}

.page-resources-13-win-jackpot-tips__faq-question:hover {
  background-color: #f0f0f0;
}

.page-resources-13-win-jackpot-tips__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--primary-color);
}

.page-resources-13-win-jackpot-tips__faq-answer {
  padding: 20px 25px;
  font-size: 1.1em;
  line-height: 1.7;
  text-align: justify;
}

.page-resources-13-win-jackpot-tips__faq-item[open] .page-resources-13-win-jackpot-tips__faq-question {
  background-color: #f0f0f0;
  border-bottom: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-13-win-jackpot-tips__hero-section {
    flex-direction: column;
    text-align: center;
    padding: 40px 15px;
    padding-top: var(--header-offset, 120px) !important; /* Mobile fixed header offset */
    min-height: 400px;
  }

  .page-resources-13-win-jackpot-tips__hero-title {
    font-size: 2em;
  }

  .page-resources-13-win-jackpot-tips__hero-description {
    font-size: 1em;
  }

  .page-resources-13-win-jackpot-tips__content-area {
    padding: 20px 15px;
  }

  .page-resources-13-win-jackpot-tips__section-title {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-resources-13-win-jackpot-tips__paragraph,
  .page-resources-13-win-jackpot-tips__list-item,
  .page-resources-13-win-jackpot-tips__faq-answer {
    font-size: 1em;
  }

  .page-resources-13-win-jackpot-tips__image {
    margin: 20px auto;
  }

  .page-resources-13-win-jackpot-tips__cta-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

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

  .page-resources-13-win-jackpot-tips__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  /* Ensure all content containers are responsive */
  .page-resources-13-win-jackpot-tips__section,
  .page-resources-13-win-jackpot-tips__card,
  .page-resources-13-win-jackpot-tips__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

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

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

  .page-resources-13-win-jackpot-tips__video-section,
  .page-resources-13-win-jackpot-tips__video-container,
  .page-resources-13-win-jackpot-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-resources-13-win-jackpot-tips__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-resources-13-win-jackpot-tips__cta-buttons,
  .page-resources-13-win-jackpot-tips__button-group,
  .page-resources-13-win-jackpot-tips__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-resources-13-win-jackpot-tips__cta-buttons {
    display: flex;
    flex-direction: column;
  }
}