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

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

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

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

.page-game-strategy-guides__hero-section {
  position: relative;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px);
}

.page-game-strategy-guides__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.2;
}

.page-game-strategy-guides__hero-section .page-game-strategy-guides__container {
  position: relative;
  z-index: 1;
}

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

.page-game-strategy-guides__intro-text {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
}

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

.page-game-strategy-guides__btn-primary,
.page-game-strategy-guides__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-game-strategy-guides__btn-primary {
  background-color: #EA7C07; /* Login color */
  color: #ffffff;
  border: 2px solid transparent;
}

.page-game-strategy-guides__btn-primary:hover {
  background-color: #d66f06;
}

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

.page-game-strategy-guides__btn-secondary:hover {
  background-color: #e0f7fa;
  color: #1a7ea0;
}

.page-game-strategy-guides__content-section {
  padding: 60px 0;
}

.page-game-strategy-guides__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
  color: inherit;
}

.page-game-strategy-guides__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-game-strategy-guides__feature-card {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-game-strategy-guides__feature-card:hover {
  transform: translateY(-10px);
}

.page-game-strategy-guides__feature-icon {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

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

.page-game-strategy-guides__feature-description {
  font-size: 1em;
  color: #555555;
}

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

.page-game-strategy-guides__card {
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.page-game-strategy-guides__card:hover {
  transform: translateY(-10px);
}

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

.page-game-strategy-guides__card-description {
  font-size: 1em;
  color: #555555;
}

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

.page-game-strategy-guides__game-card {
  background-color: #f8f8f8;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-game-strategy-guides__game-card:hover {
  transform: translateY(-10px);
}

.page-game-strategy-guides__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-game-strategy-guides__game-title {
  font-size: 1.4em;
  padding: 20px 20px 10px;
  color: #26A9E0;
  font-weight: bold;
}

.page-game-strategy-guides__game-title a {
  color: #26A9E0;
  text-decoration: none;
}

.page-game-strategy-guides__game-title a:hover {
  text-decoration: underline;
}

.page-game-strategy-guides__game-description {
  font-size: 0.95em;
  padding: 0 20px 20px;
  color: #555555;
}

.page-game-strategy-guides__btn-link {
  display: inline-block;
  padding: 10px 20px;
  margin: 0 20px 20px;
  background-color: #26A9E0;
  color: #ffffff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-game-strategy-guides__btn-link:hover {
  background-color: #1a7ea0;
}

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

.page-game-strategy-guides__info-block {
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.page-game-strategy-guides__info-block:hover {
  transform: translateY(-10px);
}

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

.page-game-strategy-guides__info-description {
  font-size: 1em;
  color: #555555;
}

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

.page-game-strategy-guides__promo-card {
  background-color: #f8f8f8;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-game-strategy-guides__promo-card:hover {
  transform: translateY(-10px);
}

.page-game-strategy-guides__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-game-strategy-guides__promo-title {
  font-size: 1.4em;
  padding: 20px 20px 10px;
  color: #26A9E0;
  font-weight: bold;
}

.page-game-strategy-guides__promo-title a {
  color: #26A9E0;
  text-decoration: none;
}

.page-game-strategy-guides__promo-title a:hover {
  text-decoration: underline;
}

.page-game-strategy-guides__promo-description {
  font-size: 0.95em;
  padding: 0 20px 20px;
  color: #555555;
}

.page-game-strategy-guides__video-section {
  padding: 60px 0;
  text-align: center;
}

.page-game-strategy-guides__video-wrapper {
  max-width: 800px;
  margin: 40px auto 0;
  background-color: #000000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
}

.page-game-strategy-guides__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
}

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

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

.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-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #26A9E0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  border-radius: 8px;
}

.page-game-strategy-guides__faq-item summary::-webkit-details-marker {
  display: 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: 10px;
}

.page-game-strategy-guides__faq-answer {
  padding: 0 20px 20px;
  font-size: 1em;
  color: #555555;
}

.page-game-strategy-guides__faq-answer p {
  margin-top: 10px;
}

.page-game-strategy-guides__faq-answer a {
  color: #26A9E0;
  text-decoration: underline;
}

.page-game-strategy-guides__conclusion-section {
  padding: 80px 0;
  text-align: center;
}

@media (max-width: 1024px) {
  .page-game-strategy-guides__main-title {
    font-size: 3em;
  }

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

@media (max-width: 768px) {
  .page-game-strategy-guides__hero-section {
    padding: 80px 0;
    padding-top: var(--header-offset, 120px) !important;
  }

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

  .page-game-strategy-guides__intro-text {
    font-size: 1em;
  }

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

  .page-game-strategy-guides__btn-primary,
  .page-game-strategy-guides__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-game-strategy-guides__content-section {
    padding: 40px 0;
  }

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

  .page-game-strategy-guides__paragraph {
    font-size: 0.95em;
  }

  .page-game-strategy-guides__feature-grid,
  .page-game-strategy-guides__strategy-cards,
  .page-game-strategy-guides__game-strategy-grid,
  .page-game-strategy-guides__info-blocks,
  .page-game-strategy-guides__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .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__feature-card,
  .page-game-strategy-guides__game-card,
  .page-game-strategy-guides__info-block,
  .page-game-strategy-guides__promo-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-game-strategy-guides__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-game-strategy-guides video,
  .page-game-strategy-guides__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-game-strategy-guides__video-section,
  .page-game-strategy-guides__video-container,
  .page-game-strategy-guides__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-game-strategy-guides__faq-item summary {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-game-strategy-guides__faq-answer {
    padding: 0 15px 15px;
  }
}

@media (max-width: 480px) {
  .page-game-strategy-guides__main-title {
    font-size: 1.8em;
  }

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

  .page-game-strategy-guides__hero-section {
    padding: 60px 0;
    padding-top: var(--header-offset, 120px) !important;
  }
}