.page-resources-game-strategy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Dark body background #0d1117, so light text */
  background-color: #0d1117; /* Matches body background */
}

.page-resources-game-strategy__hero-section {
  padding-top: var(--header-offset, 120px);
  background-color: #1a1f26; /* Slightly lighter dark background for hero */
  color: #ffffff;
  text-align: center;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.page-resources-game-strategy__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.page-resources-game-strategy__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #26A9E0; /* Brand color for emphasis */
  font-weight: bold;
}

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

.page-resources-game-strategy__cta-button {
  display: inline-block;
  background-color: #26A9E0; /* Main brand color */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-game-strategy__cta-button:hover {
  background-color: #1e87c0; /* Darker shade on hover */
}

.page-resources-game-strategy__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle background image */
  z-index: 1;
}

.page-resources-game-strategy__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #0d1117; /* Consistent dark background */
  color: #ffffff;
}

.page-resources-game-strategy__section-title {
  font-size: 2.2em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-game-strategy__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #26A9E0;
}

.page-resources-game-strategy__content-block {
  margin-bottom: 40px;
}

.page-resources-game-strategy__content-block h3 {
  font-size: 1.8em;
  color: #ffffff;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 4px solid #26A9E0;
  padding-left: 15px;
}

.page-resources-game-strategy__content-block p {
  margin-bottom: 15px;
  color: #f0f0f0;
}

.page-resources-game-strategy__content-block ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 15px;
  color: #f0f0f0;
}

.page-resources-game-strategy__content-block li {
  margin-bottom: 8px;
}

.page-resources-game-strategy__image-container {
  text-align: center;
  margin: 40px 0;
}

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

.page-resources-game-strategy__text-center {
    text-align: center;
}

/* FAQ Section */
.page-resources-game-strategy__faq-section {
  background-color: #1a1f26; /* Slightly different dark background */
}

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

.page-resources-game-strategy__faq-item {
  background-color: #0d1117;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
  border: 1px solid rgba(38, 169, 224, 0.3); /* Subtle border with brand color */
}

.page-resources-game-strategy__faq-question {
  padding: 20px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #26A9E0;
  user-select: none;
}

.page-resources-game-strategy__faq-question::-webkit-details-marker {
  display: none;
}

.page-resources-game-strategy__faq-question::marker {
  display: none;
}

.page-resources-game-strategy__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
}

.page-resources-game-strategy__faq-answer {
  padding: 0 20px 20px;
  font-size: 0.95em;
  line-height: 1.7;
  color: #f0f0f0;
}

/* Video Section (if any, not present in this page, but keeping for reference if added) */
.page-resources-game-strategy__video-section {
    background-color: #0d1117;
    text-align: center;
    padding: 60px 20px;
}

.page-resources-game-strategy__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.page-resources-game-strategy__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    cursor: pointer; /* Indicate clickability */
}

.page-resources-game-strategy__link-text {
    color: #26A9E0;
    text-decoration: none;
}

.page-resources-game-strategy__link-text:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-resources-game-strategy__hero-title {
        font-size: 2.5em;
    }
    .page-resources-game-strategy__hero-description {
        font-size: 1.1em;
    }
    .page-resources-game-strategy__section-title {
        font-size: 2em;
    }
    .page-resources-game-strategy__content-block h3 {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .page-resources-game-strategy__hero-section {
        padding-top: var(--header-offset, 120px) !important; /* Ensure mobile offset */
        padding-bottom: 40px;
    }
    .page-resources-game-strategy__hero-title {
        font-size: 2em;
    }
    .page-resources-game-strategy__hero-description {
        font-size: 1em;
    }
    .page-resources-game-strategy__section {
        padding: 40px 15px;
    }
    .page-resources-game-strategy__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-resources-game-strategy__content-block h3 {
        font-size: 1.4em;
    }
    .page-resources-game-strategy img,
    .page-resources-game-strategy__content-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-resources-game-strategy__section,
    .page-resources-game-strategy__card,
    .page-resources-game-strategy__container,
    .page-resources-game-strategy__video-section,
    .page-resources-game-strategy__video-container,
    .page-resources-game-strategy__video-wrapper,
    .page-resources-game-strategy__cta-buttons,
    .page-resources-game-strategy__button-group,
    .page-resources-game-strategy__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Prevent horizontal scroll */
    }
    .page-resources-game-strategy__cta-button {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px !important;
    }
    .page-resources-game-strategy__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-resources-game-strategy__faq-question {
        font-size: 1em;
        padding: 15px;
    }
    .page-resources-game-strategy__faq-answer {
        padding: 0 15px 15px;
    }
}