/* style/game-guides.css */
.page-game-guides {
  font-family: 'Arial', sans-serif;
  color: #333;
  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, #0A2463, #3A5C9B);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.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.3em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  opacity: 0.9;
}

.page-game-guides__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3;
}

.page-game-guides__hero .page-game-guides__container {
  position: relative;
  z-index: 1;
}

.page-game-guides__section {
  padding: 60px 0;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eee;
}

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

.page-game-guides__section-title {
  font-size: 2.5em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 40px;
  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: #FFD700;
  border-radius: 2px;
}

.page-game-guides__intro p, .page-game-guides__why-choose p, .page-game-guides__updates-resources p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

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

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

.page-game-guides__list li {
  background-color: #fff;
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid #FFD700;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  font-size: 1.1em;
}

.page-game-guides__list li strong {
  color: #0A2463;
  font-size: 1.2em;
  display: block;
  margin-bottom: 10px;
}

.page-game-guides__list--numbered {
    list-style: decimal;
    padding-left: 25px;
}

.page-game-guides__list--numbered li {
    list-style: decimal;
    background-color: #fff;
    margin-bottom: 20px;
    padding: 25px;
    border-left: 5px solid #0A2463;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    font-size: 1.1em;
    counter-increment: custom-counter;
    position: relative;
    padding-left: 60px; /* Make space for custom counter */
}

.page-game-guides__list--numbered li::before {
    content: counter(custom-counter);
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #FFD700;
    color: #0A2463;
    font-weight: bold;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.page-game-guides__list--numbered li h3 {
    color: #0A2463;
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-game-guides__list--numbered li p {
    margin-bottom: 0;
}

.page-game-guides__guide-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-game-guides__card-title {
  font-size: 1.8em;
  color: #0A2463;
  margin-bottom: 15px;
}

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

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

.page-game-guides__card-description {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 20px;
}

.page-game-guides__card-image {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.page-game-guides__btn--primary {
  background-color: #FFD700;
  color: #0A2463;
  border: 2px solid #FFD700;
}

.page-game-guides__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-game-guides__cta {
  background: #0A2463;
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-guides__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

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

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

.page-game-guides__cta-button {
  background-color: #FFD700;
  color: #0A2463;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-game-guides__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-game-guides__cta-button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-game-guides__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #0A2463;
  transform: translateY(-3px);
}

.page-game-guides__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.15;
}

.page-game-guides__cta .page-game-guides__container {
  position: relative;
  z-index: 1;
}

/* 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__cta-title {
    font-size: 2.5em;
  }
  .page-game-guides__list li, .page-game-guides__list--numbered li {
    font-size: 1em;
  }
  .page-game-guides__list--numbered li h3 {
    font-size: 1.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-subtitle {
    font-size: 1.1em;
  }
  .page-game-guides__section {
    padding: 40px 0;
  }
  .page-game-guides__section-title {
    font-size: 1.8em;
  }
  .page-game-guides__cta {
    padding: 60px 0;
  }
  .page-game-guides__cta-title {
    font-size: 2em;
  }
  .page-game-guides__cta-description {
    font-size: 1em;
  }
  .page-game-guides__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-game-guides__cta-button {
    width: 80%;
    margin: 0 auto;
  }
  .page-game-guides__list--numbered li {
      padding-left: 50px;
  }
  .page-game-guides__list--numbered li::before {
      width: 30px;
      height: 30px;
      font-size: 1em;
      left: 10px;
  }
}

@media (max-width: 480px) {
  .page-game-guides__hero-title {
    font-size: 1.8em;
  }
  .page-game-guides__hero-subtitle {
    font-size: 0.9em;
  }
  .page-game-guides__section-title {
    font-size: 1.5em;
  }
  .page-game-guides__cta-title {
    font-size: 1.6em;
  }
  .page-game-guides__cta-description {
    font-size: 0.9em;
  }
  .page-game-guides__cta-button {
    padding: 12px 25px;
    font-size: 0.9em;
    width: 90%;
  }
  .page-game-guides__guide-card {
    padding: 20px;
  }
  .page-game-guides__card-title {
    font-size: 1.5em;
  }
  .page-game-guides__card-description {
    font-size: 0.95em;
  }
  .page-game-guides__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}