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

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

/* Hero Section */
.page-game-guides__hero {
  position: relative;
  background: linear-gradient(135deg, #0A2463 0%, #1A3C83 100%); /* Dark blue gradient */
  color: #FFFFFF;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  min-height: 450px; /* Ensure sufficient height */
}

.page-game-guides__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.15; /* Subtle background image */
}

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

.page-game-guides__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

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

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

.page-game-guides__hero-btn {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A2463; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-game-guides__hero-btn:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

/* Intro Section */
.page-game-guides__intro {
  padding: 60px 0;
  background-color: #FFFFFF;
  text-align: center;
}

.page-game-guides__intro-title {
  font-size: 2.5em;
  color: #0A2463; /* Dark blue title */
  margin-bottom: 25px;
}

.page-game-guides__intro-text {
  font-size: 1.1em;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-guides__intro-cta {
  display: inline-block;
  background-color: #0A2463; /* Dark blue button */
  color: #FFD700; /* Gold text on dark blue */
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  margin-top: 30px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-game-guides__intro-cta:hover {
  background-color: #1A3C83;
  transform: translateY(-2px);
}

/* Details Section - Guide List */
.page-game-guides__details {
  padding: 80px 0;
  background-color: #f2f4f8;
}

.page-game-guides__details-title {
  font-size: 2.8em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 20px;
}

.page-game-guides__details-subtitle {
  font-size: 1.2em;
  color: #555;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-game-guides__guide-item {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 6px 20px 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;
  justify-content: space-between;
}

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

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

.page-game-guides__guide-item-title {
  font-size: 1.6em;
  color: #0A2463;
  margin-bottom: 15px;
  flex-grow: 1;
}

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

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

.page-game-guides__guide-description {
  font-size: 1em;
  color: #666;
  margin-bottom: 25px;
}

.page-game-guides__guide-btn {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A2463; /* Dark blue text on gold */
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-game-guides__guide-btn:hover {
  background-color: #e6c200;
  transform: translateY(-1px);
}

/* Why Choose Section */
.page-game-guides__why-choose {
  padding: 80px 0;
  background-color: #0A2463;
  color: #FFFFFF;
  text-align: center;
  position: relative;
}

.page-game-guides__why-choose-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold title */
  margin-bottom: 50px;
}

.page-game-guides__why-choose-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-game-guides__why-choose-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-game-guides__why-choose-item h3 {
  font-size: 1.8em;
  color: #FFD700; /* Gold for item titles */
  margin-bottom: 15px;
}

.page-game-guides__why-choose-item p {
  font-size: 1.05em;
  color: #e0e0e0;
}

.page-game-guides__why-choose-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  margin-top: 40px;
}

/* FAQ Section */
.page-game-guides__faq {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-game-guides__faq-title {
  font-size: 2.8em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 50px;
}

.page-game-guides__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-game-guides__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-game-guides__faq-item h3 {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 10px;
}

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

.page-game-guides__inline-link {
  color: #0A2463;
  text-decoration: underline;
  font-weight: bold;
}

.page-game-guides__inline-link:hover {
  color: #FFD700;
}

/* CTA Section */
.page-game-guides__cta {
  padding: 80px 0;
  background: linear-gradient(45deg, #0A2463, #1A3C83);
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

.page-game-guides__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.page-game-guides__cta-btn {
  display: inline-block;
  padding: 16px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.15em;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-game-guides__cta-btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A2463; /* Dark blue text on gold */
}

.page-game-guides__cta-btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

.page-game-guides__cta-btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2463; /* Dark blue text on gold */
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-game-guides__cta-image {
  max-width: 500px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-top: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-guides__hero-title {
    font-size: 2.5em;
  }
  .page-game-guides__hero-description {
    font-size: 1.1em;
  }
  .page-game-guides__intro-title,
  .page-game-guides__details-title,
  .page-game-guides__why-choose-title,
  .page-game-guides__faq-title,
  .page-game-guides__cta-title {
    font-size: 2.2em;
  }
  .page-game-guides__guide-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-game-guides__why-choose-content {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-game-guides__hero {
    padding: 80px 0;
  }
  .page-game-guides__hero-title {
    font-size: 2em;
  }
  .page-game-guides__hero-description {
    font-size: 1em;
  }
  .page-game-guides__hero-btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-game-guides__intro,
  .page-game-guides__details,
  .page-game-guides__why-choose,
  .page-game-guides__faq,
  .page-game-guides__cta {
    padding: 60px 0;
  }
  .page-game-guides__intro-title,
  .page-game-guides__details-title,
  .page-game-guides__why-choose-title,
  .page-game-guides__faq-title,
  .page-game-guides__cta-title {
    font-size: 1.8em;
  }
  .page-game-guides__guide-item-title {
    font-size: 1.4em;
  }
  .page-game-guides__why-choose-item h3 {
    font-size: 1.5em;
  }
  .page-game-guides__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .page-game-guides__cta-btn {
    width: 80%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-game-guides__hero-title {
    font-size: 1.8em;
  }
  .page-game-guides__intro-title,
  .page-game-guides__details-title,
  .page-game-guides__why-choose-title,
  .page-game-guides__faq-title,
  .page-game-guides__cta-title {
    font-size: 1.6em;
  }
  .page-game-guides__container {
    padding: 0 15px;
  }
  .page-game-guides__guide-list {
    grid-template-columns: 1fr;
  }
  .page-game-guides__why-choose-content {
    grid-template-columns: 1fr;
  }
  .page-game-guides__cta-btn {
    width: 90%;
  }
}