.page-resources-popular-game-strategies {
  font-family: Arial, sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: var(--background-color, #ffffff);
}

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

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

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

.page-resources-popular-game-strategies__section-title--white {
  color: #ffffff;
}

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

.page-resources-popular-game-strategies__text-block--white {
  color: #ffffff;
}

.page-resources-popular-game-strategies__btn-primary,
.page-resources-popular-game-strategies__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  margin: 10px;
  white-space: nowrap;
}

.page-resources-popular-game-strategies__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-resources-popular-game-strategies__btn-primary:hover {
  background-color: #1a8cc4;
  border-color: #1a8cc4;
}

.page-resources-popular-game-strategies__btn-primary--large {
  padding: 15px 35px;
  font-size: 1.2em;
}

.page-resources-popular-game-strategies__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-resources-popular-game-strategies__btn-secondary:hover {
  background-color: #e0f2f7;
  color: #1a8cc4;
  border-color: #1a8cc4;
}

/* Hero Section */
.page-resources-popular-game-strategies__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  overflow: hidden;
  color: #ffffff;
  background-color: #26A9E0; /* Fallback for dark-bg, but hero-image should cover */
}

.page-resources-popular-game-strategies__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-resources-popular-game-strategies__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image for text readability */
}

.page-resources-popular-game-strategies__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 40px 20px;
}

.page-resources-popular-game-strategies__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-resources-popular-game-strategies__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-popular-game-strategies__hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Introduction Section */
.page-resources-popular-game-strategies__introduction {
  padding: 80px 0;
  background-color: #ffffff;
  color: #333333;
}

/* Game Strategies Section */
.page-resources-popular-game-strategies__game-strategies {
  padding: 80px 0;
  background-color: #26A9E0;
  color: #ffffff;
}

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

.page-resources-popular-game-strategies__card {
  background-color: #ffffff;
  color: #333333;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 450px; /* Ensure cards have similar height */
}

.page-resources-popular-game-strategies__card-image {
  max-width: 100%;
  height: 200px;
  object-fit: contain; /* Use contain to show full image without cropping */
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-popular-game-strategies__card-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-resources-popular-game-strategies__card-text {
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Winning Tips Section */
.page-resources-popular-game-strategies__winning-tips {
  padding: 80px 0;
  background-color: #f8f9fa;
  color: #333333;
}

.page-resources-popular-game-strategies__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-resources-popular-game-strategies__feature-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 380px; /* Ensure cards have similar height */
}

.page-resources-popular-game-strategies__feature-card--bordered {
  border: 1px solid #e0e0e0;
}

.page-resources-popular-game-strategies__feature-icon {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-resources-popular-game-strategies__feature-title {
  font-size: 1.6em;
  font-weight: bold;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-resources-popular-game-strategies__feature-text {
  font-size: 1em;
  text-align: justify;
  flex-grow: 1;
}

/* Video Section */
.page-resources-popular-game-strategies__video-section {
  padding: 80px 0;
  background-color: #26A9E0;
  color: #ffffff;
  text-align: center;
}

.page-resources-popular-game-strategies__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px; /* Max width for video */
  margin: 40px auto 0;
  background-color: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-resources-popular-game-strategies__video-link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  cursor: pointer;
}

.page-resources-popular-game-strategies__video {
  width: 100%;
  height: auto;
  display: block;
  z-index: 5;
}

/* FAQ Section */
.page-resources-popular-game-strategies__faq-section {
  padding: 80px 0;
  background-color: #ffffff;
  color: #333333;
}

.page-resources-popular-game-strategies__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-popular-game-strategies__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-resources-popular-game-strategies__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #26A9E0;
  cursor: pointer;
  background-color: #eaf7fc;
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.3s ease;
}

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

.page-resources-popular-game-strategies__faq-item[open] .page-resources-popular-game-strategies__faq-question {
  border-bottom: 1px solid #e0e0e0;
}

.page-resources-popular-game-strategies__faq-item summary {
  list-style: none;
}

.page-resources-popular-game-strategies__faq-item summary::-webkit-details-marker {
  display: none;
}

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

.page-resources-popular-game-strategies__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: #555555;
  background-color: #fefefe;
}

.page-resources-popular-game-strategies__faq-answer p {
  margin-bottom: 10px;
}

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

/* CTA Section */
.page-resources-popular-game-strategies__cta-section {
  padding: 80px 0;
  background-color: #26A9E0;
  color: #ffffff;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-popular-game-strategies__hero-title {
    font-size: 3em;
  }
  .page-resources-popular-game-strategies__hero-description {
    font-size: 1.2em;
  }
  .page-resources-popular-game-strategies__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-resources-popular-game-strategies__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    min-height: 400px;
  }
  .page-resources-popular-game-strategies__hero-title {
    font-size: 2.5em;
  }
  .page-resources-popular-game-strategies__hero-description {
    font-size: 1em;
  }
  .page-resources-popular-game-strategies__hero-cta {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-popular-game-strategies__btn-primary,
  .page-resources-popular-game-strategies__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin: 5px 0;
  }
  .page-resources-popular-game-strategies__btn-primary--large {
    font-size: 1.1em;
    padding: 12px 25px;
  }
  .page-resources-popular-game-strategies__section-title {
    font-size: 1.8em;
  }
  .page-resources-popular-game-strategies__text-block {
    font-size: 0.95em;
  }
  .page-resources-popular-game-strategies__grid,
  .page-resources-popular-game-strategies__features-grid {
    grid-template-columns: 1fr;
  }
  .page-resources-popular-game-strategies__card,
  .page-resources-popular-game-strategies__feature-card {
    min-height: auto;
  }
  .page-resources-popular-game-strategies__card-image,
  .page-resources-popular-game-strategies__feature-icon {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }
  .page-resources-popular-game-strategies__introduction,
  .page-resources-popular-game-strategies__game-strategies,
  .page-resources-popular-game-strategies__winning-tips,
  .page-resources-popular-game-strategies__video-section,
  .page-resources-popular-game-strategies__faq-section,
  .page-resources-popular-game-strategies__cta-section {
    padding: 40px 0;
  }
  .page-resources-popular-game-strategies__container {
    padding-left: 15px;
    padding-right: 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden;
  }
  .page-resources-popular-game-strategies img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-popular-game-strategies video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-popular-game-strategies__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-resources-popular-game-strategies__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }
}

@media (max-width: 480px) {
  .page-resources-popular-game-strategies__hero-title {
    font-size: 2em;
  }
  .page-resources-popular-game-strategies__section-title {
    font-size: 1.5em;
  }
  .page-resources-popular-game-strategies__hero-cta {
    gap: 10px;
  }
  .page-resources-popular-game-strategies__btn-primary,
  .page-resources-popular-game-strategies__btn-secondary {
    font-size: 0.9em;
    padding: 10px 20px;
  }
  .page-resources-popular-game-strategies__card-title,
  .page-resources-popular-game-strategies__feature-title {
    font-size: 1.3em;
  }
  .page-resources-popular-game-strategies__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-resources-popular-game-strategies__faq-answer {
    padding: 15px 20px;
  }
}