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

.page-index-game-features__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body đã có padding-top, đây chỉ là khoảng cách nhỏ */
  background-color: #08160F;
}

.page-index-game-features__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-index-game-features__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 675px; /* Giới hạn chiều cao cho hero image */
}

.page-index-game-features__hero-content-wrapper {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  box-sizing: border-box;
  text-align: center;
  margin-top: 40px;
}

.page-index-game-features__hero-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #F2FFF6;
  margin-bottom: 20px;
  /* Sử dụng clamp để có font-size linh hoạt */
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.page-index-game-features__hero-description {
  font-size: 1.125rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-index-game-features__btn-primary,
.page-index-game-features__btn-secondary {
  padding: 14px 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;
  box-sizing: border-box;
  text-align: center;
  max-width: 100%;
}

.page-index-game-features__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6;
  border: none;
}

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

.page-index-game-features__btn-secondary {
  background: transparent;
  color: #2AD16F;
  border: 2px solid #2AD16F; /* Deep Green */
}

.page-index-game-features__btn-secondary:hover {
  background: #2AD16F;
  color: #F2FFF6;
  transform: translateY(-2px);
}

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

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

.page-index-game-features__section-title {
  font-size: 2.5rem;
  color: #F2FFF6;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-game-features__section-description {
  font-size: 1.1rem;
  color: #A7D9B8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-index-game-features__feature-image,
.page-index-game-features__guide-image,
.page-index-game-features__faq-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  margin-top: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.page-index-game-features__game-card,
.page-index-game-features__advantage-item {
  background-color: #11271B; /* Card BG */
  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;
  border: 1px solid #2E7A4E; /* Border */
}

.page-index-game-features__game-card:hover,
.page-index-game-features__advantage-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.page-index-game-features__game-card-image,
.page-index-game-features__advantage-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  display: block;
}

.page-index-game-features__game-card-title,
.page-index-game-features__advantage-title,
.page-index-game-features__guide-step-title {
  font-size: 1.75rem;
  color: #F2FFF6;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.3;
}

.page-index-game-features__game-card-description,
.page-index-game-features__advantage-description,
.page-index-game-features__guide-step-description {
  font-size: 1rem;
  color: #A7D9B8;
  margin-bottom: 25px;
}

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

.page-index-game-features__guide-step-item {
  background-color: #11271B;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E;
}

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

.page-index-game-features__faq-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-index-game-features__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.25rem;
  font-weight: bold;
  color: #F2FFF6;
  background-color: #11271B;
  transition: background-color 0.3s ease;
}

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

.page-index-game-features__faq-item summary:hover {
  background-color: #1E3A2A;
}

.page-index-game-features__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #2AD16F;
  transition: transform 0.3s ease;
}

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

.page-index-game-features__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  color: #A7D9B8;
}

.page-index-game-features__faq-answer p {
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-index-game-features__hero-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-index-game-features__section-title {
    font-size: 2rem;
  }
  .page-index-game-features__game-card-title,
  .page-index-game-features__advantage-title,
  .page-index-game-features__guide-step-title {
    font-size: 1.5rem;
  }
}

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

  .page-index-game-features__hero-section {
    padding: 10px 0 40px 0;
  }
  .page-index-game-features__hero-content-wrapper {
    padding: 0 15px;
  }

  .page-index-game-features__hero-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .page-index-game-features__hero-description {
    font-size: 1rem;
  }

  .page-index-game-features__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-index-game-features__btn-primary,
  .page-index-game-features__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-index-game-features__section {
    padding: 60px 0;
  }
  .page-index-game-features__container {
    padding: 0 15px;
  }

  .page-index-game-features__section-title {
    font-size: 1.8rem;
  }
  .page-index-game-features__section-description {
    font-size: 0.95rem;
  }

  .page-index-game-features__game-grid,
  .page-index-game-features__advantage-grid,
  .page-index-game-features__guide-steps {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-index-game-features__game-card-image,
  .page-index-game-features__advantage-image,
  .page-index-game-features__feature-image,
  .page-index-game-features__guide-image,
  .page-index-game-features__faq-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-index-game-features__game-card,
  .page-index-game-features__advantage-item,
  .page-index-game-features__guide-step-item,
  .page-index-game-features__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-index-game-features__game-card-title,
  .page-index-game-features__advantage-title,
  .page-index-game-features__guide-step-title {
    font-size: 1.3rem;
  }
  .page-index-game-features__game-card-description,
  .page-index-game-features__advantage-description,
  .page-index-game-features__guide-step-description {
    font-size: 0.9rem;
  }

  .page-index-game-features__faq-item summary {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-index-game-features__faq-answer {
    padding: 0 20px 15px 20px;
    font-size: 0.9rem;
  }
}