.page-game-strategies-tips {
  font-family: Arial, sans-serif;
  color: #f0f0f0; /* Light text for dark background */
  background-color: #1A1A1A; /* Auxiliary color as main background */
  line-height: 1.6;
  padding-top: var(--header-offset, 120px);
}

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

.page-game-strategies-tips__hero-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-game-strategies-tips__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.6);
}

.page-game-strategies-tips__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
}

.page-game-strategies-tips__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-game-strategies-tips__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-game-strategies-tips__hero-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A1A1A;
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-game-strategies-tips__hero-button:hover {
  background-color: #e0b800;
  color: #000;
}

.page-game-strategies-tips__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  position: relative;
}

.page-game-strategies-tips__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
}

.page-game-strategies-tips__sub-title {
  font-size: 2em;
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-game-strategies-tips__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

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

.page-game-strategies-tips__card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 550px; /* Ensure cards are visually consistent */
}

.page-game-strategies-tips__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-game-strategies-tips__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-game-strategies-tips__card-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-game-strategies-tips__card-description {
  font-size: 1em;
  color: #ccc;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-game-strategies-tips__card-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A1A1A;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: auto; /* Push button to the bottom */
}

.page-game-strategies-tips__card-button:hover {
  background-color: #e0b800;
}

.page-game-strategies-tips__cta-section {
  background: linear-gradient(135deg, #1A1A1A, #333333);
  padding: 80px 20px;
  text-align: center;
  margin-top: 60px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-game-strategies-tips__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-game-strategies-tips__cta-description {
  font-size: 1.4em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-strategies-tips__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A1A1A;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 10px;
  border: none;
  cursor: pointer;
}

.page-game-strategies-tips__cta-button:hover {
  background-color: #e0b800;
  transform: translateY(-3px);
}

.page-game-strategies-tips__cta-button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-game-strategies-tips__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #1A1A1A;
}

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

.page-game-strategies-tips__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-game-strategies-tips__faq-answer {
  font-size: 1.05em;
  color: #ccc;
}

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

.page-game-strategies-tips__detail-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-game-strategies-tips__detail-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-game-strategies-tips__detail-card-title {
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-game-strategies-tips__detail-card-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-game-strategies-tips__detail-card-title a:hover {
  color: #e0b800;
}

.page-game-strategies-tips__detail-card-description {
  font-size: 1em;
  color: #ccc;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-game-strategies-tips__detail-card-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A1A1A;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: auto;
}

.page-game-strategies-tips__detail-card-button:hover {
  background-color: #e0b800;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-game-strategies-tips__hero-title {
    font-size: 3em;
  }
  .page-game-strategies-tips__section-title {
    font-size: 2.5em;
  }
  .page-game-strategies-tips__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-game-strategies-tips__hero-section {
    padding: 60px 0;
  }
  .page-game-strategies-tips__hero-title {
    font-size: 2.5em;
  }
  .page-game-strategies-tips__hero-description {
    font-size: 1.1em;
  }
  .page-game-strategies-tips__section-title {
    font-size: 2em;
  }
  .page-game-strategies-tips__sub-title {
    font-size: 1.6em;
  }
  .page-game-strategies-tips__paragraph,
  .page-game-strategies-tips__card-description,
  .page-game-strategies-tips__faq-answer,
  .page-game-strategies-tips__detail-card-description {
    font-size: 1em;
  }
  .page-game-strategies-tips__grid,
  .page-game-strategies-tips__detail-list {
    grid-template-columns: 1fr;
  }
  .page-game-strategies-tips__card {
    min-height: auto;
  }
  .page-game-strategies-tips__cta-title {
    font-size: 2em;
  }
  .page-game-strategies-tips__cta-description {
    font-size: 1.1em;
  }
  .page-game-strategies-tips__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    margin: 5px;
  }
  .page-game-strategies-tips__card-image,
  .page-game-strategies-tips__detail-card-image {
    max-width: 100%;
    height: auto;
  }
  .page-game-strategies-tips__card-image[width][height],
  .page-game-strategies-tips__detail-card-image[width][height] {
    width: auto; /* Allow height auto to scale proportionally */
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-game-strategies-tips__hero-title {
    font-size: 2em;
  }
  .page-game-strategies-tips__section-title {
    font-size: 1.8em;
  }
  .page-game-strategies-tips__cta-title {
    font-size: 1.8em;
  }
  .page-game-strategies-tips__hero-button,
  .page-game-strategies-tips__cta-button {
    width: 100%;
    display: block;
    margin: 10px 0;
  }
}