.page-game-guides {
  font-family: 'Arial', sans-serif;
  color: #333333;
  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, #003366 0%, #001a33 100%);
  color: #ffffff;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 450px;
}

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

.page-game-guides__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFCC00; /* Gold for highlight */
  font-weight: bold;
}

.page-game-guides__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-game-guides__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: 1;
}

.page-game-guides__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%) blur(3px);
}

.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;
  white-space: nowrap;
  cursor: pointer;
}

.page-game-guides__btn--primary {
  background-color: #FFCC00;
  color: #003366;
  border: 2px solid #FFCC00;
}

.page-game-guides__btn--primary:hover {
  background-color: #e6b800;
  border-color: #e6b800;
}

.page-game-guides__btn--secondary {
  background-color: #003366;
  color: #FFCC00;
  border: 2px solid #003366;
}

.page-game-guides__btn--secondary:hover {
  background-color: #001a33;
  border-color: #001a33;
}

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

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

.page-game-guides__section-title {
  font-size: 2.5em;
  color: #003366;
  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: #FFCC00;
  border-radius: 2px;
}

.page-game-guides__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 50px;
  color: #555555;
}

.page-game-guides__intro p {
  margin-bottom: 15px;
  font-size: 1.05em;
  text-align: justify;
}

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

.page-game-guides__category-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  padding-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-game-guides__category-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-game-guides__category-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-game-guides__category-description {
  font-size: 1em;
  color: #555555;
  padding: 0 20px;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-game-guides__category-item .page-game-guides__btn {
  margin-top: auto;
  align-self: center;
}

.page-game-guides__why-choose .page-game-guides__feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-guides__feature-list li {
  background-color: #eaf3fa; /* Light blue background */
  border-left: 5px solid #003366;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s ease;
}

.page-game-guides__feature-list li:hover {
  background-color: #dbe7f2;
}

.page-game-guides__feature-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 10px;
}

.page-game-guides__feature-list p {
  color: #444444;
}

.page-game-guides__image-wrapper--center {
  text-align: center;
  margin-top: 50px;
}

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

.page-game-guides__registration-guide .page-game-guides__steps-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-game-guides__steps-list li {
  position: relative;
  padding-left: 60px;
  margin-bottom: 20px;
  min-height: 80px;
}

.page-game-guides__steps-list li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFCC00;
  color: #003366;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-game-guides__step-title {
  font-size: 1.6em;
  color: #003366;
  margin-bottom: 8px;
}

.page-game-guides__step-title + p {
  color: #555555;
}

.page-game-guides__cta-group {
  text-align: center;
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

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

.page-game-guides__tip-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-guides__tip-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-game-guides__tip-title {
  font-size: 1.6em;
  color: #003366;
  margin-bottom: 15px;
}

.page-game-guides__tip-item p {
  color: #555555;
}

.page-game-guides__faq-list {
  margin-top: 40px;
}

.page-game-guides__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-game-guides__faq-question {
  font-size: 1.3em;
  color: #003366;
  padding: 18px 25px;
  cursor: pointer;
  position: relative;
  margin: 0;
  background-color: #f0f8ff;
  transition: background-color 0.3s ease;
}

.page-game-guides__faq-question:hover {
  background-color: #e0f0ff;
}

.page-game-guides__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFCC00;
  transition: transform 0.3s ease;
}

.page-game-guides__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-game-guides__faq-answer {
  padding: 0 25px 15px;
  color: #444444;
  font-size: 1.05em;
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-game-guides__faq-answer.active {
  display: block;
  max-height: 200px; /* Adjust as needed */
  padding: 15px 25px;
}

.page-game-guides__cta-final {
  background-color: #003366;
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-game-guides__cta-final .page-game-guides__section-title {
  color: #FFCC00;
  margin-bottom: 25px;
}

.page-game-guides__cta-final .page-game-guides__section-title::after {
  background-color: #ffffff;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-guides__hero-title {
    font-size: 2.5em;
  }
  .page-game-guides__hero-subtitle {
    font-size: 1.1em;
  }
  .page-game-guides__section-title {
    font-size: 2em;
  }
  .page-game-guides__game-categories .page-game-guides__category-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-game-guides__why-choose .page-game-guides__feature-list {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-game-guides__hero {
    padding: 60px 0;
    min-height: 350px;
  }
  .page-game-guides__hero-title {
    font-size: 2em;
  }
  .page-game-guides__hero-subtitle {
    font-size: 1em;
  }
  .page-game-guides__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-game-guides__section {
    padding: 40px 0;
  }
  .page-game-guides__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-game-guides__section-description {
    margin-bottom: 30px;
  }
  .page-game-guides__steps-list {
    grid-template-columns: 1fr;
  }
  .page-game-guides__steps-list li {
    padding-left: 0;
    text-align: center;
  }
  .page-game-guides__steps-list li::before {
    position: static;
    margin-bottom: 10px;
  }
  .page-game-guides__cta-group {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-game-guides__hero-title {
    font-size: 1.8em;
  }
  .page-game-guides__section-title {
    font-size: 1.5em;
  }
  .page-game-guides__game-categories .page-game-guides__category-list,
  .page-game-guides__why-choose .page-game-guides__feature-list,
  .page-game-guides__registration-guide .page-game-guides__steps-list,
  .page-game-guides__tips-strategies .page-game-guides__tips-grid {
    grid-template-columns: 1fr;
  }
  .page-game-guides__category-item,
  .page-game-guides__feature-list li,
  .page-game-guides__tip-item {
    padding: 20px;
  }
  .page-game-guides__faq-question,
  .page-game-guides__faq-answer {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-game-guides__faq-question::after {
    right: 15px;
  }
}