.page-game-guides {
  color: #ffffff; /* Body background is dark (#0a0a0a), so use light text */
}

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

.page-game-guides__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #0a0a0a; /* Ensure dark background for hero */
}

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

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

.page-game-guides__hero-content {
  text-align: center;
  max-width: 900px;
  margin-top: -60px; /* Adjust if needed to bring content closer to image */
  position: relative;
  z-index: 1;
}

.page-game-guides__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.page-game-guides__subtitle {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #f0f0f0;
  margin-bottom: 30px;
}

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

.page-game-guides__btn-primary,
.page-game-guides__btn-secondary,
.page-game-guides__btn-tertiary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-game-guides__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

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

.page-game-guides__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-game-guides__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #1e87b7;
  border-color: #1e87b7;
}

.page-game-guides__btn-tertiary {
  background-color: #EA7C07;
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-game-guides__btn-tertiary:hover {
  background-color: #c96800;
  border-color: #c96800;
}

.page-game-guides__section {
  padding: 80px 0;
}

.page-game-guides__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #26A9E0;
}

.page-game-guides__introduction .page-game-guides__section-title,
.page-game-guides__tips .page-game-guides__section-title,
.page-game-guides__faq .page-game-guides__section-title {
  color: #ffffff; /* For sections on dark body background */
}

.page-game-guides__dark-bg {
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-game-guides__light-bg {
  background-color: #ffffff;
  color: #333333;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-game-guides__text-block {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #f0f0f0; /* For text blocks on dark body background */
}

.page-game-guides__introduction .page-game-guides__text-block {
  color: #f0f0f0;
}

.page-game-guides__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 30px;
  border-radius: 12px;
  object-fit: cover;
}

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

.page-game-guides__game-card {
  border-radius: 12px;
  overflow: hidden;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

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

.page-game-guides__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-game-guides__card-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-game-guides__card-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #26A9E0;
  color: #ffffff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.page-game-guides__card-link:hover {
  background-color: #1e87b7;
}

.page-game-guides__getting-started .page-game-guides__section-title {
  color: #ffffff;
}

.page-game-guides__getting-started .page-game-guides__text-block {
  color: #f0f0f0;
}

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

.page-game-guides__step-card {
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-game-guides__step-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-game-guides__step-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-game-guides__text-link {
  color: #26A9E0;
  text-decoration: none;
  font-weight: 500;
}

.page-game-guides__text-link:hover {
  text-decoration: underline;
}

.page-game-guides__tips .page-game-guides__section-title {
  color: #ffffff;
}

.page-game-guides__flex-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.page-game-guides__flex-content > div {
  flex: 1;
}

.page-game-guides__sub-title {
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #26A9E0;
}

.page-game-guides__tips .page-game-guides__text-block {
  color: #f0f0f0;
}

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

.page-game-guides__tips li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  color: #f0f0f0;
  font-size: 1rem;
}

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

.page-game-guides__why-choose .page-game-guides__section-title {
  color: #ffffff;
}

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

.page-game-guides__feature-item {
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-game-guides__feature-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-game-guides__feature-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-game-guides__faq .page-game-guides__section-title {
  color: #ffffff;
}

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

.page-game-guides__faq-item {
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-game-guides__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  background-color: #f5f5f5;
  color: #333333;
  border-bottom: 1px solid #eeeeee;
  list-style: none; /* For details summary */
}

.page-game-guides__faq-question::-webkit-details-marker {
  display: none; /* For details summary */
}

.page-game-guides__faq-qtext {
  flex-grow: 1;
  color: #26A9E0;
}

.page-game-guides__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  margin-left: 15px;
  color: #26A9E0;
}

.page-game-guides__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  line-height: 1.6;
  color: #555555;
  background-color: #ffffff;
}

.page-game-guides__final-cta {
  padding: 100px 0;
  text-align: center;
}

.page-game-guides__final-cta .page-game-guides__section-title {
  color: #ffffff;
}

.page-game-guides__final-cta .page-game-guides__text-block {
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

.page-game-guides__center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-game-guides__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .page-game-guides__section-title {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
  }
  .page-game-guides__flex-content {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-game-guides__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }
  .page-game-guides__hero-content {
    margin-top: -40px; /* Adjust for smaller screens */
  }
  .page-game-guides__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 15px;
  }
  .page-game-guides__subtitle {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  .page-game-guides__cta-buttons {
    flex-direction: column !important;
    gap: 15px;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }
  .page-game-guides__btn-primary,
  .page-game-guides__btn-secondary,
  .page-game-guides__btn-tertiary,
  .page-game-guides a[class*="button"],
  .page-game-guides a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-game-guides__section {
    padding: 50px 0;
  }
  .page-game-guides__container {
    padding: 0 15px;
  }
  .page-game-guides__section-title {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    margin-bottom: 30px;
  }
  .page-game-guides__text-block {
    font-size: 0.95rem;
  }
  .page-game-guides__card-title,
  .page-game-guides__step-title,
  .page-game-guides__feature-title,
  .page-game-guides__sub-title {
    font-size: 1.4rem;
  }
  .page-game-guides__game-card-grid,
  .page-game-guides__step-grid,
  .page-game-guides__feature-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-game-guides__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-game-guides__faq-answer {
    padding: 15px 20px;
  }
  .page-game-guides__final-cta {
    padding: 60px 0;
  }

  /* Mobile image responsiveness */
  .page-game-guides img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  /* All containers with images/videos/buttons */
  .page-game-guides__section,
  .page-game-guides__card,
  .page-game-guides__container,
  .page-game-guides__hero-image-wrapper,
  .page-game-guides__video-section,
  .page-game-guides__video-container,
  .page-game-guides__video-wrapper,
  .page-game-guides__cta-buttons,
  .page-game-guides__button-group,
  .page-game-guides__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-game-guides__hero-image-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
  .page-game-guides__hero-image {
    border-radius: 0;
  }
}