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

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

.page-game-guides__hero {
  background: linear-gradient(135deg, #0A2239, #2A4A6D);
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
}

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

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

.page-game-guides__cta-button {
  display: inline-block;
  background-color: #DC143C; /* Dark red for primary CTA */
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-game-guides__cta-button:hover {
  background-color: #C11030;
  transform: translateY(-2px);
}

.page-game-guides__intro,
.page-game-guides__guides-list,
.page-game-guides__cta-bottom {
  padding: 60px 0;
  text-align: center;
}

.page-game-guides__section-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.page-game-guides__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #DC143C;
  border-radius: 2px;
}

.page-game-guides__description {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
  color: #B0B0B0;
}

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

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

.page-game-guides__feature-card:hover {
  transform: translateY(-5px);
  background-color: #2A4A6D;
}

.page-game-guides__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-game-guides__feature-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-game-guides__feature-description {
  font-size: 1em;
  line-height: 1.6;
  color: #D0D0D0;
}

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

.page-game-guides__guide-card {
  background-color: #1A3A5A;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-game-guides__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-game-guides__card-title {
  font-size: 1.6em;
  margin-bottom: 10px;
  line-height: 1.3;
}

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

.page-game-guides__card-title a:hover {
  color: #DC143C;
}

.page-game-guides__card-description {
  font-size: 1em;
  line-height: 1.5;
  color: #B0B0B0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-game-guides__card-button {
  display: inline-block;
  background-color: #FFD700; /* Gold for secondary CTA */
  color: #0A2239; /* Dark blue text on gold */
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  align-self: flex-start;
}

.page-game-guides__card-button:hover {
  background-color: #E6C200;
  transform: translateY(-1px);
}

.page-game-guides__cta-bottom {
  background-color: #0A2239;
  padding: 80px 0;
}

.page-game-guides__cta-button--secondary {
  background-color: #FFD700;
  color: #0A2239;
}

.page-game-guides__cta-button--secondary:hover {
  background-color: #E6C200;
  color: #0A2239;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-game-guides__title {
    font-size: 2.8em;
  }
  .page-game-guides__subtitle {
    font-size: 1.3em;
  }
  .page-game-guides__section-title {
    font-size: 2.2em;
  }
  .page-game-guides__grid,
  .page-game-guides__card-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-game-guides__hero {
    padding: 80px 0;
  }
  .page-game-guides__title {
    font-size: 2.2em;
  }
  .page-game-guides__subtitle {
    font-size: 1.1em;
  }
  .page-game-guides__section-title {
    font-size: 1.8em;
  }
  .page-game-guides__intro,
  .page-game-guides__guides-list,
  .page-game-guides__cta-bottom {
    padding: 40px 0;
  }
  .page-game-guides__feature-card,
  .page-game-guides__guide-card {
    margin: 0 10px;
  }
}

@media (max-width: 480px) {
  .page-game-guides__title {
    font-size: 1.8em;
  }
  .page-game-guides__subtitle {
    font-size: 1em;
  }
  .page-game-guides__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-game-guides__section-title {
    font-size: 1.5em;
  }
  .page-game-guides__description {
    font-size: 0.9em;
  }
  .page-game-guides__grid,
  .page-game-guides__card-grid {
    grid-template-columns: 1fr;
  }
  .page-game-guides__feature-title {
    font-size: 1.5em;
  }
  .page-game-guides__card-title {
    font-size: 1.4em;
  }
}