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

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

.page-resources-game-strategy-tips__section {
  padding: 60px 0;
}

.page-resources-game-strategy-tips__section-title {
  font-size: 36px;
  color: #007bff;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-resources-game-strategy-tips__paragraph {
  font-size: 18px;
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources-game-strategy-tips__list {
  list-style: disc inside;
  font-size: 18px;
  margin-bottom: 20px;
  padding-left: 20px;
}

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

/* Hero Section */
.page-resources-game-strategy-tips__hero {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #0056b3; /* Darker primary for contrast */
}

.page-resources-game-strategy-tips__hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-resources-game-strategy-tips__hero-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 30px;
}

.page-resources-game-strategy-tips__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

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

.page-resources-game-strategy-tips__hero-description {
  font-size: 20px;
  color: #e0e0e0;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-game-strategy-tips__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #ffc107;
  color: #333333;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-game-strategy-tips__cta-button:hover {
  background: #e0a800;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-game-strategy-tips__cta-button--secondary {
  background: #007bff;
  color: #ffffff;
}

.page-resources-game-strategy-tips__cta-button--secondary:hover {
  background: #0056b3;
  color: #ffffff;
}

.page-resources-game-strategy-tips__cta-button--final {
  background: #ffc107;
  color: #333333;
  margin-bottom: 0;
}

.page-resources-game-strategy-tips__cta-button--final:hover {
  background: #e0a800;
}

/* Principles Section */
.page-resources-game-strategy-tips__principles {
  background-color: #ffffff;
}

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

.page-resources-game-strategy-tips__card {
  background-color: #fefefe;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-resources-game-strategy-tips__card-title {
  font-size: 24px;
  color: #007bff;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-game-strategy-tips__card-description {
  font-size: 16px;
  color: #555555;
  text-align: justify;
}

/* Game Specific Section */
.page-resources-game-strategy-tips__game-specific {
  background-color: #f0f4f8;
}

.page-resources-game-strategy-tips__game-category {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  gap: 30px;
}

.page-resources-game-strategy-tips__game-category:last-child {
  margin-bottom: 0;
}

.page-resources-game-strategy-tips__game-category--reverse {
  flex-direction: row-reverse;
}

.page-resources-game-strategy-tips__game-image {
  width: 50%;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-game-strategy-tips__game-content {
  width: 50%;
}

.page-resources-game-strategy-tips__game-title {
  font-size: 30px;
  color: #007bff;
  margin-bottom: 20px;
  font-weight: bold;
}

/* Promotions Section */
.page-resources-game-strategy-tips__promotions {
  background-color: #ffffff;
  text-align: center;
}

/* Advanced Tips Section */
.page-resources-game-strategy-tips__advanced-tips {
  background-color: #f0f4f8;
}

.page-resources-game-strategy-tips__list--columns {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-resources-game-strategy-tips__list--columns li {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  font-size: 17px;
  text-align: left;
  position: relative;
  padding-left: 40px;
}

.page-resources-game-strategy-tips__list--columns li::before {
  content: '✓';
  position: absolute;
  left: 15px;
  top: 20px;
  color: #ffc107;
  font-weight: bold;
  font-size: 20px;
}

/* FAQ Section */
.page-resources-game-strategy-tips__faq {
  background-color: #ffffff;
}

.page-resources-game-strategy-tips__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #f5f5f5;
}

.faq-question h3 {
  font-size: 18px;
  color: #333333;
  margin: 0;
  flex-grow: 1;
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #007bff;
  transition: transform 0.3s ease;
  margin-left: 15px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 15px;
  background: #f9f9f9;
  color: #555555;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed */
  padding: 15px;
  border-top: 1px solid #e0e0e0;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* Conclusion Section */
.page-resources-game-strategy-tips__conclusion {
  background-color: #007bff;
  color: #ffffff;
  text-align: center;
}

.page-resources-game-strategy-tips__conclusion .page-resources-game-strategy-tips__section-title {
  color: #ffffff;
}

.page-resources-game-strategy-tips__conclusion .page-resources-game-strategy-tips__paragraph {
  color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-resources-game-strategy-tips__hero-title {
    font-size: 40px;
  }

  .page-resources-game-strategy-tips__section-title {
    font-size: 30px;
  }

  .page-resources-game-strategy-tips__paragraph,
  .page-resources-game-strategy-tips__list li,
  .page-resources-game-strategy-tips__card-description {
    font-size: 16px;
  }

  .page-resources-game-strategy-tips__game-category {
    flex-direction: column;
  }

  .page-resources-game-strategy-tips__game-category--reverse {
    flex-direction: column;
  }

  .page-resources-game-strategy-tips__game-image,
  .page-resources-game-strategy-tips__game-content {
    width: 100%;
  }

  .page-resources-game-strategy-tips__game-image {
    margin-bottom: 20px;
  }

  .page-resources-game-strategy-tips__list--columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-resources-game-strategy-tips__hero-section {
    padding: 40px 15px;
  }
  
  .page-resources-game-strategy-tips__hero-image {
    border-radius: 4px;
  }

  .page-resources-game-strategy-tips__hero-title {
    font-size: 32px;
  }

  .page-resources-game-strategy-tips__hero-description {
    font-size: 16px;
  }
  
  .page-resources-game-strategy-tips__cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }

  .page-resources-game-strategy-tips__section {
    padding: 40px 0;
  }

  .page-resources-game-strategy-tips__section-title {
    font-size: 26px;
    margin-bottom: 30px;
  }

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

  .page-resources-game-strategy-tips__card-title {
    font-size: 20px;
  }

  .page-resources-game-strategy-tips__game-title {
    font-size: 24px;
  }

  .page-resources-game-strategy-tips__game-image {
    height: 250px;
  }

  .faq-question {
    padding: 12px;
  }

  .faq-question h3 {
    font-size: 16px;
  }

  .faq-toggle {
    font-size: 20px;
  }

  .faq-item.active .faq-answer {
    padding: 12px;
  }
}