.page-game-guides {
  font-family: 'Arial', sans-serif;
  color: #1F2D3D; /* Text Main */
  background-color: #F4F7FB; /* Background */
  line-height: 1.6;
}

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

.page-game-guides__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header-offset */
  background: linear-gradient(180deg, #6FA3FF 0%, #2F6BFF 100%); /* Blend of primary and secondary for hero background */
  color: #ffffff;
  overflow: hidden;
}

.page-game-guides__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.page-game-guides__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.page-game-guides__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-game-guides__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  font-size: clamp(28px, 4vw, 48px);
}

.page-game-guides__intro-text {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-game-guides__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-game-guides__cta-button:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-game-guides__cta-button--small {
  font-size: 16px;
  padding: 12px 30px;
}

.page-game-guides__content-section {
  padding: 60px 0;
}

.page-game-guides__section-title {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  color: #2F6BFF;
  text-align: center;
  margin-bottom: 40px;
  margin-top: 40px;
  position: relative;
}

.page-game-guides__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #6FA3FF;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-game-guides__sub-title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  color: #1F2D3D;
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-game-guides__content-section p {
  margin-bottom: 15px;
  font-size: 16px;
  color: #333333;
}

.page-game-guides__content-section ul,
.page-game-guides__content-section ol {
  margin-bottom: 20px;
  padding-left: 25px;
}

.page-game-guides__content-section li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #333333;
}

.page-game-guides__image-wrapper {
  margin: 30px 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-game-guides__image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 200px; /* Enforce minimum size */
}

.page-game-guides__btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-game-guides__btn-primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-game-guides__faq-section {
  padding: 40px 0 60px;
  background-color: #ffffff; /* Card BG */
  border-top: 1px solid #D6E2FF; /* Border */
}

details.page-game-guides__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #D6E2FF; /* Border */
  overflow: hidden;
  background: #ffffff; /* Card BG */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

details.page-game-guides__faq-item[open] {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

details.page-game-guides__faq-item summary.page-game-guides__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  background-color: #f9f9f9;
  border-bottom: 1px solid #D6E2FF;
}

details.page-game-guides__faq-item[open] summary.page-game-guides__faq-question {
  background-color: #eef5ff;
  border-bottom: none;
}

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

details.page-game-guides__faq-item summary.page-game-guides__faq-question:hover {
  background: #eef5ff;
}

.page-game-guides__faq-qtext {
  flex: 1;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #1F2D3D;
}

.page-game-guides__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #2F6BFF;
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

details.page-game-guides__faq-item[open] .page-game-guides__faq-toggle {
  transform: rotate(45deg);
}

details.page-game-guides__faq-item .page-game-guides__faq-answer {
  padding: 20px 25px;
  background: #ffffff; /* Card BG */
  border-radius: 0 0 10px 10px;
  font-size: 16px;
  color: #333333;
}

.page-game-guides__cta-bottom-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%);
  color: #ffffff;
  text-align: center;
}

.page-game-guides__cta-bottom-section .page-game-guides__section-title {
  color: #ffffff;
}

.page-game-guides__cta-bottom-section p {
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 18px;
  color: #e0e0e0;
}

.page-game-guides__text-center {
  text-align: center;
}

/* All images responsive styles */
.page-game-guides img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .page-game-guides__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-game-guides__main-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .page-game-guides__intro-text {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .page-game-guides__cta-button {
    padding: 12px 25px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-game-guides__cta-button--small {
    font-size: 14px;
    padding: 10px 20px;
  }

  .page-game-guides__content-section {
    padding: 30px 0;
  }

  .page-game-guides__container {
    padding: 0 15px;
  }

  .page-game-guides__section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .page-game-guides__sub-title {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
  }

  .page-game-guides__content-section p,
  .page-game-guides__content-section li {
    font-size: 15px;
  }

  .page-game-guides__image-wrapper {
    margin: 20px 0;
  }

  .page-game-guides__btn-primary {
    padding: 10px 20px;
    font-size: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  details.page-game-guides__faq-item summary.page-game-guides__faq-question {
    padding: 15px 20px;
  }

  .page-game-guides__faq-qtext {
    font-size: 15px;
  }

  .page-game-guides__faq-toggle {
    font-size: 24px;
    width: 25px;
  }

  details.page-game-guides__faq-item .page-game-guides__faq-answer {
    padding: 15px 20px;
    font-size: 15px;
  }

  .page-game-guides__cta-bottom-section {
    padding: 40px 15px;
  }

  .page-game-guides__cta-bottom-section p {
    font-size: 16px;
  }

  .page-game-guides__section,
  .page-game-guides__card,
  .page-game-guides__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-game-guides img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
}