.page-game-strategy-tips {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for general text on dark backgrounds */
  background-color: #1A1A1A; /* Very dark background */
}

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

.page-game-strategy-tips__hero-section {
  background: linear-gradient(135deg, #0A2E59 0%, #FFA500 100%);
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-game-strategy-tips__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-strategy-tips__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #F0F0F0;
}

.page-game-strategy-tips__section-title {
  font-size: 2.5em;
  color: #FFA500; /* Accent color for titles */
  text-align: center;
  margin-bottom: 50px;
  padding-top: 40px;
  position: relative;
}

.page-game-strategy-tips__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #0A2E59;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-game-strategy-tips__sub-title {
  font-size: 1.8em;
  color: #FFA500;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #0A2E59;
  padding-bottom: 10px;
}

.page-game-strategy-tips__content-section {
  padding: 60px 0;
  background-color: #1A1A1A;
}

.page-game-strategy-tips__bg-dark {
  background-color: #0A2E59; /* Main brand color for alternating sections */
}

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

.page-game-strategy-tips__paragraph a {
  color: #FFA500;
  text-decoration: none;
}

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

.page-game-strategy-tips__image-wrapper {
  margin: 40px auto;
  text-align: center;
}

.page-game-strategy-tips__image-wrapper--small {
  max-width: 600px;
}

.page-game-strategy-tips__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-game-strategy-tips__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-game-strategy-tips__list li {
  margin-bottom: 10px;
}

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

.page-game-strategy-tips__btn--primary {
  background-color: #FFA500;
  color: #0A2E59;
}

.page-game-strategy-tips__btn--primary:hover {
  background-color: #ffc04d;
  color: #000000;
}

.page-game-strategy-tips__btn--secondary {
  background-color: #0A2E59;
  color: #FFA500;
  border: 2px solid #FFA500;
}

.page-game-strategy-tips__btn--secondary:hover {
  background-color: #FFA500;
  color: #0A2E59;
}

.page-game-strategy-tips__game-strategy-card {
  background-color: #1A1A1A;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  text-align: left;
  border: 1px solid #333;
}

.page-game-strategy-tips__game-strategy-card .page-game-strategy-tips__card-title {
  font-size: 2em;
  color: #FFA500;
  margin-top: 0;
  margin-bottom: 20px;
}

.page-game-strategy-tips__cta-section {
  background-color: #1A1A1A;
  padding: 80px 0;
  text-align: center;
}

.page-game-strategy-tips__cta-buttons {
  margin-top: 40px;
}

.page-game-strategy-tips__faq-section {
  padding: 60px 0;
  background-color: #0A2E59;
}

.page-game-strategy-tips__faq-item {
  background-color: #1A1A1A;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-game-strategy-tips__faq-question {
  font-size: 1.4em;
  color: #FFA500;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-game-strategy-tips__faq-answer {
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-game-strategy-tips__faq-answer a {
  color: #FFA500;
  text-decoration: none;
}

.page-game-strategy-tips__faq-answer a:hover {
  text-decoration: underline;
}

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

  .page-game-strategy-tips__hero-description,
  .page-game-strategy-tips__paragraph,
  .page-game-strategy-tips__list,
  .page-game-strategy-tips__faq-answer {
    font-size: 1em;
  }

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

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

  .page-game-strategy-tips__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

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

  .page-game-strategy-tips__game-strategy-card .page-game-strategy-tips__card-title {
    font-size: 1.8em;
  }

  .page-game-strategy-tips__faq-question {
    font-size: 1.2em;
  }
}

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

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

  .page-game-strategy-tips__sub-title {
    font-size: 1.3em;
  }

  .page-game-strategy-tips__btn {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
  }

  .page-game-strategy-tips__cta-buttons .page-game-strategy-tips__btn {
    width: 100%;
    max-width: 280px;
  }
}