.page-resources-game-strategies {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #111; /* Matched with body background */
}

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

.page-resources-game-strategies__hero-section {
  position: relative;
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  min-height: 500px;
  text-align: left;
  padding-top: var(--header-offset, 120px);
  background: linear-gradient(135deg, #017439, #004d2b);
}

.page-resources-game-strategies__hero-content {
  flex: 1;
  max-width: 600px;
  z-index: 1;
}

.page-resources-game-strategies__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
}

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

.page-resources-game-strategies__hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 600px;
  z-index: 1;
}

.page-resources-game-strategies__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-resources-game-strategies__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-resources-game-strategies__intro-section,
.page-resources-game-strategies__advanced-strategies-section,
.page-resources-game-strategies__faq-section {
  padding: 60px 0;
  background-color: #ffffff;
  color: #333333;
}

.page-resources-game-strategies__strategies-section,
.page-resources-game-strategies__tips-section,
.page-resources-game-strategies__cta-section {
  padding: 60px 0;
  background-color: #0d0d0d;
  color: #ffffff;
}

.page-resources-game-strategies__text-block {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources-game-strategies__text-block a {
  color: #017439;
  text-decoration: underline;
}

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

.page-resources-game-strategies__card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
}

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

.page-resources-game-strategies__card-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: #017439;
  font-weight: bold;
}

.page-resources-game-strategies__card-text {
  font-size: 1em;
  line-height: 1.7;
  color: #f0f0f0;
}

.page-resources-game-strategies__card-text a {
  color: #FFFF00;
  text-decoration: underline;
}

.page-resources-game-strategies__content-block {
  margin-bottom: 50px;
}

.page-resources-game-strategies__sub-title {
  font-size: 2em;
  margin-bottom: 20px;
  color: #017439;
  font-weight: bold;
  text-align: center;
}

.page-resources-game-strategies__content-image {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 10px;
  margin: 25px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-game-strategies__tip-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-resources-game-strategies__tip-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  background: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-game-strategies__tip-icon {
  font-size: 1.8em;
  color: #FFFF00;
  margin-right: 20px;
  flex-shrink: 0;
}

.page-resources-game-strategies__tip-content {
  flex-grow: 1;
}

.page-resources-game-strategies__tip-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #017439;
  font-weight: bold;
}

.page-resources-game-strategies__tip-text {
  font-size: 1em;
  line-height: 1.7;
  color: #f0f0f0;
}

.page-resources-game-strategies__tip-text a {
  color: #FFFF00;
  text-decoration: underline;
}

.page-resources-game-strategies__faq-list {
  margin-top: 40px;
}

.page-resources-game-strategies__faq-item {
  background: #f8f8f8;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #333333;
}

.page-resources-game-strategies__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: #eee;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: #333333;
  transition: background-color 0.3s ease;
}

.page-resources-game-strategies__faq-question:hover {
  background-color: #e0e0e0;
}

.page-resources-game-strategies__faq-title {
  margin: 0;
  color: #017439;
  font-size: 1.2em;
}

.page-resources-game-strategies__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #017439;
}

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

.page-resources-game-strategies__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #fdfdfd;
  color: #555555;
}

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

.page-resources-game-strategies__faq-answer p {
  margin: 0;
  color: #555555;
}

.page-resources-game-strategies__faq-answer a {
  color: #017439;
  text-decoration: underline;
}

.page-resources-game-strategies__cta-section {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(135deg, #017439, #004d2b);
}

.page-resources-game-strategies__cta-section .page-resources-game-strategies__section-title {
  color: #ffffff;
}

.page-resources-game-strategies__cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-resources-game-strategies__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  border: none;
  box-sizing: border-box;
}

.page-resources-game-strategies__btn-primary {
  background-color: #C30808;
  color: #FFFF00;
}

.page-resources-game-strategies__btn-primary:hover {
  background-color: #a30606;
  transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-resources-game-strategies__hero-section {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
  }

  .page-resources-game-strategies__hero-content,
  .page-resources-game-strategies__hero-image-wrapper {
    max-width: 100%;
  }

  .page-resources-game-strategies__hero-title {
    font-size: 2.8em;
  }

  .page-resources-game-strategies__hero-description {
    font-size: 1.1em;
  }

  .page-resources-game-strategies__section-title {
    font-size: 2em;
  }

  .page-resources-game-strategies__sub-title {
    font-size: 1.7em;
  }

  .page-resources-game-strategies__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-resources-game-strategies {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-resources-game-strategies__hero-section {
    padding: 40px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }

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

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

  .page-resources-game-strategies__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-resources-game-strategies__sub-title {
    font-size: 1.5em;
  }

  .page-resources-game-strategies__container {
    padding: 0 15px;
  }

  .page-resources-game-strategies__intro-section,
  .page-resources-game-strategies__strategies-section,
  .page-resources-game-strategies__advanced-strategies-section,
  .page-resources-game-strategies__tips-section,
  .page-resources-game-strategies__faq-section,
  .page-resources-game-strategies__cta-section {
    padding: 40px 0;
  }

  /* Images responsiveness */
  .page-resources-game-strategies img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-resources-game-strategies__hero-image-wrapper,
  .page-resources-game-strategies__card-image,
  .page-resources-game-strategies__content-image {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Buttons responsiveness */
  .page-resources-game-strategies__btn-primary,
  .page-resources-game-strategies a[class*="button"],
  .page-resources-game-strategies 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;
    text-align: center;
  }

  .page-resources-game-strategies__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-resources-game-strategies__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-resources-game-strategies__faq-title {
    font-size: 1em;
  }

  .page-resources-game-strategies__faq-answer {
    padding: 0 20px;
  }

  .page-resources-game-strategies__faq-item.active .page-resources-game-strategies__faq-answer {
    padding: 10px 20px;
  }

  .page-resources-game-strategies__tip-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .page-resources-game-strategies__tip-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}