.page-game-guides {
  background-color: #0D0E12;
  color: #FFF3E6;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
}

.page-game-guides__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 15px 40px;
  text-align: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-game-guides__hero-content {
  width: 100%;
}

.page-game-guides__main-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #FFA53A, #FFB04D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.page-game-guides__hero-description {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-guides__cta-button {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  min-width: 150px;
  text-align: center;
}

.page-game-guides__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 165, 58, 0.4);
}

.page-game-guides__hero-image-wrapper {
  width: 100%;
  max-width: 1000px; /* Adjust max-width as needed */
  margin: 0;
  padding: 0;
}

.page-game-guides__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px;
}

.page-game-guides__section {
  padding: 40px 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-game-guides__section-title {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  background: linear-gradient(90deg, #FFB04D, #FFA53A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.page-game-guides__game-guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  justify-content: center;
}

.page-game-guides__guide-card {
  background-color: #17191F;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #A84F0C;
}

.page-game-guides__guide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 176, 77, 0.3);
}

.page-game-guides__guide-link {
  text-decoration: none;
  color: #FFF3E6;
  display: block;
  height: 100%;
}

.page-game-guides__guide-card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-game-guides__guide-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  padding: 15px 15px 5px;
  margin: 0;
  color: #FFB04D;
}

.page-game-guides__guide-card-description {
  font-size: 0.95rem;
  line-height: 1.5;
  padding: 0 15px 15px;
  margin: 0;
  color: #FFF3E6;
}

.page-game-guides__read-more {
  display: block;
  padding: 10px 15px 15px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #FFA53A;
  text-align: right;
}

.page-game-guides__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-game-guides__faq-item {
  background-color: #17191F;
  border-radius: 8px;
  padding: 20px;
  border: 1px solid #A84F0C;
}

.page-game-guides__faq-question {
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 10px;
  color: #FFB04D;
}

.page-game-guides__faq-answer {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
  color: #FFF3E6;
}

.page-game-guides__section--cta {
  text-align: center;
  padding: 60px 15px;
  background: linear-gradient(135deg, #D96800 0%, #FF8C1A 100%);
  border-radius: 10px;
  margin-bottom: 40px;
}

.page-game-guides__cta-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #FFF3E6;
  margin-bottom: 15px;
}

.page-game-guides__cta-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF3E6;
}

.page-game-guides__cta-button--large {
  padding: 15px 40px;
  font-size: 1.1rem;
  min-width: 200px;
}

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-game-guides__hero-section {
    padding: 15px;
  }

  .page-game-guides__main-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .page-game-guides__hero-description {
    font-size: clamp(0.95rem, 3vw, 1.1rem);
  }

  .page-game-guides__hero-image-wrapper {
    order: 1; /* Image first on mobile */
  }

  .page-game-guides__hero-content {
    order: 2; /* Content second on mobile */
  }

  .page-game-guides__section-title {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }

  .page-game-guides__game-guide-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .page-game-guides__guide-card-image {
    height: 180px;
  }

  .page-game-guides__guide-card-title {
    font-size: 1.2rem;
  }

  .page-game-guides__faq-question {
    font-size: 1.05rem;
  }

  .page-game-guides__faq-answer {
    font-size: 0.95rem;
  }

  .page-game-guides__cta-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .page-game-guides__cta-description {
    font-size: clamp(0.95rem, 3vw, 1.1rem);
  }
}

@media (max-width: 549px) {
  .page-game-guides__hero-section {
    padding: 10px;
  }

  .page-game-guides__game-guide-grid {
    grid-template-columns: 1fr;
  }

  .page-game-guides__guide-card-image {
    height: 160px;
  }

  .page-game-guides__cta-button {
    width: 100%;
    max-width: 280px;
  }

  .page-game-guides__section,
  .page-game-guides__section--cta {
    padding: 30px 10px;
  }
}

/* Ensure all content area images are responsive and not smaller than 200px */
.page-game-guides img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .page-game-guides img {
    max-width: 100% !important;
    height: auto !important;
  }
}