/* style/game-guides.css */
.page-game-guides__hero-section {
  background: linear-gradient(135deg, #DC143C, #36454F);
  color: #FFFFFF;
  padding: 100px 20px;
  text-align: center;
}

.page-game-guides__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.page-game-guides__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
  opacity: 0.9;
}

.page-game-guides__cta-button {
  display: inline-block;
  background-color: #FFFFFF;
  color: #DC143C;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-game-guides__cta-button:hover {
  background-color: #F0F0F0;
  color: #B00C2E;
  transform: translateY(-3px);
}

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

.page-game-guides__section {
  padding: 80px 0;
  background-color: #f8f8f8;
  color: #36454F; /* Dark text on light background */
}

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

.page-game-guides__section-title {
  font-size: 2.8em;
  color: #DC143C;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-game-guides__section-subtitle {
  font-size: 1.2em;
  color: #555;
  text-align: center;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.page-game-guides__grid-2-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.page-game-guides__text-content p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #444;
}

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

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

.page-game-guides__list li {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
  color: #444;
}

.page-game-guides__list li::before {
  content: '✔';
  color: #DC143C;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-game-guides__image-wrapper {
  text-align: center;
}

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

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

.page-game-guides__game-type-card {
  background-color: #FFFFFF;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-guides__game-type-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-game-guides__game-type-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 10px rgba(220, 20, 60, 0.3));
}

.page-game-guides__game-type-title {
  font-size: 1.6em;
  color: #DC143C;
  margin-bottom: 10px;
}

.page-game-guides__game-type-description {
  font-size: 1em;
  color: #666;
  line-height: 1.6;
}

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

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

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

.page-game-guides__guide-title {
  font-size: 1.8em;
  color: #36454F;
  margin-bottom: 15px;
  line-height: 1.4;
}

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

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

.page-game-guides__guide-description {
  font-size: 1.05em;
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-game-guides__details-button {
  display: inline-block;
  background-color: #DC143C;
  color: #FFFFFF;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  align-self: flex-start;
}

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

.page-game-guides__cta-bottom {
  background-color: #36454F;
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
}

.page-game-guides__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  line-height: 1.3;
  font-weight: 700;
}

.page-game-guides__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
  opacity: 0.9;
}

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

.page-game-guides__cta-button--primary {
  background-color: #DC143C;
  color: #FFFFFF;
}

.page-game-guides__cta-button--primary:hover {
  background-color: #B00C2E;
}

.page-game-guides__cta-button--secondary {
  background-color: #FFFFFF;
  color: #36454F;
}

.page-game-guides__cta-button--secondary:hover {
  background-color: #F0F0F0;
  color: #1A2126;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-game-guides__hero-title {
    font-size: 2.8em;
  }
  .page-game-guides__section-title {
    font-size: 2.2em;
  }
  .page-game-guides__cta-title {
    font-size: 2.2em;
  }
  .page-game-guides__grid-2-cols {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .page-game-guides__grid-reverse-mobile {
    grid-template-areas: "image" "text";
  }
  .page-game-guides__grid-reverse-mobile .page-game-guides__image-wrapper {
    grid-area: image;
  }
  .page-game-guides__grid-reverse-mobile .page-game-guides__text-content {
    grid-area: text;
  }
  .page-game-guides__game-type-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-game-guides__guide-list {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-game-guides__hero-section,
  .page-game-guides__section,
  .page-game-guides__cta-bottom {
    padding: 60px 15px;
  }
  .page-game-guides__hero-title {
    font-size: 2.2em;
  }
  .page-game-guides__hero-description {
    font-size: 1em;
  }
  .page-game-guides__section-title {
    font-size: 1.8em;
  }
  .page-game-guides__section-subtitle {
    font-size: 1em;
  }
  .page-game-guides__cta-title {
    font-size: 1.8em;
  }
  .page-game-guides__cta-description {
    font-size: 1em;
  }
  .page-game-guides__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-game-guides__cta-button {
    width: 100%;
    max-width: 300px;
  }
  .page-game-guides__guide-list {
    grid-template-columns: 1fr;
  }
}