.page-resources-ae888-game-strategy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

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

.page-resources-ae888-game-strategy__hero-section {
  position: relative;
  padding: 80px 0;
  text-align: center;
  background-color: #8B0000; /* Auxiliary color for hero section */
  color: #ffffff;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-resources-ae888-game-strategy__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  line-height: 1.2;
}

.page-resources-ae888-game-strategy__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-ae888-game-strategy__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-ae888-game-strategy__cta-button {
  display: inline-block;
  padding: 15px 35px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow long words to break */
  max-width: 100%;
  box-sizing: border-box;
}

.page-resources-ae888-game-strategy__btn-primary {
  background-color: #FFD700; /* Gold button */
  color: #8B0000; /* Dark red text for contrast */
  border: 2px solid #FFD700;
}

.page-resources-ae888-game-strategy__btn-primary:hover {
  background-color: #e6c200;
  color: #6a0000;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-resources-ae888-game-strategy__btn-secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text for secondary button */
  border: 2px solid #FFD700;
}

.page-resources-ae888-game-strategy__btn-secondary:hover {
  background-color: #FFD700;
  color: #8B0000;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-resources-ae888-game-strategy__content-section {
  padding: 60px 0;
}

.page-resources-ae888-game-strategy__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  text-align: center;
  color: #FFD700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-resources-ae888-game-strategy__dark-bg {
  background-color: #1a1a1a; /* Slightly lighter dark background for sections */
  color: #ffffff;
}

.page-resources-ae888-game-strategy__light-bg {
  background-color: #f0f0f0;
  color: #333333;
}

.page-resources-ae888-game-strategy p {
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-resources-ae888-game-strategy a {
  color: #FFD700;
  text-decoration: none;
}

.page-resources-ae888-game-strategy a:hover {
  text-decoration: underline;
}

.page-resources-ae888-game-strategy__card {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white for cards on dark bg */
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.2);
  color: #ffffff;
}

.page-resources-ae888-game-strategy__light-bg .page-resources-ae888-game-strategy__card {
  background-color: #ffffff;
  color: #333333;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-resources-ae888-game-strategy__card-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-resources-ae888-game-strategy__light-bg .page-resources-ae888-game-strategy__card-title {
  color: #8B0000;
}

.page-resources-ae888-game-strategy__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 15px;
}

.page-resources-ae888-game-strategy__list li {
  margin-bottom: 8px;
  font-size: 1.05em;
}

.page-resources-ae888-game-strategy__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-ae888-game-strategy__faq-section {
  padding: 60px 0;
}

.page-resources-ae888-game-strategy__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-ae888-game-strategy__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-resources-ae888-game-strategy__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 15px;
  opacity: 0;
  background: #f9f9f9;
  color: #333333;
}

.page-resources-ae888-game-strategy__faq-item.active .page-resources-ae888-game-strategy__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  border-radius: 0 0 5px 5px;
}

.page-resources-ae888-game-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: #333333;
}

.page-resources-ae888-game-strategy__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-resources-ae888-game-strategy__faq-question:active {
  background: #eeeeee;
}

.page-resources-ae888-game-strategy__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #8B0000; /* Dark red for FAQ question titles */
}

.page-resources-ae888-game-strategy__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #666;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-resources-ae888-game-strategy__faq-item.active .page-resources-ae888-game-strategy__faq-toggle {
  color: #333;
  transform: rotate(180deg);
}

.page-resources-ae888-game-strategy__cta-section {
  background-color: #8B0000; /* Auxiliary color for CTA section */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-resources-ae888-game-strategy__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-resources-ae888-game-strategy__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-ae888-game-strategy__main-title {
    font-size: 2.8em;
  }

  .page-resources-ae888-game-strategy__section-title,
  .page-resources-ae888-game-strategy__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-resources-ae888-game-strategy__hero-section {
    padding: 60px 0;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-resources-ae888-game-strategy__main-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

  .page-resources-ae888-game-strategy__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-resources-ae888-game-strategy__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-resources-ae888-game-strategy__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 25px;
    font-size: 1em;
    box-sizing: border-box !important;
  }

  .page-resources-ae888-game-strategy__content-section,
  .page-resources-ae888-game-strategy__faq-section,
  .page-resources-ae888-game-strategy__cta-section {
    padding: 40px 0;
  }

  .page-resources-ae888-game-strategy__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-resources-ae888-game-strategy__section-title,
  .page-resources-ae888-game-strategy__cta-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .page-resources-ae888-game-strategy p,
  .page-resources-ae888-game-strategy__list li {
    font-size: 0.95em;
  }

  .page-resources-ae888-game-strategy__card {
    padding: 20px;
    margin-bottom: 20px;
  }

  .page-resources-ae888-game-strategy__card-title {
    font-size: 1.4em;
    margin-bottom: 10px;
  }

  .page-resources-ae888-game-strategy__image {
    margin: 20px auto;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-resources-ae888-game-strategy__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  
  .page-resources-ae888-game-strategy__faq-question h3 {
    font-size: 1em;
    width: calc(100% - 40px);
  }
  
  .page-resources-ae888-game-strategy__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  
  .page-resources-ae888-game-strategy__faq-answer {
    padding: 0 15px;
  }
  
  .page-resources-ae888-game-strategy__faq-item.active .page-resources-ae888-game-strategy__faq-answer {
    padding: 15px !important;
  }

  .page-resources-ae888-game-strategy__cta-title {
    font-size: 2.2em;
  }

  .page-resources-ae888-game-strategy__cta-description {
    font-size: 1em;
  }

  .page-resources-ae888-game-strategy__cta-container {
    padding: 0 15px;
  }
}