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

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

.page-game-guides__hero {
  background: linear-gradient(135deg, #1A2E47, #0F1D2F);
  padding: 100px 0;
  text-align: center;
  color: #FFD700;
}

.page-game-guides__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-game-guides__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
}

.page-game-guides__introduction, .page-game-guides__why-f168, .page-game-guides__guide-categories, .page-game-guides__responsible-gaming, .page-game-guides__faq, .page-game-guides__contact-promo {
  padding: 60px 0;
}

.page-game-guides__introduction p, .page-game-guides__why-f168 p, .page-game-guides__responsible-gaming p, .page-game-guides__faq-answer {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #B0B0B0;
  text-align: justify;
}

.page-game-guides__image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-game-guides__feature-list, .page-game-guides__responsible-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  text-align: center;
}

.page-game-guides__feature-list li, .page-game-guides__responsible-list li {
  background-color: #1A2E47;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 5px;
  font-size: 1.1em;
  color: #E0E0E0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-game-guides__feature-list li strong {
  color: #FFD700;
}

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

.page-game-guides__guide-item {
  background-color: #1A2E47;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-game-guides__guide-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 2px solid #FFD700;
}

.page-game-guides__guide-title {
  font-size: 1.5em;
  margin: 20px 15px 10px;
  color: #FFD700;
}

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

.page-game-guides__guide-title a:hover {
  color: #E0E0E0;
}

.page-game-guides__guide-description {
  font-size: 0.95em;
  color: #B0B0B0;
  padding: 0 15px 15px;
  min-height: 70px; /* Ensure consistent height */
}

.page-game-guides__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  margin: 10px;
  cursor: pointer;
  border: none;
}

.page-game-guides__btn--primary {
  background-color: #FFD700;
  color: #1A2E47;
}

.page-game-guides__btn--primary:hover {
  background-color: #E0C000;
  color: #0F1D2F;
}

.page-game-guides__btn--secondary {
  background-color: #1A2E47;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-game-guides__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A2E47;
}

.page-game-guides__btn--detail {
  background-color: #0F1D2F;
  color: #FFD700;
  border: 1px solid #FFD700;
  margin-top: auto;
  margin-bottom: 20px;
}

.page-game-guides__btn--detail:hover {
  background-color: #FFD700;
  color: #1A2E47;
}

.page-game-guides__btn--outline {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-game-guides__btn--outline:hover {
  background-color: #FFD700;
  color: #1A2E47;
}

.page-game-guides__btn--lg {
  padding: 15px 30px;
  font-size: 1.1em;
}

.page-game-guides__cta-banner {
  background: linear-gradient(90deg, #1A2E47, #0F1D2F);
  padding: 80px 0;
  text-align: center;
  margin-top: 60px;
}

.page-game-guides__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-game-guides__cta-description {
  font-size: 1.3em;
  color: #E0E0E0;
  margin-bottom: 40px;
}

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

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

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

.page-game-guides__contact-promo {
  text-align: center;
  background-color: #0F1D2F;
  padding-bottom: 80px;
}

.page-game-guides__contact-promo .page-game-guides__section-title {
  padding-top: 0;
}

.page-game-guides__contact-promo p {
  max-width: 700px;
  margin: 0 auto 30px auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-guides__hero-title {
    font-size: 2.8em;
  }
  .page-game-guides__hero-subtitle {
    font-size: 1.2em;
  }
  .page-game-guides__section-title {
    font-size: 2em;
  }
  .page-game-guides__cta-title {
    font-size: 2.2em;
  }
  .page-game-guides__cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-game-guides__hero {
    padding: 80px 0;
  }
  .page-game-guides__hero-title {
    font-size: 2.2em;
  }
  .page-game-guides__hero-subtitle {
    font-size: 1em;
  }
  .page-game-guides__guide-list {
    grid-template-columns: 1fr;
  }
  .page-game-guides__btn--lg {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-game-guides__introduction, .page-game-guides__why-f168, .page-game-guides__guide-categories, .page-game-guides__responsible-gaming, .page-game-guides__faq, .page-game-guides__contact-promo {
    padding: 40px 0;
  }
  .page-game-guides__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
    padding-top: 40px;
  }
  .page-game-guides__cta-title {
    font-size: 1.8em;
  }
  .page-game-guides__cta-description {
    font-size: 1em;
  }
  .page-game-guides__faq-question {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-game-guides__hero {
    padding: 60px 0;
  }
  .page-game-guides__hero-title {
    font-size: 1.8em;
  }
  .page-game-guides__hero-subtitle {
    font-size: 0.9em;
  }
  .page-game-guides__btn {
    margin: 5px;
    padding: 10px 20px;
  }
  .page-game-guides__btn--lg {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-game-guides__cta-banner {
    padding: 60px 0;
  }
  .page-game-guides__cta-title {
    font-size: 1.5em;
  }
  .page-game-guides__cta-description {
    font-size: 0.9em;
  }
}