.page-game-guides {
  background-color: #100224;
  color: #FFFFFF;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small top padding for main content below header */
}

.page-game-guides__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.page-game-guides__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}

.page-game-guides__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-game-guides__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 100%;
}

.page-game-guides__main-title {
  font-size: clamp(2.2em, 4vw, 3.2em);
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-game-guides__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-guides__cta-button {
  display: inline-block;
  background-color: #EA7C07;
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-game-guides__overview-section,
.page-game-guides__why-choose-us,
.page-game-guides__faq-section,
.page-game-guides__final-cta-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-game-guides__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  margin-bottom: 20px;
  font-weight: 700;
}

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

.page-game-guides__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-game-guides__category-card {
  background-color: #1a063a; /* Slightly lighter dark background */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-game-guides__card-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-game-guides__card-title a {
  color: #26A9E0;
  text-decoration: none;
}

.page-game-guides__card-title a:hover {
  text-decoration: underline;
}

.page-game-guides__card-text {
  font-size: 0.95em;
  color: #CCCCCC;
  margin-bottom: 20px;
  padding: 0 15px;
  flex-grow: 1;
}

.page-game-guides__card-button {
  display: inline-block;
  background-color: #26A9E0;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
}

.page-game-guides__card-button:hover {
  background-color: #1e87c0;
}

.page-game-guides__why-choose-us {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  text-align: left;
  background-color: #1a063a;
  border-radius: 12px;
  padding: 60px 40px;
}

.page-game-guides__why-choose-us .page-game-guides__section-title {
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
}

.page-game-guides__content-wrapper,
.page-game-guides__image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-game-guides__benefits-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.page-game-guides__benefit-item {
  background-color: #100224;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-game-guides__benefit-title {
  font-size: 1.3em;
  color: #EA7C07;
  margin-bottom: 10px;
}

.page-game-guides__benefit-text {
  font-size: 0.95em;
  color: #CCCCCC;
}

.page-game-guides__benefit-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}

.page-game-guides__faq-list {
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}

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

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

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

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

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

.page-game-guides__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

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

.page-game-guides__faq-answer p {
  margin: 0;
  color: #CCCCCC;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-game-guides__why-choose-us {
    flex-direction: column;
    text-align: center;
  }
  .page-game-guides__content-wrapper {
    order: 2;
  }
  .page-game-guides__image-wrapper {
    order: 1;
  }
}

@media (max-width: 768px) {
  .page-game-guides__main-title {
    font-size: clamp(2em, 5vw, 2.5em);
  }
  .page-game-guides__section-title {
    font-size: 2em;
  }
  .page-game-guides__game-categories {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-game-guides__why-choose-us {
    padding: 40px 20px;
  }
  .page-game-guides__benefits-list {
    grid-template-columns: 1fr;
  }
  /* Mobile content area image constraint */
  .page-game-guides img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-game-guides__hero-section,
  .page-game-guides__overview-section,
  .page-game-guides__why-choose-us,
  .page-game-guides__faq-section,
  .page-game-guides__final-cta-section {
    padding: 30px 15px;
  }
  .page-game-guides__main-title {
    font-size: clamp(1.8em, 6vw, 2.2em);
  }
  .page-game-guides__section-title {
    font-size: 1.8em;
  }
  .page-game-guides__hero-description,
  .page-game-guides__section-description {
    font-size: 1em;
  }
  .page-game-guides__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-game-guides__card-title {
    font-size: 1.3em;
  }
  .page-game-guides__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-game-guides__faq-question::after {
    right: 20px;
  }
  .page-game-guides__faq-item.active .page-game-guides__faq-answer {
    padding: 10px 20px 20px;
  }
}