.page-game-strategy-guides {
  font-family: 'Arial', sans-serif;
  color: #333333;
  background-color: #FFFFFF;
  line-height: 1.6;
}

.page-game-strategy-guides__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #26A9E0, #3498db);
  color: #FFFFFF;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}

.page-game-strategy-guides__hero-content {
  max-width: 900px;
  margin-bottom: 40px;
  z-index: 1;
}

.page-game-strategy-guides__main-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.page-game-strategy-guides__intro-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-game-strategy-guides__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-game-strategy-guides__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-top: 40px;
  z-index: 0;
}

.page-game-strategy-guides__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.1);
}

.page-game-strategy-guides__section {
  padding: 60px 20px;
  text-align: center;
}

.page-game-strategy-guides__light-bg {
  background-color: #FFFFFF;
  color: #333333;
}

.page-game-strategy-guides__dark-bg {
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-game-strategy-guides__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-game-strategy-guides__section-title {
  font-size: 2.2em;
  margin-bottom: 40px;
  color: #26A9E0;
}

.page-game-strategy-guides__section-title--white {
  color: #FFFFFF;
}

.page-game-strategy-guides__article-content {
  text-align: left;
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-game-strategy-guides__sub-title {
  font-size: 1.6em;
  color: #26A9E0;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-game-strategy-guides__text-block {
  margin-bottom: 20px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-strategy-guides__text-block--white {
  color: #FFFFFF;
  opacity: 0.9;
}

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

.page-game-strategy-guides__card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.page-game-strategy-guides__card--dark {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-game-strategy-guides__card--dark .page-game-strategy-guides__card-title a {
  color: #FFFFFF;
}

.page-game-strategy-guides__card--dark .page-game-strategy-guides__card-text {
  color: #F0F0F0;
}

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

.page-game-strategy-guides__card-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  min-height: 60px;
}

.page-game-strategy-guides__card-title a {
  color: #26A9E0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-game-strategy-guides__card-title a:hover {
  color: #EA7C07;
}

.page-game-strategy-guides__card-text {
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-game-strategy-guides__btn-primary,
.page-game-strategy-guides__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  text-align: center;
}

.page-game-strategy-guides__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-game-strategy-guides__btn-primary:hover {
  background-color: #1a7bbd;
  border-color: #1a7bbd;
}

.page-game-strategy-guides__btn-secondary {
  background-color: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-game-strategy-guides__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #1a7bbd;
  border-color: #1a7bbd;
}

.page-game-strategy-guides__btn-secondary--white-border {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-game-strategy-guides__btn-secondary--white-border:hover {
  background-color: #FFFFFF;
  color: #26A9E0;
}

.page-game-strategy-guides__list-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-strategy-guides__list-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-right: 20px;
  border-radius: 50%;
  background-color: #e0f2f7;
  padding: 10px;
}

.page-game-strategy-guides__list-content {
  flex-grow: 1;
}

.page-game-strategy-guides__list-title {
  font-size: 1.3em;
  color: #26A9E0;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-game-strategy-guides__list-title--white {
  color: #FFFFFF;
}

.page-game-strategy-guides__list-item--white .page-game-strategy-guides__list-content p {
  color: #F0F0F0;
}

.page-game-strategy-guides__cta-buttons--center {
  margin-top: 50px;
}

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

.page-game-strategy-guides__warning-list .page-game-strategy-guides__list-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  display: block;
}

.page-game-strategy-guides__warning-list .page-game-strategy-guides__list-item p {
  color: #F0F0F0;
}

.page-game-strategy-guides__faq-section {
  padding: 60px 20px;
}

.page-game-strategy-guides__faq-list {
  max-width: 900px;
  margin: 0 auto;
  margin-top: 40px;
  text-align: left;
}

.page-game-strategy-guides__faq-item {
  background-color: #f8f8f8;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-game-strategy-guides__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: bold;
  color: #333333;
  cursor: pointer;
  background-color: #FFFFFF;
  border-bottom: 1px solid #e0e0e0;
  list-style: none;
}

.page-game-strategy-guides__faq-question::-webkit-details-marker {
  display: none;
}

.page-game-strategy-guides__faq-item[open] .page-game-strategy-guides__faq-question {
  border-bottom: none;
}

.page-game-strategy-guides__faq-qtext {
  flex-grow: 1;
}

.page-game-strategy-guides__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #26A9E0;
}

.page-game-strategy-guides__faq-answer {
  padding: 15px 25px 25px 25px;
  font-size: 1em;
  color: #555555;
  background-color: #f8f8f8;
}

.page-game-strategy-guides__cta-banner {
  padding: 80px 20px;
  background: linear-gradient(90deg, #26A9E0, #1a7bbd);
  color: #FFFFFF;
  text-align: center;
}

.page-game-strategy-guides__container--flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-game-strategy-guides__cta-text-content {
  max-width: 800px;
}

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

.page-game-strategy-guides__cta-description {
  font-size: 1.1em;
  opacity: 0.9;
  margin-bottom: 30px;
}

.page-game-strategy-guides__cta-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.page-game-strategy-guides__btn-primary--large,
.page-game-strategy-guides__btn-secondary--large {
  padding: 15px 35px;
  font-size: 1.1em;
}

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

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

  .page-game-strategy-guides__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-game-strategy-guides__hero-section {
    padding: 40px 15px 0 15px;
  }

  .page-game-strategy-guides__main-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }

  .page-game-strategy-guides__intro-text {
    font-size: 1em;
    margin-bottom: 25px;
  }

  .page-game-strategy-guides__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-game-strategy-guides__btn-primary,
  .page-game-strategy-guides__btn-secondary,
  .page-game-strategy-guides a[class*="button"],
  .page-game-strategy-guides 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;
  }

  .page-game-strategy-guides__section {
    padding: 40px 15px;
  }

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

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

  .page-game-strategy-guides__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-game-strategy-guides__card {
    padding: 20px;
  }

  .page-game-strategy-guides__list-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 25px;
  }

  .page-game-strategy-guides__list-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .page-game-strategy-guides__list-title {
    font-size: 1.2em;
  }

  .page-game-strategy-guides__faq-question {
    padding: 15px 20px;
    font-size: 1.05em;
  }

  .page-game-strategy-guides__faq-answer {
    padding: 10px 20px 20px 20px;
  }

  .page-game-strategy-guides__cta-banner {
    padding: 60px 15px;
  }

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

  .page-game-strategy-guides__cta-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-game-strategy-guides__btn-primary--large,
  .page-game-strategy-guides__btn-secondary--large {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-game-strategy-guides img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-game-strategy-guides__section,
  .page-game-strategy-guides__card,
  .page-game-strategy-guides__container,
  .page-game-strategy-guides__hero-image-wrapper,
  .page-game-strategy-guides__cta-banner,
  .page-game-strategy-guides__cta-text-content,
  .page-game-strategy-guides__cta-actions {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }
  .page-game-strategy-guides__hero-section {
    padding-top: var(--header-offset, 120px) !important; 
  }

  .page-game-strategy-guides__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0px;
    padding-right: 0px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
}