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

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

.page-index-go888-app-features__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
  padding-top: 10px; /* Small top padding */
  text-align: center;
  overflow: hidden;
}

.page-index-go888-app-features__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-index-go888-app-features__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-index-go888-app-features__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin-top: 40px; /* Separates content from image */
  padding: 0 20px;
}

.page-index-go888-app-features__main-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-index-go888-app-features__hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-index-go888-app-features__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-index-go888-app-features__btn-primary,
.page-index-go888-app-features__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  white-space: normal;
  word-wrap: break-word;
}

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

.page-index-go888-app-features__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-index-go888-app-features__btn-secondary {
  background-color: transparent;
  color: #F2C14E; /* Gold */
  border: 2px solid #F2C14E;
}

.page-index-go888-app-features__btn-secondary:hover {
  background-color: #F2C14E;
  color: #08160F; /* Background */
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-index-go888-app-features__section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
  padding-bottom: 10px;
}

.page-index-go888-app-features__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #11A84E; /* Primary Color */
  border-radius: 2px;
}

.page-index-go888-app-features__text-block {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  text-align: justify;
}

.page-index-go888-app-features__introduction-section,
.page-index-go888-app-features__download-section,
.page-index-go888-app-features__conclusion-section {
  padding: 80px 0;
}

.page-index-go888-app-features__features-section,
.page-index-go888-app-features__game-library-section,
.page-index-go888-app-features__promotions-section,
.page-index-go888-app-features__faq-section {
  padding: 80px 0;
}

.page-index-go888-app-features__dark-bg {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-index-go888-app-features__light-bg {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
}

.page-index-go888-app-features__features-grid,
.page-index-go888-app-features__game-categories,
.page-index-go888-app-features__promotion-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-index-go888-app-features__card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #F2FFF6;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-index-go888-app-features__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-index-go888-app-features__feature-icon,
.page-index-go888-app-features__game-image,
.page-index-go888-app-features__promotion-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-index-go888-app-features__feature-title,
.page-index-go888-app-features__game-title,
.page-index-go888-app-features__promotion-title {
  font-size: 1.5rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-go888-app-features__game-title a {
  color: inherit;
  text-decoration: none;
}

.page-index-go888-app-features__game-title a:hover {
  text-decoration: underline;
}

.page-index-go888-app-features__feature-description,
.page-index-go888-app-features__game-description,
.page-index-go888-app-features__promotion-description {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  text-align: justify;
}

.page-index-go888-app-features__cta-center {
  text-align: center;
  margin-top: 40px;
}

.page-index-go888-app-features__download-grid {
  display: flex;
  align-items: center;
  gap: 50px;
}

.page-index-go888-app-features__download-content {
  flex: 1;
}

.page-index-go888-app-features__download-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-index-go888-app-features__download-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  display: block;
}

.page-index-go888-app-features__download-steps {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-index-go888-app-features__download-steps li {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
  text-align: justify;
}

.page-index-go888-app-features__download-steps li strong {
  color: #F2FFF6; /* Text Main */
}

.page-index-go888-app-features__download-steps li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #11A84E; /* Primary Color */
  color: #ffffff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
  font-weight: bold;
}

.page-index-go888-app-features__download-button {
  margin-top: 20px;
}

.page-index-go888-app-features__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

.page-index-go888-app-features__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  overflow: hidden;
  color: #F2FFF6;
}

.page-index-go888-app-features__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  background-color: #0A4B2C; /* Deep Green */
  border-bottom: 1px solid #2E7A4E;
  list-style: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.page-index-go888-app-features__faq-question::-webkit-details-marker {
  display: none;
}

.page-index-go888-app-features__faq-question:hover {
  background-color: #11A84E;
}

.page-index-go888-app-features__faq-qtext {
  flex-grow: 1;
  text-align: left;
}

.page-index-go888-app-features__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

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

.page-index-go888-app-features__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  background-color: #11271B; /* Card BG */
  text-align: justify;
}

.page-index-go888-app-features__faq-answer p {
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-index-go888-app-features__hero-content {
    margin-top: 20px;
  }
  .page-index-go888-app-features__download-grid {
    flex-direction: column;
  }
  .page-index-go888-app-features__download-image-wrapper {
    order: -1; /* Image above content on smaller screens */
    margin-bottom: 30px;
  }
  .page-index-go888-app-features__features-grid,
  .page-index-go888-app-features__game-categories,
  .page-index-go888-app-features__promotion-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

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

  .page-index-go888-app-features__container {
    padding: 0 15px;
  }

  .page-index-go888-app-features__hero-section {
    padding: 40px 0;
    padding-top: 10px !important;
  }

  .page-index-go888-app-features__hero-image,
  .page-index-go888-app-features__feature-icon,
  .page-index-go888-app-features__game-image,
  .page-index-go888-app-features__promotion-image,
  .page-index-go888-app-features__download-image,
  .page-index-go888-app-features img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-index-go888-app-features__section,
  .page-index-go888-app-features__card,
  .page-index-go888-app-features__container,
  .page-index-go888-app-features__download-grid,
  .page-index-go888-app-features__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

  .page-index-go888-app-features__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-index-go888-app-features__btn-primary,
  .page-index-go888-app-features__btn-secondary,
  .page-index-go888-app-features a[class*="button"],
  .page-index-go888-app-features a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-index-go888-app-features__section-title {
    margin-bottom: 30px;
  }

  .page-index-go888-app-features__introduction-section,
  .page-index-go888-app-features__features-section,
  .page-index-go888-app-features__game-library-section,
  .page-index-go888-app-features__promotions-section,
  .page-index-go888-app-features__download-section,
  .page-index-go888-app-features__faq-section,
  .page-index-go888-app-features__conclusion-section {
    padding: 60px 0;
  }

  .page-index-go888-app-features__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-index-go888-app-features__faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-index-go888-app-features__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }
  .page-index-go888-app-features__hero-description {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
  }
  .page-index-go888-app-features__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  .page-index-go888-app-features__text-block,
  .page-index-go888-app-features__download-steps li,
  .page-index-go888-app-features__feature-description,
  .page-index-go888-app-features__game-description,
  .page-index-go888-app-features__promotion-description {
    font-size: 0.95rem;
  }
}