.page-game-guides {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main-color); /* Sử dụng biến màu từ custom palette */
  background-color: var(--background-color); /* Sử dụng biến màu từ custom palette */
}

.page-game-guides__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 60px; /* Không dùng padding-top lớn ở đây */
  overflow: hidden;
}

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

.page-game-guides__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 20px auto 0;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-game-guides__main-title {
  color: var(--gold-color); /* Sử dụng màu Gold */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
}

.page-game-guides__intro-text {
  color: var(--text-secondary-color); /* Sử dụng màu Text Secondary */
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-game-guides__section {
  padding: 60px 0;
  border-bottom: 1px solid var(--divider-color); /* Sử dụng màu Divider */
}

.page-game-guides__section:last-of-type {
  border-bottom: none;
}

.page-game-guides__dark-bg {
  background-color: var(--background-color); /* Background color */
  color: var(--text-main-color); /* Text Main color */
}

.page-game-guides__card-bg {
  background-color: var(--card-bg-color); /* Card BG color */
  color: var(--text-main-color); /* Text Main color */
}

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

.page-game-guides__section-title {
  color: var(--gold-color); /* Gold color */
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.page-game-guides__sub-title {
  color: var(--text-main-color); /* Text Main color */
  font-size: 1.8em;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-game-guides__text-block {
  color: var(--text-secondary-color); /* Text Secondary color */
  margin-bottom: 20px;
}

.page-game-guides__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.page-game-guides__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
}

.page-game-guides__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-game-guides__btn-secondary {
  background-color: transparent;
  color: var(--glow-color); /* Glow color */
  border: 2px solid var(--glow-color); /* Glow color */
}

.page-game-guides__btn-secondary:hover {
  background-color: var(--glow-color); /* Glow color */
  color: var(--background-color); /* Background color */
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-game-guides__button-group {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-game-guides__button-group--center {
  justify-content: center;
}

.page-game-guides__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 30px;
}

.page-game-guides__content-grid--reversed {
  grid-template-columns: 1fr 1fr;
}

.page-game-guides__image-left,
.page-game-guides__image-right {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-game-guides__ordered-list,
.page-game-guides__unordered-list {
  margin-bottom: 20px;
  padding-left: 25px;
  color: var(--text-secondary-color); /* Text Secondary color */
}

.page-game-guides__ordered-list li,
.page-game-guides__unordered-list li {
  margin-bottom: 10px;
  color: var(--text-secondary-color); /* Text Secondary color */
}

.page-game-guides__ordered-list li strong,
.page-game-guides__unordered-list li strong {
  color: var(--text-main-color); /* Text Main color */
}

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

.page-game-guides__faq-item {
  background-color: var(--card-bg-color); /* Card BG color */
  border: 1px solid var(--border-color); /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-game-guides__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.1em;
  color: var(--text-main-color); /* Text Main color */
  background-color: var(--deep-green-color); /* Deep Green color */
  border-bottom: 1px solid var(--border-color); /* Border color */
}

.page-game-guides__faq-item[open] .page-game-guides__faq-question {
  border-bottom: none;
}

.page-game-guides__faq-qtext {
  flex-grow: 1;
}

.page-game-guides__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--glow-color); /* Glow color */
}

.page-game-guides__faq-answer {
  padding: 20px;
  color: var(--text-secondary-color); /* Text Secondary color */
  background-color: var(--card-bg-color); /* Card BG color */
  border-top: 1px solid var(--border-color); /* Border color */
}

/* Details element native styling reset */
.page-game-guides__faq-item summary {
  list-style: none;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-game-guides__main-title {
    font-size: 2.8em;
  }

  .page-game-guides__section-title {
    font-size: 2em;
  }

  .page-game-guides__sub-title {
    font-size: 1.5em;
  }

  .page-game-guides__intro-text {
    font-size: 1em;
  }

  .page-game-guides__content-grid {
    grid-template-columns: 1fr;
  }

  .page-game-guides__content-grid--reversed {
    grid-template-columns: 1fr;
  }

  .page-game-guides__image-left,
  .page-game-guides__image-right {
    order: -1; /* Image always on top for mobile */
  }
}

@media (max-width: 768px) {
  .page-game-guides {
    font-size: 16px;
    line-height: 1.6;
  }

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

  .page-game-guides__hero-content {
    margin-top: 10px;
  }

  .page-game-guides__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
    margin-bottom: 15px;
  }

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

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

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

  .page-game-guides__sub-title {
    font-size: 1.3em;
  }

  .page-game-guides__cta-button {
    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__button-group {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .page-game-guides__button-group--center {
    align-items: center;
  }

  .page-game-guides__content-grid {
    gap: 30px;
  }

  .page-game-guides__image-left,
  .page-game-guides__image-right {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

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

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

  .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;
  }
}