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

:root {
  --primary-color-page: #1A202C;
  --secondary-color-page: #FFD700;
  --text-light: #ffffff;
  --text-dark: #333333;
  --border-color: #e0e0e0;
}

.page-slot-games-jackpot-tips {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for dark body background */
  background-color: var(--primary-color-page); /* Assuming body background is dark from shared */
}

.page-slot-games-jackpot-tips__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-slot-games-jackpot-tips__section-title {
  font-size: 2.5em;
  color: var(--secondary-color-page);
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-slot-games-jackpot-tips__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: var(--text-light);
}

.page-slot-games-jackpot-tips__btn-primary,
.page-slot-games-jackpot-tips__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-slot-games-jackpot-tips__btn-primary:hover {
  background-color: #e6c200; /* Darker gold for hover */
  border-color: #e6c200; /* Darker gold for hover */
}

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

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

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

.page-slot-games-jackpot-tips__cta-buttons--center {
  margin-top: 50px;
}

/* Hero Section */
.page-slot-games-jackpot-tips__hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  min-height: 70vh;
  background-color: var(--primary-color-page);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
  padding-bottom: 60px;
}

.page-slot-games-jackpot-tips__hero-content {
  flex: 1;
  max-width: 600px;
  padding: 20px;
  text-align: left;
  z-index: 1;
}

.page-slot-games-jackpot-tips__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--secondary-color-page);
  line-height: 1.2;
  font-weight: bold;
}

.page-slot-games-jackpot-tips__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--text-light);
}

.page-slot-games-jackpot-tips__hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 1;
}

.page-slot-games-jackpot-tips__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Intro Section */
.page-slot-games-jackpot-tips__intro-section {
  background-color: var(--text-light);
  color: var(--text-dark);
  padding: 80px 0;
}

.page-slot-games-jackpot-tips__intro-section .page-slot-games-jackpot-tips__section-title {
  color: var(--primary-color-page);
}

.page-slot-games-jackpot-tips__intro-section .page-slot-games-jackpot-tips__section-description {
  color: var(--text-dark);
}

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

.page-slot-games-jackpot-tips__feature-card {
  background-color: var(--text-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: var(--text-dark);
}

.page-slot-games-jackpot-tips__feature-icon {
  width: 100%; /* Ensure image fills card width */
  height: auto;
  max-height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

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

.page-slot-games-jackpot-tips__feature-text {
  font-size: 1em;
  color: var(--text-dark);
}

/* Tips Section */
.page-slot-games-jackpot-tips__tips-section {
  background-color: var(--primary-color-page);
  color: var(--text-light);
  padding: 80px 0;
}

.page-slot-games-jackpot-tips__tips-section .page-slot-games-jackpot-tips__section-description {
  color: var(--text-light);
}

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

.page-slot-games-jackpot-tips__tip-card {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for dark background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-slot-games-jackpot-tips__tip-title {
  font-size: 1.6em;
  color: var(--secondary-color-page);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-slot-games-jackpot-tips__tip-text {
  font-size: 1em;
  color: var(--text-light);
}

/* Video Section */
.page-slot-games-jackpot-tips__video-section {
  background-color: var(--text-light);
  color: var(--text-dark);
  padding: 80px 0;
}

.page-slot-games-jackpot-tips__video-section .page-slot-games-jackpot-tips__section-title {
  color: var(--primary-color-page);
}

.page-slot-games-jackpot-tips__video-section .page-slot-games-jackpot-tips__section-description {
  color: var(--text-dark);
}

.page-slot-games-jackpot-tips__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px; /* Max width for the video player */
  margin: 40px auto 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.page-slot-games-jackpot-tips__video {
  width: 100%;
  height: auto;
  display: block;
}

/* FAQ Section */
.page-slot-games-jackpot-tips__faq-section {
  background-color: var(--primary-color-page);
  color: var(--text-light);
  padding: 80px 0;
}

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

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

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

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

.page-slot-games-jackpot-tips__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

.page-slot-games-jackpot-tips__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-light);
}

.page-slot-games-jackpot-tips__faq-item.active .page-slot-games-jackpot-tips__faq-answer {
  max-height: 1000px !important; /* Sufficiently large */
  padding: 15px 25px 25px;
}

.page-slot-games-jackpot-tips__faq-answer p {
  margin-bottom: 0;
  color: var(--text-light);
}

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

.page-slot-games-jackpot-tips__cta-bottom-section .page-slot-games-jackpot-tips__section-title {
  color: var(--primary-color-page);
}

.page-slot-games-jackpot-tips__cta-bottom-section .page-slot-games-jackpot-tips__section-description {
  color: var(--text-dark);
}

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

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .page-slot-games-jackpot-tips__hero-section {
    flex-direction: column;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-slot-games-jackpot-tips__hero-content {
    max-width: 100%;
    text-align: center;
    margin-bottom: 40px;
  }

  .page-slot-games-jackpot-tips__hero-title {
    font-size: 2.8em;
  }

  .page-slot-games-jackpot-tips__hero-image-wrapper {
    padding: 0;
  }

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

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

  .page-slot-games-jackpot-tips__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-left: 15px;
    padding-right: 15px;
  }

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

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

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

  .page-slot-games-jackpot-tips__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-slot-games-jackpot-tips__btn-primary,
  .page-slot-games-jackpot-tips__btn-secondary,
  .page-slot-games-jackpot-tips a[class*="button"],
  .page-slot-games-jackpot-tips 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-tips__cta-buttons,
  .page-slot-games-jackpot-tips__button-group,
  .page-slot-games-jackpot-tips__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-direction: column;
    gap: 15px;
  }

  .page-slot-games-jackpot-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-slot-games-jackpot-tips__section,
  .page-slot-games-jackpot-tips__card,
  .page-slot-games-jackpot-tips__container,
  .page-slot-games-jackpot-tips__video-section,
  .page-slot-games-jackpot-tips__video-container,
  .page-slot-games-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-slot-games-jackpot-tips__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

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

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

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

  .page-slot-games-jackpot-tips__hero-content,
  .page-slot-games-jackpot-tips__cta-bottom-content {
    padding-left: 0;
    padding-right: 0;
  }
}

/* Dark background text color */
.page-slot-games-jackpot-tips__dark-bg {
  background-color: var(--primary-color-page);
  color: var(--text-light);
}

/* Light background text color */
.page-slot-games-jackpot-tips__light-bg {
  background-color: var(--text-light);
  color: var(--text-dark);
}