/* style/game-guides.css */
.page-game-guides {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

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

.page-game-guides__section {
  padding: 60px 0;
  text-align: center;
}

.page-game-guides__section:nth-of-type(even) {
  background-color: #f8f9fa;
}

.page-game-guides__section-title {
  font-size: 2.5em;
  color: #007BFF;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-game-guides__section-subtitle {
  font-size: 1.2em;
  color: #555;
  margin-bottom: 40px;
}

.page-game-guides__hero {
  background: linear-gradient(135deg, #007BFF, #4da3ff);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-guides__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-game-guides__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-guides__hero-cta-group {
  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: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-game-guides__btn--primary {
  background-color: #FFC107;
  color: #0056b3; /* Darker blue for contrast on orange */
}

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

.page-game-guides__btn--secondary {
  background-color: #fff;
  color: #007BFF;
  border: 2px solid #007BFF;
}

.page-game-guides__btn--secondary:hover {
  background-color: #f0f8ff;
  transform: translateY(-2px);
}

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

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

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

.page-game-guides__text-content {
  flex: 1;
}

.page-game-guides__text-content h3 {
  color: #007BFF;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-game-guides__text-content p {
  margin-bottom: 15px;
  color: #444;
}

.page-game-guides__text-content ul {
  list-style: disc inside;
  text-align: left;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-game-guides__text-content li {
  margin-bottom: 8px;
  color: #444;
}

.page-game-guides__image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

.page-game-guides__card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-game-guides__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-game-guides__card-img {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-game-guides__card-title a {
  color: inherit;
  text-decoration: none;
}

.page-game-guides__card-title a:hover {
  text-decoration: underline;
}

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

.page-game-guides__card-link {
  color: #FFC107;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-game-guides__card-link:hover {
  color: #e0a800;
  text-decoration: underline;
}

.page-game-guides__grid--detailed {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.page-game-guides__card--detailed {
  text-align: left;
  padding: 25px;
  display: block;
}

.page-game-guides__card--detailed .page-game-guides__btn {
  margin-top: 15px;
}

.page-game-guides__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
  text-align: center;
}

.page-game-guides__feature-item {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.page-game-guides__feature-item:hover {
  transform: translateY(-5px);
}

.page-game-guides__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  color: #007BFF;
}

.page-game-guides__feature-item h3 {
  font-size: 1.3em;
  color: #007BFF;
  margin-bottom: 10px;
}

.page-game-guides__feature-item p {
  color: #555;
  font-size: 0.95em;
}

.page-game-guides__cta-bottom {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-game-guides__faq-item {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 25px;
  margin-bottom: 20px;
  text-align: left;
}

.page-game-guides__faq-question {
  font-size: 1.3em;
  color: #007BFF;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-game-guides__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #FFC107;
  transition: transform 0.3s ease;
}

.page-game-guides__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-game-guides__faq-answer {
  color: #555;
  font-size: 1em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.page-game-guides__faq-answer.active {
  max-height: 200px; /* Adjust based on expected content length */
  padding-top: 10px;
}

.page-game-guides__inline-link {
  color: #007BFF;
  text-decoration: none;
  font-weight: bold;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-guides__hero-title {
    font-size: 2.8em;
  }
  .page-game-guides__hero-description {
    font-size: 1.1em;
  }
  .page-game-guides__section-title {
    font-size: 2em;
  }
  .page-game-guides__content-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .page-game-guides__content-wrapper--reverse {
    flex-direction: column;
  }
  .page-game-guides__image-wrapper {
    margin-top: 30px;
  }
  .page-game-guides__grid {
    grid-template-columns: 1fr;
  }
  .page-game-guides__features-grid {
    grid-template-columns: 1fr;
  }
  .page-game-guides__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-game-guides__cta-bottom {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .page-game-guides__hero {
    padding: 80px 0;
  }
  .page-game-guides__hero-title {
    font-size: 2.2em;
  }
  .page-game-guides__hero-description {
    font-size: 1em;
  }
  .page-game-guides__section {
    padding: 40px 0;
  }
  .page-game-guides__section-title {
    font-size: 1.8em;
  }
  .page-game-guides__faq-question {
    font-size: 1.1em;
  }
  .page-game-guides__faq-answer {
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .page-game-guides__hero-title {
    font-size: 1.8em;
  }
  .page-game-guides__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
}