.page-game-strategy-guides {
  color: #ffffff; /* Default text color for dark body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: transparent; /* Let shared.css body background take effect */
}

.page-game-strategy-guides__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-strategy-guides__hero-banner {
  position: relative;
  padding: 80px 0; /* Aesthetic padding, assuming body padding-top is handled by shared.css */
  background: linear-gradient(135deg, #FFD7001A, #B222221A); /* Subtle gradient overlay */
  text-align: center;
  padding-top: 60px; /* Reduced for aesthetic, assuming shared.css handles main offset */
  padding-bottom: 60px;
}

.page-game-strategy-guides__hero-content {
  z-index: 1;
  position: relative;
}

.page-game-strategy-guides__main-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold primary color */
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: 700;
}

.page-game-strategy-guides__intro-text {
  font-size: 1.2em;
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-game-strategy-guides__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold primary color */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
  font-weight: 700;
}

.page-game-strategy-guides__overview-section,
.page-game-strategy-guides__game-strategies-section,
.page-game-strategy-guides__general-tips-section,
.page-game-strategy-guides__faq-section,
.page-game-strategy-guides__cta-section {
  padding: 60px 0;
  background-color: rgba(0, 0, 0, 0.4); /* Dark semi-transparent background for sections */
  margin-bottom: 30px;
  border-radius: 8px;
}

.page-game-strategy-guides__content-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.page-game-strategy-guides__game-strategy-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 50px;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-game-strategy-guides__game-strategy-item:nth-child(even) {
  flex-direction: row-reverse; /* Alternate image and text */
}

.page-game-strategy-guides__game-subtitle {
  font-size: 2em;
  color: #B22222; /* Deep red auxiliary color */
  margin-bottom: 25px;
  font-weight: 600;
  text-align: center;
  width: 100%;
}

.page-game-strategy-guides__game-strategy-item .page-game-strategy-guides__game-subtitle {
  text-align: left;
  margin-top: 0;
}

.page-game-strategy-guides__text-content {
  flex: 1;
  color: #f0f0f0;
}

.page-game-strategy-guides__text-content p {
  margin-bottom: 15px;
  color: #f0f0f0;
}

.page-game-strategy-guides__text-content strong {
  color: #FFD700;
}

.page-game-strategy-guides__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
  color: #f0f0f0;
}

.page-game-strategy-guides__list li {
  margin-bottom: 10px;
  color: #f0f0f0;
}

.page-game-strategy-guides__list li strong {
  color: #FFD700;
}

.page-game-strategy-guides__image--full {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-game-strategy-guides__image--left,
.page-game-strategy-guides__image--right {
  width: 40%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

/* Buttons */
.page-game-strategy-guides__btn-primary,
.page-game-strategy-guides__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-game-strategy-guides__btn-primary {
  background-color: #FFD700;
  color: #000000; /* Ensure contrast for gold background */
  border: 2px solid #FFD700;
}

.page-game-strategy-guides__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-game-strategy-guides__btn-secondary {
  background-color: #B22222;
  color: #ffffff;
  border: 2px solid #B22222;
}

.page-game-strategy-guides__btn-secondary:hover {
  background-color: #8c1b1b;
  border-color: #8c1b1b;
}

.page-game-strategy-guides__cta-section {
  text-align: center;
}

.page-game-strategy-guides__cta-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-game-strategy-guides__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* FAQ styles */
.page-game-strategy-guides__faq-list {
  margin-top: 30px;
}

.page-game-strategy-guides__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-game-strategy-guides__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: rgba(255, 215, 0, 0.1);
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease;
  position: relative;
}

.page-game-strategy-guides__faq-question:hover {
  background: rgba(255, 215, 0, 0.2);
}

.page-game-strategy-guides__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  color: #FFD700; /* Gold primary color for questions */
  pointer-events: none;
}

.page-game-strategy-guides__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  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-game-strategy-guides__faq-item.active .page-game-strategy-guides__faq-toggle {
  color: #ffffff;
  transform: rotate(45deg); /* Change to X or rotate for active state */
}

.page-game-strategy-guides__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  color: #f0f0f0;
}

.page-game-strategy-guides__faq-item.active .page-game-strategy-guides__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
}

.page-game-strategy-guides__faq-answer p {
  margin: 0;
  color: #f0f0f0;
}

.page-game-strategy-guides__faq-answer a {
  color: #FFD700;
  text-decoration: underline;
}

/* General image styling to prevent overflow */
.page-game-strategy-guides img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-game-strategy-guides__main-title {
    font-size: 2.5em;
  }

  .page-game-strategy-guides__section-title {
    font-size: 2em;
  }

  .page-game-strategy-guides__game-strategy-item {
    flex-direction: column;
    align-items: center;
  }

  .page-game-strategy-guides__game-strategy-item:nth-child(even) {
    flex-direction: column;
  }

  .page-game-strategy-guides__image--left,
  .page-game-strategy-guides__image--right {
    width: 80%;
    margin-bottom: 20px;
  }
  .page-game-strategy-guides__game-strategy-item .page-game-strategy-guides__game-subtitle {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-game-strategy-guides__container {
    padding: 0 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .page-game-strategy-guides__hero-banner {
    padding: 40px 0;
  }

  .page-game-strategy-guides__main-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }

  .page-game-strategy-guides__intro-text {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-game-strategy-guides__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
    padding-top: 30px;
  }

  .page-game-strategy-guides__overview-section,
  .page-game-strategy-guides__game-strategies-section,
  .page-game-strategy-guides__general-tips-section,
  .page-game-strategy-guides__faq-section,
  .page-game-strategy-guides__cta-section {
    padding: 40px 0;
    margin-bottom: 20px;
  }

  .page-game-strategy-guides__game-strategy-item {
    padding: 20px;
    margin-bottom: 30px;
  }

  .page-game-strategy-guides__game-subtitle {
    font-size: 1.5em;
    margin-bottom: 20px;
  }

  .page-game-strategy-guides__image--full,
  .page-game-strategy-guides__image--left,
  .page-game-strategy-guides__image--right {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    margin-bottom: 20px;
  }

  .page-game-strategy-guides img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-game-strategy-guides__list {
    padding-left: 15px;
  }

  .page-game-strategy-guides__cta-text {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-game-strategy-guides__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
  }

  .page-game-strategy-guides__btn-primary,
  .page-game-strategy-guides__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 15px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-game-strategy-guides__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }

  .page-game-strategy-guides__faq-question h3 {
    font-size: 1em;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }

  .page-game-strategy-guides__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }

  .page-game-strategy-guides__faq-answer {
    padding: 0 15px;
  }

  .page-game-strategy-guides__faq-item.active .page-game-strategy-guides__faq-answer {
    padding: 15px !important;
  }
}