.page-game-guides {
  font-family: Arial, sans-serif;
  background-color: #08160F; /* Nền tối từ custom color */
  color: #F2FFF6; /* Text Main từ custom color */
}

.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-bottom: 60px;
  padding-top: 10px; /* Chỉ 10px top padding, body đã có --header-offset */
  background-color: #08160F;
}

.page-game-guides__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  position: relative;
}

.page-game-guides__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Giảm độ sáng để chữ nổi bật */
}

.page-game-guides__hero-content {
  position: relative;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  z-index: 1;
  margin-top: -150px; /* Đẩy nội dung lên trên ảnh một chút */
}

.page-game-guides__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: #F2FFF6;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-guides__intro-text {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.6;
  margin-bottom: 40px;
}

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

.page-game-guides__btn-primary,
.page-game-guides__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  box-sizing: border-box;
  min-width: 180px;
}

.page-game-guides__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6;
  border: none;
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-game-guides__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-game-guides__btn-secondary {
  background-color: transparent;
  color: #2AD16F;
  border: 2px solid #2AD16F;
  box-shadow: 0 4px 10px rgba(42, 209, 111, 0.2);
}

.page-game-guides__btn-secondary:hover {
  background-color: rgba(42, 209, 111, 0.1);
  transform: translateY(-2px);
}

.page-game-guides__section {
  padding: 80px 0;
  background-color: #08160F;
}

.page-game-guides__section--download {
  background-color: #11271B; /* Card B G */
}

.page-game-guides__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #F2FFF6;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-game-guides__section-description {
  font-size: 1.1rem;
  color: #A7D9B8;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
  line-height: 1.6;
}

.page-game-guides__grid-3-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.page-game-guides__grid-2-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: flex-start;
}

.page-game-guides__grid-2-col--reverse {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

@media (min-width: 769px) {
  .page-game-guides__grid-2-col--reverse {
    grid-template-columns: 1fr 1fr;
    .page-game-guides__content-block {
      order: 2;
    }
    .page-game-guides__game-features {
      order: 1;
    }
  }
}

.page-game-guides__card {
  background-color: #11271B; /* Card B G */
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  box-sizing: border-box;
}

.page-game-guides__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.page-game-guides__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-game-guides__card-title {
  font-size: 1.5rem;
  color: #F2FFF6;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-game-guides__card-text {
  font-size: 1rem;
  color: #A7D9B8;
  line-height: 1.6;
}

.page-game-guides__cta-center {
  text-align: center;
  margin-top: 40px;
}

.page-game-guides__game-category {
  margin-bottom: 80px;
  padding-bottom: 40px;
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-game-guides__game-category:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.page-game-guides__category-title {
  font-size: 2.2rem;
  color: #57E38D; /* Glow */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-game-guides__content-block {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  height: 100%;
  box-sizing: border-box;
}

.page-game-guides__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  display: block;
}

.page-game-guides__content-block h4 {
  font-size: 1.4rem;
  color: #F2FFF6;
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-game-guides__content-block p {
  font-size: 1rem;
  color: #A7D9B8;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-game-guides__game-features {
  background-color: #0A4B2C; /* Deep Green */
  border: 1px solid #2E7A4E;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-game-guides__game-features ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.page-game-guides__game-features li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1rem;
  color: #F2FFF6;
  line-height: 1.5;
}

.page-game-guides__game-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #57E38D; /* Glow */
  font-weight: bold;
  font-size: 1.2rem;
  top: -2px;
}

.page-game-guides__game-features .page-game-guides__btn-primary {
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
  display: block;
}

.page-game-guides__tip-card {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  height: 100%;
  box-sizing: border-box;
}

.page-game-guides__tip-card:hover {
  transform: translateY(-3px);
}

.page-game-guides__tip-title {
  font-size: 1.3rem;
  color: #57E38D; /* Glow */
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-game-guides__tip-text {
  font-size: 1rem;
  color: #A7D9B8;
  line-height: 1.6;
}

.page-game-guides__section--faq {
  background-color: #08160F;
}

.page-game-guides__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-game-guides__faq-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-game-guides__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.15rem;
  color: #F2FFF6;
  font-weight: bold;
  background-color: #0A4B2C; /* Deep Green */
  border-bottom: 1px solid #2E7A4E;
  transition: background-color 0.3s ease;
  list-style: none; /* for details/summary */
}

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

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

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

.page-game-guides__faq-toggle {
  font-size: 1.8rem;
  color: #57E38D;
  margin-left: 15px;
  line-height: 1;
}

.page-game-guides__faq-item[open] .page-game-guides__faq-question {
  border-bottom: 1px solid #2E7A4E;
}

.page-game-guides__faq-item[open] .page-game-guides__faq-toggle {
  content: '−';
}

.page-game-guides__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: #A7D9B8;
  line-height: 1.7;
  background-color: #11271B;
}

.page-game-guides__section--cta-final {
  padding: 80px 0;
  background-color: #08160F;
  text-align: center;
}

.page-game-guides__section--cta-final .page-game-guides__container {
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 15px;
  padding: 50px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E;
}

.page-game-guides__section--cta-final .page-game-guides__section-title {
  color: #F2FFF6;
  margin-bottom: 20px;
}

.page-game-guides__section--cta-final .page-game-guides__section-description {
  color: #A7D9B8;
  margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-game-guides__hero-content {
    margin-top: -100px;
  }
  .page-game-guides__main-title {
    font-size: 3rem;
  }
  .page-game-guides__section-title {
    font-size: 2.5rem;
  }
  .page-game-guides__category-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .page-game-guides__hero-content {
    margin-top: -60px;
    padding: 20px;
  }
  .page-game-guides__main-title {
    font-size: 2.2rem;
  }
  .page-game-guides__intro-text {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  .page-game-guides__section {
    padding: 40px 0;
  }
  .page-game-guides__section-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  .page-game-guides__section-description {
    font-size: 0.95rem;
    margin-bottom: 40px;
  }
  .page-game-guides__grid-3-col, .page-game-guides__grid-2-col {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-game-guides__btn-primary, .page-game-guides__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-game-guides__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-game-guides__card, .page-game-guides__content-block, .page-game-guides__game-features, .page-game-guides__tip-card {
    padding: 20px;
  }
  .page-game-guides__category-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .page-game-guides__content-block h4 {
    font-size: 1.2rem;
  }
  .page-game-guides__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-game-guides__faq-answer {
    padding: 15px 20px;
  }
  .page-game-guides__hero-image {
    filter: brightness(0.6);
  }
  
  /* Mobile specific image, video, button adaptations */
  .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,
  .page-game-guides__content-block,
  .page-game-guides__game-features,
  .page-game-guides__tip-card,
  .page-game-guides__section--cta-final .page-game-guides__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-section {
    padding-top: 10px !important;
  }
  .page-game-guides__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-game-guides__main-title {
    font-size: 1.8rem;
  }
  .page-game-guides__section-title {
    font-size: 1.7rem;
  }
  .page-game-guides__category-title {
    font-size: 1.5rem;
  }
  .page-game-guides__btn-primary, .page-game-guides__btn-secondary {
    font-size: 0.9rem;
    padding: 12px 20px;
  }
}