.page-blog-game-strategy-selection {
  color: #333333; /* Dark text for light background */
  line-height: 1.6;
  font-family: Arial, sans-serif;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-blog-game-strategy-selection__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #000000; /* Dark background for hero text overlay */
  color: #ffffff;
  padding: 0;
}

.page-blog-game-strategy-selection__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Slightly darken image for text readability */
}

.page-blog-game-strategy-selection__hero-container {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
}

.page-blog-game-strategy-selection__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 90%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent dark overlay for text */
  border-radius: 10px;
}

.page-blog-game-strategy-selection__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-blog-game-strategy-selection__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #FFFFFF;
}

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

.page-blog-game-strategy-selection__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-blog-game-strategy-selection__button--primary {
  background-color: #FCBC45; /* Login button color */
  color: #000000;
}

.page-blog-game-strategy-selection__button--primary:hover {
  background-color: #e0a73b;
  transform: translateY(-2px);
}

.page-blog-game-strategy-selection__button--secondary {
  background-color: #FFFFFF; /* Register button color */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-blog-game-strategy-selection__button--secondary:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-blog-game-strategy-selection__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #FFFFFF;
}

.page-blog-game-strategy-selection__article {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-blog-game-strategy-selection__section-title {
  font-size: 2.2em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 3px solid #FCBC45;
  padding-bottom: 10px;
  text-align: center;
}

.page-blog-game-strategy-selection__sub-section-title {
  font-size: 1.8em;
  color: #000000;
  margin-top: 30px;
  margin-bottom: 15px;
  padding-left: 10px;
  border-left: 5px solid #FCBC45;
}

.page-blog-game-strategy-selection__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333333;
  line-height: 1.8;
}

.page-blog-game-strategy-selection__link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-blog-game-strategy-selection__link:hover {
  text-decoration: underline;
}

.page-blog-game-strategy-selection__image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  min-height: 200px;
}

.page-blog-game-strategy-selection__call-to-action,
.page-blog-game-strategy-selection__final-call-to-action {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 10px;
  border: 1px solid #eee;
}

.page-blog-game-strategy-selection__final-call-to-action .page-blog-game-strategy-selection__paragraph {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 30px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-game-strategy-selection__hero-title {
    font-size: 2.5em;
  }

  .page-blog-game-strategy-selection__hero-description {
    font-size: 1.1em;
  }

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

  .page-blog-game-strategy-selection__sub-section-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-blog-game-strategy-selection__hero-content {
    padding: 15px;
  }

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

  .page-blog-game-strategy-selection__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

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

  .page-blog-game-strategy-selection__button {
    padding: 12px 25px;
    font-size: 1em;
    width: 80%;
    max-width: 300px;
  }

  .page-blog-game-strategy-selection__content-area {
    padding: 20px 15px;
  }

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

  .page-blog-game-strategy-selection__section-title {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-blog-game-strategy-selection__sub-section-title {
    font-size: 1.4em;
    margin-top: 25px;
    margin-bottom: 10px;
  }

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

  .page-blog-game-strategy-selection__image {
    max-width: 100%;
    height: auto;
    margin: 20px auto;
  }

  .page-blog-game-strategy-selection__call-to-action,
  .page-blog-game-strategy-selection__final-call-to-action {
    padding: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .page-blog-game-strategy-selection__final-call-to-action .page-blog-game-strategy-selection__paragraph {
    font-size: 1.1em;
  }
}

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

  .page-blog-game-strategy-selection__hero-description {
    font-size: 0.9em;
  }

  .page-blog-game-strategy-selection__button {
    width: 95%;
  }

  .page-blog-game-strategy-selection__section-title {
    font-size: 1.5em;
  }

  .page-blog-game-strategy-selection__sub-section-title {
    font-size: 1.2em;
  }

  .page-blog-game-strategy-selection__paragraph {
    font-size: 0.9em;
  }
}