.page-game-guides {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

.page-game-guides__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px;
  overflow: hidden;
}

.page-game-guides__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-game-guides__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Giảm độ sáng ảnh nền để chữ dễ đọc hơn */
}

.page-game-guides__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

.page-game-guides__main-title {
  font-size: clamp(2em, 5vw, 3.5em);
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-game-guides__hero-description {
  font-size: 1.1em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 30px;
}

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

.page-game-guides__btn-primary,
.page-game-guides__btn-secondary,
.page-game-guides__btn-text {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: nowrap;
  word-wrap: break-word;
  box-sizing: border-box;
}

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

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

.page-game-guides__btn-secondary {
  background: #11271B; /* Card BG */
  color: #A7D9B8; /* Text Secondary */
  border: 1px solid #2E7A4E; /* Border */
}

.page-game-guides__btn-secondary:hover {
  background: #2E7A4E; /* Border */
  color: #F2FFF6; /* Text Main */
  transform: translateY(-2px);
}

.page-game-guides__btn-text {
  background: transparent;
  color: #57E38D; /* Glow */
  border: 1px solid transparent;
  padding: 8px 15px;
}

.page-game-guides__btn-text:hover {
  color: #F2FFF6; /* Text Main */
  border-color: #2E7A4E; /* Border */
}

.page-game-guides__section {
  padding: 60px 0;
  text-align: center;
}

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

.page-game-guides__section-title {
  font-size: 2.5em;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-game-guides__section-description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  max-width: 800px;
  margin: 0 auto 40px;
}

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

.page-game-guides__grid-2-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  align-items: center;
  text-align: left;
  margin-bottom: 40px;
}

.page-game-guides__card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  height: 100%; /* Ensure cards have equal height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-game-guides__card:hover {
  transform: translateY(-5px);
}

.page-game-guides__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-height: 200px; /* Enforce min size */
}

.page-game-guides__card-title {
  font-size: 1.5em;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

.page-game-guides__card-text {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-game-guides__text-block {
  text-align: left;
  margin-bottom: 40px;
}

.page-game-guides__sub-title {
  font-size: 1.8em;
  color: #22C768; /* Auxiliary color */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-game-guides__text-block p {
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

.page-game-guides__game-category {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 40px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-game-guides__category-title {
  font-size: 2em;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  text-align: center;
}

.page-game-guides__category-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 30px;
  object-fit: cover;
  min-height: 300px; /* Enforce min size */
}

.page-game-guides__game-sub-title {
  font-size: 1.5em;
  color: #22C768; /* Auxiliary color */
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-game-guides__game-category ul {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
}

.page-game-guides__game-category ul li {
  margin-bottom: 10px;
  color: #F2FFF6; /* Text Main */
}

.page-game-guides__game-category strong {
  color: #57E38D; /* Glow */
}

.page-game-guides__image-block {
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-game-guides__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  min-height: 200px; /* Enforce min size */
}

.page-game-guides__faq-section {
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
}

.page-game-guides__faq-section .page-game-guides__section-title {
  color: #F2C14E; /* Gold */
}

.page-game-guides__faq-section .page-game-guides__section-description {
  color: #A7D9B8; /* Text Secondary */
}

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

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

.page-game-guides__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.15em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  background-color: #1E3A2A; /* Divider */
  border-radius: 8px;
}

.page-game-guides__faq-item summary::-webkit-details-marker {
  display: 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: #57E38D; /* Glow */
}

.page-game-guides__faq-item[open] .page-game-guides__faq-question {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.page-game-guides__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  background-color: #11271B; /* Card BG */
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.page-game-guides__faq-answer p {
  margin-bottom: 0;
  color: #A7D9B8; /* Text Secondary */
}

.page-game-guides__faq-answer a {
  color: #57E38D; /* Glow */
  text-decoration: underline;
}

.page-game-guides__faq-answer a:hover {
  color: #F2FFF6; /* Text Main */
}

.page-game-guides__cta-block {
  margin-top: 40px;
}

.page-game-guides__call-to-action-section {
  padding: 80px 20px;
  background: linear-gradient(90deg, #0A4B2C 0%, #11A84E 100%);
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-game-guides__section-title {
    font-size: 2em;
  }
  .page-game-guides__sub-title {
    font-size: 1.6em;
  }
  .page-game-guides__game-sub-title {
    font-size: 1.3em;
  }
  .page-game-guides__hero-content {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .page-game-guides__hero-section {
    padding-bottom: 40px;
  }
  .page-game-guides__main-title {
    font-size: clamp(1.8em, 8vw, 2.5em);
  }
  .page-game-guides__hero-description {
    font-size: 1em;
  }
  .page-game-guides__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .page-game-guides__btn-primary,
  .page-game-guides__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 15px;
  }
  .page-game-guides__section {
    padding: 40px 0;
  }
  .page-game-guides__section-title {
    font-size: 1.8em;
  }
  .page-game-guides__section-description {
    font-size: 0.95em;
  }
  .page-game-guides__grid-2-col {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .page-game-guides__text-block {
    text-align: center;
  }
  .page-game-guides__game-category {
    padding: 25px;
  }
  .page-game-guides__category-title {
    font-size: 1.6em;
  }
  .page-game-guides__game-sub-title {
    font-size: 1.2em;
  }
  .page-game-guides__faq-item summary {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-game-guides__faq-answer {
    padding: 15px 20px;
    font-size: 0.9em;
  }

  /* Mobile image/video/button responsive rules */
  .page-game-guides img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-game-guides video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-game-guides__section,
  .page-game-guides__container,
  .page-game-guides__card,
  .page-game-guides__game-category,
  .page-game-guides__hero-content,
  .page-game-guides__cta-buttons,
  .page-game-guides__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }
  .page-game-guides__hero-section {
    padding-top: 10px !important; /* body already handles offset */
  }
  .page-game-guides__video-section {
    padding-top: 10px !important; /* body already handles offset */
  }
  .page-game-guides__video-container,
  .page-game-guides__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}