/* style/resources-qq88-game-strategy-guide.css */
.page-resources-qq88-game-strategy-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #000000; /* Body background is dark, so main content background is dark */
  color: #ffffff; /* Text color is light for contrast */
}

.page-resources-qq88-game-strategy-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-qq88-game-strategy-guide__hero-section {
  position: relative;
  text-align: center;
  padding: 100px 20px;
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

.page-resources-qq88-game-strategy-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.2; /* Slightly transparent for text readability */
}

.page-resources-qq88-game-strategy-guide__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
  z-index: 0;
}

.page-resources-qq88-game-strategy-guide__hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  color: #ffffff;
}

.page-resources-qq88-game-strategy-guide__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #26A9E0; /* Brand color for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-qq88-game-strategy-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-qq88-game-strategy-guide__section-title {
  font-size: 2.2em;
  color: #26A9E0; /* Brand color for section titles */
  text-align: center;
  margin: 60px 0 30px;
}

.page-resources-qq88-game-strategy-guide__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #f0f0f0;
}

.page-resources-qq88-game-strategy-guide__content-area {
  padding: 40px 0;
}

.page-resources-qq88-game-strategy-guide__card {
  background-color: rgba(255, 255, 255, 0.05); /* Semi-transparent white on dark background */
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff; /* Light text for contrast */
}

.page-resources-qq88-game-strategy-guide__card-title {
  font-size: 1.5em;
  color: #26A9E0; /* Brand color for card titles */
  margin-bottom: 15px;
}

.page-resources-qq88-game-strategy-guide__card-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-resources-qq88-game-strategy-guide__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-resources-qq88-game-strategy-guide__list li {
  margin-bottom: 8px;
}

.page-resources-qq88-game-strategy-guide__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 20px;
  transition: background-color 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-qq88-game-strategy-guide__btn-primary:hover {
  background-color: #1a7eb3;
}

.page-resources-qq88-game-strategy-guide__video-section {
  padding: 60px 20px;
  background-color: #000000;
  text-align: center;
}

.page-resources-qq88-game-strategy-guide__video-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  background-color: #000000;
  border-radius: 8px;
  overflow: hidden;
}

.page-resources-qq88-game-strategy-guide__video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.page-resources-qq88-game-strategy-guide__video-overlay-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 15px 30px;
  background-color: #EA7C07; /* Login color for CTA */
  color: #FFFFFF;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  z-index: 2;
  cursor: pointer;
  display: none; /* Controlled by JS */
  transition: background-color 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-qq88-game-strategy-guide__video-overlay-button:hover {
  background-color: #c76706;
}

.page-resources-qq88-game-strategy-guide__faq-section {
  padding: 60px 20px;
  background-color: #000000;
}

.page-resources-qq88-game-strategy-guide__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-resources-qq88-game-strategy-guide__faq-item {
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.05);
}

.page-resources-qq88-game-strategy-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
}

.page-resources-qq88-game-strategy-guide__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-resources-qq88-game-strategy-guide__faq-question h3 {
  margin: 0;
  color: #26A9E0;
  font-size: 1.1em;
}

.page-resources-qq88-game-strategy-guide__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #FFFFFF;
  transition: transform 0.3s ease;
}

.page-resources-qq88-game-strategy-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  color: #ffffff;
}

.page-resources-qq88-game-strategy-guide__faq-item.active .page-resources-qq88-game-strategy-guide__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 20px;
}

.page-resources-qq88-game-strategy-guide__faq-item.active .page-resources-qq88-game-strategy-guide__faq-toggle {
  transform: rotate(45deg);
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-resources-qq88-game-strategy-guide__hero-title {
    font-size: 2.2em;
  }
  .page-resources-qq88-game-strategy-guide__hero-description {
    font-size: 1em;
  }
  .page-resources-qq88-game-strategy-guide__section-title {
    font-size: 1.8em;
  }
  .page-resources-qq88-game-strategy-guide__card-title {
    font-size: 1.3em;
  }
}

@media (max-width: 768px) {
  .page-resources-qq88-game-strategy-guide {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-resources-qq88-game-strategy-guide__hero-section {
    padding: 80px 15px;
    min-height: 500px;
  }
  .page-resources-qq88-game-strategy-guide__hero-title {
    font-size: 1.8em;
  }
  .page-resources-qq88-game-strategy-guide__hero-description {
    font-size: 0.9em;
  }
  .page-resources-qq88-game-strategy-guide__btn-primary {
    padding: 10px 20px;
    font-size: 0.9em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-resources-qq88-game-strategy-guide__section-title {
    font-size: 1.5em;
    margin: 40px 0 25px;
  }
  .page-resources-qq88-game-strategy-guide__section-description {
    font-size: 0.9em;
    margin-bottom: 30px;
  }
  .page-resources-qq88-game-strategy-guide__card {
    padding: 20px;
    margin-bottom: 20px;
  }
  .page-resources-qq88-game-strategy-guide__card-title {
    font-size: 1.2em;
  }
  .page-resources-qq88-game-strategy-guide__card-image,
  .page-resources-qq88-game-strategy-guide__video,
  .page-resources-qq88-game-strategy-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-qq88-game-strategy-guide__container,
  .page-resources-qq88-game-strategy-guide__video-wrapper,
  .page-resources-qq88-game-strategy-guide__card,
  .page-resources-qq88-game-strategy-guide__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-resources-qq88-game-strategy-guide__video-section {
    padding-top: var(--header-offset, 120px) !important; /* Ensure video section is below header */
    padding-left: 0;
    padding-right: 0;
  }
  .page-resources-qq88-game-strategy-guide__video-overlay-button {
    padding: 12px 25px;
    font-size: 1em;
    max-width: 90% !important;
    width: auto !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-resources-qq88-game-strategy-guide__faq-question h3 {
    font-size: 1em;
  }
}