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

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

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

.page-resources-lecai8882-game-strategy-tips__hero-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 204, 0, 0.1);
  border-radius: 50%;
  animation: page-resources-lecai8882-game-strategy-tips__pulse 3s infinite alternate;
}

.page-resources-lecai8882-game-strategy-tips__hero-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: rgba(255, 204, 0, 0.15);
  border-radius: 50%;
  animation: page-resources-lecai8882-game-strategy-tips__pulse 4s infinite alternate reverse;
}

@keyframes page-resources-lecai8882-game-strategy-tips__pulse {
  0% { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.1); opacity: 1; }
}

.page-resources-lecai8882-game-strategy-tips__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFCC00;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-lecai8882-game-strategy-tips__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-lecai8882-game-strategy-tips__hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-resources-lecai8882-game-strategy-tips__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-lecai8882-game-strategy-tips__btn--primary {
  background-color: #FFCC00;
  color: #003366;
  border: 2px solid #FFCC00;
}

.page-resources-lecai8882-game-strategy-tips__btn--primary:hover {
  background-color: #e6b800;
  border-color: #e6b800;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-lecai8882-game-strategy-tips__btn--secondary {
  background-color: transparent;
  color: #FFCC00;
  border: 2px solid #FFCC00;
}

.page-resources-lecai8882-game-strategy-tips__btn--secondary:hover {
  background-color: #FFCC00;
  color: #003366;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-lecai8882-game-strategy-tips__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-resources-lecai8882-game-strategy-tips__content-section {
  padding: 60px 0;
}

.page-resources-lecai8882-game-strategy-tips__bg-light {
  background-color: #f0f4f8;
}

.page-resources-lecai8882-game-strategy-tips__bg-dark {
  background-color: #003366;
  color: #ffffff;
}

.page-resources-lecai8882-game-strategy-tips__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

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

.page-resources-lecai8882-game-strategy-tips__section-title--light {
  color: #FFCC00;
}

.page-resources-lecai8882-game-strategy-tips__section-title--light::after {
  background-color: #ffffff;
}

.page-resources-lecai8882-game-strategy-tips__sub-section-title {
  font-size: 1.8em;
  color: #003366;
  margin-top: 30px;
  margin-bottom: 20px;
  border-left: 5px solid #FFCC00;
  padding-left: 15px;
}

.page-resources-lecai8882-game-strategy-tips__sub-section-title--light {
  color: #FFCC00;
  border-left-color: #ffffff;
}

.page-resources-lecai8882-game-strategy-tips__text--light {
  color: #e0e0e0;
}

.page-resources-lecai8882-game-strategy-tips__link--light {
  color: #FFCC00;
  text-decoration: underline;
}

.page-resources-lecai8882-game-strategy-tips__link--light:hover {
  color: #ffffff;
}

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

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

.page-resources-lecai8882-game-strategy-tips__game-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-resources-lecai8882-game-strategy-tips__game-img {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #eee;
}

.page-resources-lecai8882-game-strategy-tips__game-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 15px;
}

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

.page-resources-lecai8882-game-strategy-tips__image--right {
  float: right;
  margin-left: 30px;
  margin-bottom: 20px;
  width: 40%;
  max-width: 450px;
}

.page-resources-lecai8882-game-strategy-tips__app-download-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  margin-top: 40px;
  padding: 30px;
  background-color: rgba(255, 204, 0, 0.1);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-lecai8882-game-strategy-tips__app-qr {
  width: 150px;
  height: 150px;
  border: 5px solid #ffffff;
  border-radius: 5px;
}

.page-resources-lecai8882-game-strategy-tips__faq {
  margin-top: 30px;
}

.page-resources-lecai8882-game-strategy-tips__faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  padding: 25px;
}

.page-resources-lecai8882-game-strategy-tips__faq-question {
  font-size: 1.3em;
  color: #003366;
  margin-bottom: 10px;
}

.page-resources-lecai8882-game-strategy-tips__faq-answer {
  color: #555555;
}

.page-resources-lecai8882-game-strategy-tips__cta-section {
  background: linear-gradient(45deg, #003366, #0055aa);
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-resources-lecai8882-game-strategy-tips__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-resources-lecai8882-game-strategy-tips__main-title {
    font-size: 2.8em;
  }
  .page-resources-lecai8882-game-strategy-tips__section-title {
    font-size: 2em;
  }
  .page-resources-lecai8882-game-strategy-tips__sub-section-title {
    font-size: 1.5em;
  }
  .page-resources-lecai8882-game-strategy-tips__image--right {
    float: none;
    margin: 0 auto 30px;
    width: 80%;
  }
}

@media (max-width: 768px) {
  .page-resources-lecai8882-game-strategy-tips__hero-section {
    padding: 80px 0;
  }
  .page-resources-lecai8882-game-strategy-tips__main-title {
    font-size: 2.2em;
  }
  .page-resources-lecai8882-game-strategy-tips__subtitle {
    font-size: 1.1em;
  }
  .page-resources-lecai8882-game-strategy-tips__hero-cta {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-lecai8882-game-strategy-tips__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-resources-lecai8882-game-strategy-tips__section-title {
    font-size: 1.8em;
  }
  .page-resources-lecai8882-game-strategy-tips__game-grid {
    grid-template-columns: 1fr;
  }
  .page-resources-lecai8882-game-strategy-tips__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-resources-lecai8882-game-strategy-tips__main-title {
    font-size: 1.8em;
  }
  .page-resources-lecai8882-game-strategy-tips__btn {
    width: 90%;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-resources-lecai8882-game-strategy-tips__btn--large {
    padding: 15px 25px;
    font-size: 1.1em;
  }
  .page-resources-lecai8882-game-strategy-tips__section-title {
    font-size: 1.5em;
  }
  .page-resources-lecai8882-game-strategy-tips__sub-section-title {
    font-size: 1.3em;
  }
  .page-resources-lecai8882-game-strategy-tips__faq-question {
    font-size: 1.1em;
  }
}