.page-game-guides {
  background-color: #0A0A0A;
  color: #FFF6D6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-game-guides__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small padding to prevent content touching header */
}

.page-game-guides__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
}

.page-game-guides__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-game-guides__hero-content {
  padding: 40px 20px;
  max-width: 900px;
}

.page-game-guides__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #F2C14E;
  margin-bottom: 20px;
}

.page-game-guides__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-game-guides__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  border: none;
}

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

.page-game-guides__cta-button--secondary {
  background: #111111;
  color: #F2C14E;
  border: 1px solid #3A2A12;
  margin-left: 15px;
}

.page-game-guides__cta-button--secondary:hover {
  box-shadow: 0 5px 15px rgba(255, 211, 107, 0.2);
  border-color: #FFD36B;
}

.page-game-guides__section-title {
  font-size: 2em;
  color: #F2C14E;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-game-guides__introduction-section,
.page-game-guides__game-spotlight-section,
.page-game-guides__general-strategy-section,
.page-game-guides__faq-section,
.page-game-guides__cta-section {
  padding: 60px 0;
}

.page-game-guides__text-content {
  font-size: 1.05em;
  margin-bottom: 20px;
  text-align: center;
}

.page-game-guides__image-content {
  display: block;
  margin: 40px auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

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

.page-game-guides__game-card {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

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

.page-game-guides__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
}

.page-game-guides__card-title {
  font-size: 1.3em;
  color: #F2C14E;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-game-guides__card-title a {
  color: #F2C14E;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.page-game-guides__card-title a:hover {
  color: #FFD36B;
}

.page-game-guides__card-description {
  font-size: 0.95em;
  color: #FFF6D6;
  margin-bottom: 20px;
}

.page-game-guides__card-link {
  display: inline-block;
  color: #FFD36B;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid #FFD36B;
  padding-bottom: 3px;
  transition: color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.page-game-guides__card-link:hover {
  color: #F2C14E;
  border-color: #F2C14E;
}

.page-game-guides__strategy-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-game-guides__list-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 15px 20px;
  font-size: 1.05em;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-game-guides__list-item::before {
  content: '⚡';
  color: #FFD36B;
  margin-right: 15px;
  font-size: 1.2em;
}

.page-game-guides__faq-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 20px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
}

.page-game-guides__faq-question {
  font-size: 1.2em;
  color: #F2C14E;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-game-guides__faq-answer {
  font-size: 1em;
  color: #FFF6D6;
}

.page-game-guides__cta-buttons {
  text-align: center;
  margin-top: 40px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-game-guides__hero-content {
    padding: 30px 15px;
  }

  .page-game-guides__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-game-guides__hero-description {
    font-size: 1em;
  }

  .page-game-guides__section-title {
    font-size: 1.7em;
  }

  .page-game-guides__cta-button {
    width: 100%;
    margin: 10px 0 0 0 !important; /* Override margin-left for secondary button */
  }

  .page-game-guides__cta-button--secondary {
    margin-top: 15px !important;
  }

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

  .page-game-guides__image-content,
  .page-game-guides__card-image {
    max-width: 100%;
    height: auto;
  }

  .page-game-guides__text-content {
    text-align: left;
  }

  .page-game-guides__list-item {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .page-game-guides__list-item::before {
    margin-bottom: 10px;
    margin-right: 0;
  }

  /* Ensure all content images are responsive and don't overflow */
  .page-game-guides img {
    max-width: 100%;
    height: auto;
  }
}