.page-game-strategy {
  font-family: Arial, sans-serif;
  color: #333333;
  background-color: #ffffff;
}

.page-game-strategy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-game-strategy__hero-section {
  position: relative;
  width: 100%;
  height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding-top: var(--header-offset, 120px);
}

.page-game-strategy__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.page-game-strategy__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

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

.page-game-strategy__subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-game-strategy__btn-primary {
  display: inline-block;
  background-color: #26A9E0;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-game-strategy__btn-primary:hover {
  background-color: #1e87c2;
  transform: translateY(-2px);
}

.page-game-strategy__section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-game-strategy__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
}

.page-game-strategy__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.page-game-strategy__grid-three {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-game-strategy__card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333333;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.page-game-strategy__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

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

.page-game-strategy__card-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-game-strategy__card-description {
  font-size: 1em;
  line-height: 1.6;
}

.page-game-strategy__content-block {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: #333333;
}

.page-game-strategy__content-block-title {
  font-size: 2em;
  color: #26A9E0;
  margin-bottom: 20px;
  text-align: left;
}

.page-game-strategy__content-block p {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 15px;
}

.page-game-strategy__content-block ul {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-game-strategy__content-block li {
  font-size: 1.05em;
  line-height: 1.6;
  margin-bottom: 8px;
}

.page-game-strategy__content-block strong {
  color: #000000;
}

.page-game-strategy__content-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 25px;
  object-fit: cover;
}

.page-game-strategy__grid-two {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-game-strategy__tip-item {
  background-color: #ffffff;
  border-left: 5px solid #26A9E0;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: #333333;
}

.page-game-strategy__tip-title {
  font-size: 1.6em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-game-strategy__tip-item p {
  font-size: 1em;
  line-height: 1.6;
}

.page-game-strategy__cta-section {
  text-align: center;
  padding: 50px;
  background-color: #f0f8ff;
  border-radius: 12px;
  margin-top: 50px;
  color: #333333;
}

.page-game-strategy__cta-section p {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #000000;
}

.page-game-strategy__btn-large {
  padding: 18px 40px;
  font-size: 1.1em;
}

.page-game-strategy__faq {
  background-color: #f5f5f5;
}

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

.page-game-strategy__faq-item {
  background-color: #ffffff;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-game-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #26A9E0;
  cursor: pointer;
  background-color: #eaf6fc;
  transition: background-color 0.3s ease;
}

.page-game-strategy__faq-question:hover {
  background-color: #d8edf8;
}

.page-game-strategy__faq-toggle {
  font-size: 1.5em;
  font-weight: normal;
  transition: transform 0.3s ease;
  color: #000000;
}

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

.page-game-strategy__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #333333;
}

.page-game-strategy__faq-item.active .page-game-strategy__faq-answer {
  max-height: 1000px !important; /* Ensure it expands sufficiently */
  padding: 15px 25px 25px 25px;
}

.page-game-strategy__faq-answer p {
  margin-bottom: 0;
  line-height: 1.6;
}

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

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

  .page-game-strategy__grid-two {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-game-strategy__hero-section {
    height: 500px;
  }

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

  .page-game-strategy__subtitle {
    font-size: 1em;
  }

  .page-game-strategy__section {
    padding: 40px 0;
  }

  .page-game-strategy__section-title {
    font-size: 1.8em;
  }

  .page-game-strategy__grid-three {
    grid-template-columns: 1fr;
  }

  .page-game-strategy__card {
    padding: 20px;
  }

  .page-game-strategy__card-title {
    font-size: 1.3em;
  }

  .page-game-strategy__content-block {
    padding: 25px;
  }

  .page-game-strategy__content-block-title {
    font-size: 1.6em;
  }

  .page-game-strategy__content-block p,
  .page-game-strategy__content-block li {
    font-size: 0.95em;
  }

  .page-game-strategy__tip-title {
    font-size: 1.4em;
  }

  .page-game-strategy__cta-section {
    padding: 30px;
  }

  .page-game-strategy__cta-section p {
    font-size: 1.1em;
  }

  .page-game-strategy__btn-primary,
  .page-game-strategy__btn-large {
    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;
  }

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

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

  .page-game-strategy__faq-item.active .page-game-strategy__faq-answer {
    padding: 15px 20px 20px 20px;
  }

  /* Mobile image and video responsiveness */
  .page-game-strategy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-game-strategy__hero-section,
  .page-game-strategy__section,
  .page-game-strategy__container,
  .page-game-strategy__card,
  .page-game-strategy__content-block,
  .page-game-strategy__tip-item,
  .page-game-strategy__cta-section,
  .page-game-strategy__faq-list,
  .page-game-strategy__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

  .page-game-strategy__hero-section {
      padding-top: var(--header-offset, 120px) !important;
      padding-left: 0;
      padding-right: 0;
  }
  .page-game-strategy__hero-content {
      padding-left: 15px;
      padding-right: 15px;
  }
}