/* style/game-guides.css */
.page-game-guides {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0f1a2e; /* Slightly darker than main color for contrast */
}

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

.page-game-guides__hero {
  background: linear-gradient(135deg, #1A2B47, #0f1a2e);
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero title */
  position: relative;
  overflow: hidden;
}

.page-game-guides__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  color: #FFD700; /* Gold for main title */
}

.page-game-guides__hero-subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #E0E0E0;
}

.page-game-guides__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

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

.page-game-guides__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #1A2B47; /* Dark blue */
  border: 2px solid #FFD700;
}

.page-game-guides__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-game-guides__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-game-guides__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A2B47;
  transform: translateY(-3px);
}

.page-game-guides__section {
  padding: 80px 0;
  background-color: #1A2B47; /* Main dark blue for sections */
}

.page-game-guides__section:nth-of-type(even) {
  background-color: #0f1a2e; /* Alternate dark background */
}

.page-game-guides__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-game-guides__section-description {
  font-size: 1.2em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px auto;
  color: #E0E0E0;
}

.page-game-guides__content-grid {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-game-guides__content-grid--reverse {
  flex-direction: row-reverse;
}

.page-game-guides__text-content {
  flex: 1;
  font-size: 1.1em;
  line-height: 1.8;
  color: #E0E0E0;
}

.page-game-guides__text-content p {
  margin-bottom: 20px;
}

.page-game-guides__image-wrapper {
  flex: 1;
  text-align: center;
}

.page-game-guides__image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-game-guides__guide-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-game-guides__guide-card {
  background-color: #2a3d5e; /* Slightly lighter dark blue for cards */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-guides__guide-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.page-game-guides__guide-card-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for card titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-game-guides__guide-card-description {
  font-size: 1em;
  line-height: 1.7;
  color: #B0B0B0;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-game-guides__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  align-self: flex-start;
}

.page-game-guides__other-games .page-game-guides__cta-buttons {
  margin-top: 40px;
  display: flex;
  gap: 20px;
}

.page-game-guides__inline-link {
  color: #FFD700; /* Gold for inline links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-game-guides__inline-link:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-game-guides__faq-items {
  margin-top: 50px;
  display: grid;
  gap: 25px;
}

.page-game-guides__faq-item {
  background-color: #2a3d5e;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-game-guides__faq-question {
  font-size: 1.4em;
  color: #FFD700; /* Gold for FAQ questions */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-game-guides__faq-answer {
  font-size: 1em;
  line-height: 1.7;
  color: #B0B0B0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-guides__hero-title {
    font-size: 2.8em;
  }
  .page-game-guides__section-title {
    font-size: 2.2em;
  }
  .page-game-guides__content-grid {
    flex-direction: column;
    text-align: center;
  }
  .page-game-guides__content-grid--reverse {
    flex-direction: column;
  }
  .page-game-guides__text-content, .page-game-guides__image-wrapper {
    flex: none;
    width: 100%;
  }
  .page-game-guides__guide-list {
    grid-template-columns: 1fr;
  }
  .page-game-guides__hero-actions, .page-game-guides__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-game-guides__btn {
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .page-game-guides__hero {
    padding: 80px 0 60px;
  }
  .page-game-guides__hero-title {
    font-size: 2.2em;
  }
  .page-game-guides__hero-subtitle {
    font-size: 1.1em;
  }
  .page-game-guides__section {
    padding: 60px 0;
  }
  .page-game-guides__section-title {
    font-size: 2em;
  }
  .page-game-guides__guide-card-title {
    font-size: 1.5em;
  }
  .page-game-guides__faq-question {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-game-guides__hero {
    padding: 60px 0 40px;
  }
  .page-game-guides__hero-title {
    font-size: 1.8em;
  }
  .page-game-guides__hero-subtitle {
    font-size: 1em;
  }
  .page-game-guides__btn {
    padding: 12px 20px;
    font-size: 1em;
    width: 90%;
  }
  .page-game-guides__section-title {
    font-size: 1.8em;
  }
  .page-game-guides__section-description {
    font-size: 1em;
  }
  .page-game-guides__guide-card-title {
    font-size: 1.3em;
  }
  .page-game-guides__guide-card-description, .page-game-guides__faq-answer {
    font-size: 0.95em;
  }
}