.page-game-strategy-guides {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #0a0a0a; /* Ensure consistency with shared.css body background */
}

.page-game-strategy-guides__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 40px;
  padding-top: var(--header-offset, 120px); /* Ensure spacing below fixed header */
  background: linear-gradient(135deg, #017439, #004d2a);
  color: #ffffff;
  overflow: hidden;
}

.page-game-strategy-guides__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-game-strategy-guides__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  filter: grayscale(50%);
  /* No filter to change color, only for visual effect compatible with brand */
}

.page-game-strategy-guides__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
  border-radius: 10px;
}

.page-game-strategy-guides__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFFF00; /* Yellow for prominence, good contrast with dark green */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-strategy-guides__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #ffffff;
}

.page-game-strategy-guides__btn-primary,
.page-game-strategy-guides__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
}

.page-game-strategy-guides__btn-primary {
  background-color: #C30808; /* Register/Login button color */
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #C30808;
}

.page-game-strategy-guides__btn-primary:hover {
  background-color: #e02a2a;
  transform: translateY(-2px);
}

.page-game-strategy-guides__btn-secondary {
  background-color: transparent;
  color: #017439; /* Brand color */
  border: 2px solid #017439;
  margin-left: 20px;
}

.page-game-strategy-guides__btn-secondary:hover {
  background-color: #017439;
  color: #ffffff;
  transform: translateY(-2px);
}

.page-game-strategy-guides__content-area,
.page-game-strategy-guides__section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
}

.page-game-strategy-guides__light-bg {
  background-color: #ffffff;
  color: #333333; /* Dark text for light background */
}

.page-game-strategy-guides__dark-bg {
  background-color: #0a0a0a; /* Consistent with body background */
  color: #ffffff;
}

.page-game-strategy-guides__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #017439; /* Brand color for titles on light background */
}

.page-game-strategy-guides__dark-bg .page-game-strategy-guides__section-title {
  color: #FFFF00; /* Yellow for titles on dark background */
}

.page-game-strategy-guides__paragraph {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-strategy-guides__grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-strategy-guides__card {
  background: #f8f8f8;
  color: #333333;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-game-strategy-guides__dark-bg .page-game-strategy-guides__card {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-game-strategy-guides__card:hover {
  transform: translateY(-5px);
}

.page-game-strategy-guides__card-title {
  font-size: 1.6em;
  color: #017439;
  margin-bottom: 15px;
}

.page-game-strategy-guides__dark-bg .page-game-strategy-guides__card-title {
  color: #FFFF00;
}

.page-game-strategy-guides__card-text {
  font-size: 1em;
  color: #555555;
}

.page-game-strategy-guides__dark-bg .page-game-strategy-guides__card-text {
  color: #cccccc;
}

.page-game-strategy-guides__game-strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.page-game-strategy-guides__game-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;
}

.page-game-strategy-guides__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-game-strategy-guides__game-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-game-strategy-guides__game-card-title {
  font-size: 1.8em;
  color: #FFFF00;
  padding: 20px 20px 10px;
}

.page-game-strategy-guides__game-card-title a {
  color: #FFFF00;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-game-strategy-guides__game-card-title a:hover {
  color: #017439;
}

.page-game-strategy-guides__game-card-list {
  list-style: none;
  padding: 0 20px 20px;
  margin: 0;
}

.page-game-strategy-guides__game-card-list li {
  margin-bottom: 10px;
  font-size: 1em;
  padding-left: 25px;
  position: relative;
}

.page-game-strategy-guides__game-card-list li::before {
  content: '✓';
  color: #017439; /* Brand color for checkmark */
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-game-strategy-guides__cta-container {
  text-align: center;
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* FAQ Section */
.page-game-strategy-guides__faq-container {
  max-width: 900px;
  margin: 40px auto;
}

.page-game-strategy-guides__faq-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-game-strategy-guides__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: #ffffff;
  background-color: rgba(1, 116, 57, 0.8); /* Brand color with transparency */
  transition: background-color 0.3s ease;
}

.page-game-strategy-guides__faq-question:hover {
  background-color: #017439;
}

.page-game-strategy-guides__faq-title {
  margin: 0;
  color: inherit;
}

.page-game-strategy-guides__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

.page-game-strategy-guides__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #cccccc;
  background-color: rgba(255, 255, 255, 0.05);
}

.page-game-strategy-guides__faq-item.active .page-game-strategy-guides__faq-answer {
  max-height: 1000px !important; /* Sufficiently large for content */
  padding: 15px 20px;
}

.page-game-strategy-guides__faq-answer p {
  margin: 0;
  padding-bottom: 10px;
}

.page-game-strategy-guides__cta-banner {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(90deg, #017439, #004d2a);
  color: #ffffff;
  margin-top: 60px;
}

.page-game-strategy-guides__cta-title {
  font-size: 2.8em;
  color: #FFFF00;
  margin-bottom: 20px;
}

.page-game-strategy-guides__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-game-strategy-guides__hero-title {
    font-size: 2.8em;
  }
  .page-game-strategy-guides__section-title {
    font-size: 2em;
  }
  .page-game-strategy-guides__cta-title {
    font-size: 2.4em;
  }
}

@media (max-width: 768px) {
  .page-game-strategy-guides {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-game-strategy-guides__hero-section {
    padding: 60px 15px 30px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-game-strategy-guides__hero-title {
    font-size: 2.2em;
  }
  .page-game-strategy-guides__hero-description {
    font-size: 1em;
  }
  .page-game-strategy-guides__btn-primary,
  .page-game-strategy-guides__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-bottom: 15px;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-game-strategy-guides__cta-container {
    flex-direction: column;
    gap: 15px;
  }
  .page-game-strategy-guides__content-area,
  .page-game-strategy-guides__section {
    padding: 40px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-game-strategy-guides__section-title {
    font-size: 1.8em;
  }
  .page-game-strategy-guides__paragraph {
    font-size: 0.95em;
  }
  .page-game-strategy-guides__card {
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  .page-game-strategy-guides__card-title {
    font-size: 1.4em;
  }
  .page-game-strategy-guides__game-card-image {
    height: 200px;
  }
  .page-game-strategy-guides__game-card-title {
    font-size: 1.5em;
  }
  .page-game-strategy-guides__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-game-strategy-guides__faq-answer {
    padding: 10px 15px;
  }
  .page-game-strategy-guides__cta-banner {
    padding: 60px 15px;
  }
  .page-game-strategy-guides__cta-title {
    font-size: 2em;
  }
  .page-game-strategy-guides__cta-description {
    font-size: 1em;
  }
  /* Images responsive */
  .page-game-strategy-guides img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  /* All containers with images/videos/buttons */
  .page-game-strategy-guides__section,
  .page-game-strategy-guides__card,
  .page-game-strategy-guides__container,
  .page-game-strategy-guides__game-card,
  .page-game-strategy-guides__hero-section,
  .page-game-strategy-guides__hero-image-wrapper,
  .page-game-strategy-guides__cta-banner,
  .page-game-strategy-guides__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important; /* Prevent horizontal scroll */
  }
}

@media (max-width: 480px) {
  .page-game-strategy-guides__hero-title {
    font-size: 1.8em;
  }
  .page-game-strategy-guides__section-title {
    font-size: 1.5em;
  }
  .page-game-strategy-guides__cta-title {
    font-size: 1.6em;
  }
}