.page-blog-game-strategy {
  color: #ffffff; /* Light text for dark body background */
}

.page-blog-game-strategy__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  background-color: #000000; /* Ensure section background for image overlay */
  overflow: hidden;
}

.page-blog-game-strategy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability, not changing color */
}

.page-blog-game-strategy__hero-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-game-strategy__hero-content {
  position: absolute;
  text-align: center;
  padding: 20px;
  max-width: 800px;
  z-index: 1;
}

.page-blog-game-strategy__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold accent for title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-blog-game-strategy__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
  line-height: 1.6;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.page-blog-game-strategy__hero-button,
.page-blog-game-strategy__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #3F0071; /* Dark purple text */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-blog-game-strategy__hero-button:hover,
.page-blog-game-strategy__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-blog-game-strategy__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-game-strategy__introduction-section,
.page-blog-game-strategy__general-tips-section,
.page-blog-game-strategy__game-specific-section,
.page-blog-game-strategy__bonus-section,
.page-blog-game-strategy__responsible-gaming-section,
.page-blog-game-strategy__faq-section,
.page-blog-game-strategy__cta-section {
  padding: 60px 0;
  background-color: #0d0d0d; /* Slightly lighter dark background for sections */
  margin-bottom: 20px;
  border-radius: 10px;
}

.page-blog-game-strategy__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold accent */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-blog-game-strategy__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #3F0071; /* Dark purple line */
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-blog-game-strategy__sub-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold accent */
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #3F0071; /* Dark purple border */
  padding-left: 15px;
}

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

.page-blog-game-strategy__image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-blog-game-strategy__game-card {
  background-color: rgba(63, 0, 113, 0.8); /* Semi-transparent main color */
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #FFD700;
}

.page-blog-game-strategy__game-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-blog-game-strategy__card-title {
  font-size: 1.6em;
  color: #FFD700; /* Gold accent */
  margin-bottom: 15px;
}

.page-blog-game-strategy__card-description {
  font-size: 1em;
  line-height: 1.7;
  color: #f0f0f0;
  margin-bottom: 25px;
}

.page-blog-game-strategy__card-button,
.page-blog-game-strategy__bonus-button,
.page-blog-game-strategy__responsible-button {
  display: inline-block;
  background-color: #FFD700;
  color: #3F0071;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-blog-game-strategy__card-button:hover,
.page-blog-game-strategy__bonus-button:hover,
.page-blog-game-strategy__responsible-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-blog-game-strategy__cta-section {
  text-align: center;
  background-color: #3F0071; /* Main color background */
  color: #ffffff;
}

.page-blog-game-strategy__cta-section .page-blog-game-strategy__section-title {
  color: #FFD700;
}

.page-blog-game-strategy__cta-section .page-blog-game-strategy__paragraph {
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

.page-blog-game-strategy__cta-button--primary {
  background-color: #FFD700;
  color: #3F0071;
}

.page-blog-game-strategy__cta-button--secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-blog-game-strategy__cta-button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #FFD700;
}

.page-blog-game-strategy__faq-item {
  background-color: rgba(63, 0, 113, 0.6); /* Slightly lighter main color */
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-game-strategy__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-blog-game-strategy__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-blog-game-strategy__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-blog-game-strategy__faq-answer {
  font-size: 1em;
  line-height: 1.6;
  color: #e0e0e0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding-top 0.5s ease-out;
  padding-top: 0;
}

.page-blog-game-strategy__faq-answer.active {
  max-height: 200px; /* Adjust based on expected content length */
  padding-top: 15px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-game-strategy__hero-title {
    font-size: 3em;
  }
  .page-blog-game-strategy__hero-description {
    font-size: 1.1em;
  }
  .page-blog-game-strategy__section-title {
    font-size: 2em;
  }
  .page-blog-game-strategy__sub-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-blog-game-strategy__hero-section {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header offset */
  }
  .page-blog-game-strategy__hero-content {
    max-width: 90%;
  }
  .page-blog-game-strategy__hero-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-blog-game-strategy__hero-description {
    font-size: 1em;
    margin-bottom: 25px;
  }
  .page-blog-game-strategy__hero-button,
  .page-blog-game-strategy__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-blog-game-strategy__introduction-section,
  .page-blog-game-strategy__general-tips-section,
  .page-blog-game-strategy__game-specific-section,
  .page-blog-game-strategy__bonus-section,
  .page-blog-game-strategy__responsible-gaming-section,
  .page-blog-game-strategy__faq-section,
  .page-blog-game-strategy__cta-section {
    padding: 40px 0;
  }
  .page-blog-game-strategy__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-blog-game-strategy__sub-title {
    font-size: 1.4em;
    margin-top: 30px;
  }
  .page-blog-game-strategy__paragraph {
    font-size: 0.95em;
  }
  .page-blog-game-strategy__game-card {
    padding: 20px;
  }
  .page-blog-game-strategy__card-title {
    font-size: 1.4em;
  }
  .page-blog-game-strategy__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-game-strategy__image,
  .page-blog-game-strategy__game-image {
    max-width: 100%;
    height: auto;
  }
  /* Mobile content area images must not overflow */
  .page-blog-game-strategy img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-blog-game-strategy__hero-title {
    font-size: 1.8em;
  }
  .page-blog-game-strategy__hero-description {
    font-size: 0.9em;
  }
  .page-blog-game-strategy__section-title {
    font-size: 1.6em;
  }
  .page-blog-game-strategy__faq-question {
    font-size: 1.1em;
  }
  .page-blog-game-strategy__faq-answer {
    font-size: 0.9em;
  }
}