/* style/game-guides.css */
.page-game-guides {
  font-family: 'Arial', sans-serif;
  color: #f5f5f5; /* Light text for dark background */
  background-color: #0A2239; /* Main dark background */
  line-height: 1.6;
}

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

.page-game-guides__hero {
  background: linear-gradient(135deg, #0A2239, #1a3a5a); /* Dark blue gradient */
  padding: 80px 0;
  text-align: center;
  color: #E0B400; /* Accent color for hero title */
}

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

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

.page-game-guides__section {
  padding: 60px 0;
  background-color: #0A2239;
}

.page-game-guides__section--dark {
  background-color: #1a3a5a;
}

.page-game-guides__section--light {
  background-color: #0A2239;
}

.page-game-guides__section-title {
  font-size: 2.5em;
  color: #E0B400; /* Accent color */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-game-guides__text {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #f5f5f5;
}

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

.page-game-guides__card {
  background-color: #1a3a5a; /* Slightly lighter dark blue */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-game-guides__card-title {
  font-size: 1.5em;
  color: #E0B400; /* Accent color */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-game-guides__card-text {
  font-size: 1em;
  color: #cccccc;
}

.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;
  margin-top: 20px;
  font-size: 1.1em;
}

.page-game-guides__btn--primary {
  background-color: #E0B400; /* Accent color */
  color: #0A2239; /* Main dark blue */
  border: 2px solid #E0B400;
}

.page-game-guides__btn--primary:hover {
  background-color: #ffc800; /* Lighter accent */
  color: #000;
}

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

.page-game-guides__btn--secondary:hover {
  background-color: #E0B400;
  color: #0A2239;
}

.page-game-guides__game-type {
  background-color: #1a3a5a;
  padding: 40px;
  border-radius: 10px;
  margin-bottom: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-game-guides__game-type:last-child {
  margin-bottom: 0;
}

.page-game-guides__game-title {
  font-size: 2em;
  color: #E0B400;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-game-guides__game-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-game-guides__game-description {
  font-size: 1.1em;
  color: #cccccc;
  margin-bottom: 30px;
  text-align: left;
}

.page-game-guides__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-game-guides__list li {
  background-color: #1a3a5a;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
}

.page-game-guides__list li:last-child {
  margin-bottom: 0;
}

.page-game-guides__list-title {
  font-size: 1.6em;
  color: #E0B400;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-game-guides__list-text {
  font-size: 1em;
  color: #cccccc;
}

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

.page-game-guides__detail-item {
  background-color: #1a3a5a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-game-guides__detail-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-game-guides__detail-title a {
  color: #E0B400; /* Accent color */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-game-guides__detail-title a:hover {
  color: #ffc800;
  text-decoration: underline;
}

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

.page-game-guides__faq {
  background-color: #0A2239;
}

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

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

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

.page-game-guides__cta-bottom {
  background: linear-gradient(45deg, #E0B400, #ffc800); /* Accent color gradient */
  padding: 60px 0;
  text-align: center;
  color: #0A2239; /* Dark text for light background */
}

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

.page-game-guides__cta-description {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #333333;
}

.page-game-guides__cta-buttons .page-game-guides__btn {
  margin: 0 15px;
  font-size: 1.2em;
  padding: 15px 35px;
  border-width: 3px;
}

.page-game-guides__cta-buttons .page-game-guides__btn--primary {
  background-color: #0A2239; /* Dark blue background */
  color: #E0B400; /* Accent text */
  border-color: #0A2239;
}

.page-game-guides__cta-buttons .page-game-guides__btn--primary:hover {
  background-color: #333333;
  color: #ffc800;
}

.page-game-guides__cta-buttons .page-game-guides__btn--secondary {
  background-color: transparent;
  color: #0A2239; /* Dark text */
  border-color: #0A2239;
}

.page-game-guides__cta-buttons .page-game-guides__btn--secondary:hover {
  background-color: #0A2239;
  color: #E0B400;
}

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

@media (max-width: 768px) {
  .page-game-guides__hero {
    padding: 60px 0;
  }
  .page-game-guides__hero-title {
    font-size: 2.2em;
  }
  .page-game-guides__hero-description {
    font-size: 1.1em;
  }
  .page-game-guides__section {
    padding: 40px 0;
  }
  .page-game-guides__section-title {
    font-size: 1.8em;
  }
  .page-game-guides__grid {
    grid-template-columns: 1fr;
  }
  .page-game-guides__cta-buttons {
    flex-direction: column;
  }
  .page-game-guides__cta-buttons .page-game-guides__btn {
    margin: 10px 0;
  }
  .page-game-guides__game-type, .page-game-guides__list li, .page-game-guides__detail-item, .page-game-guides__faq-item {
    padding: 20px;
  }
  .page-game-guides__detail-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-game-guides__hero-title {
    font-size: 1.8em;
  }
  .page-game-guides__hero-description {
    font-size: 1em;
  }
  .page-game-guides__section-title {
    font-size: 1.5em;
  }
  .page-game-guides__card-title {
    font-size: 1.3em;
  }
  .page-game-guides__game-title {
    font-size: 1.5em;
  }
  .page-game-guides__list-title, .page-game-guides__detail-title {
    font-size: 1.4em;
  }
  .page-game-guides__faq-question {
    font-size: 1.2em;
  }
  .page-game-guides__cta-title {
    font-size: 1.8em;
  }
  .page-game-guides__btn {
    padding: 10px 20px;
    font-size: 1em;
  }
}