.page-index-why-choose-spinph88 {
  color: #ffffff; /* Light text for dark body background */
  background-color: #1a1a1a; /* Inherited from shared, but explicitly set for clarity */
  padding-top: var(--header-offset, 120px);
}

.page-index-why-choose-spinph88__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 60px; /* Adjust padding to ensure content visibility */
  text-align: center;
}

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

.page-index-why-choose-spinph88__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
}

.page-index-why-choose-spinph88__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-index-why-choose-spinph88__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-index-why-choose-spinph88__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-index-why-choose-spinph88__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-index-why-choose-spinph88__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.page-index-why-choose-spinph88__button--primary {
  background-color: #FFD700;
  color: #8B0000; /* Dark text for primary button */
}

.page-index-why-choose-spinph88__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-index-why-choose-spinph88__button--secondary {
  background-color: #8B0000;
  color: #ffffff; /* Light text for secondary button */
  border: 2px solid #FFD700;
}

.page-index-why-choose-spinph88__button--secondary:hover {
  background-color: #a30000;
  transform: translateY(-3px);
}

.page-index-why-choose-spinph88__features-section {
  padding: 80px 20px;
  background-color: #1a1a1a;
}

.page-index-why-choose-spinph88__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-index-why-choose-spinph88__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
}

.page-index-why-choose-spinph88__section-intro {
  font-size: 1.1em;
  color: #f0f0f0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.page-index-why-choose-spinph88__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.page-index-why-choose-spinph88__feature-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-index-why-choose-spinph88__feature-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.1);
}

.page-index-why-choose-spinph88__feature-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-index-why-choose-spinph88__feature-card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-why-choose-spinph88__feature-card-description {
  font-size: 1em;
  color: #cccccc;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 25px;
}

.page-index-why-choose-spinph88__feature-card-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #8B0000;
  color: #ffffff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-index-why-choose-spinph88__feature-card-link:hover {
  background-color: #a30000;
}

.page-index-why-choose-spinph88__cta-section {
  background-color: #8B0000;
  padding: 80px 20px;
  text-align: center;
  box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.5);
}

.page-index-why-choose-spinph88__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-index-why-choose-spinph88__cta-description {
  font-size: 1.2em;
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.page-index-why-choose-spinph88__cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-index-why-choose-spinph88__hero-title {
    font-size: 3em;
  }
  .page-index-why-choose-spinph88__section-title {
    font-size: 2.5em;
  }
  .page-index-why-choose-spinph88__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-index-why-choose-spinph88__hero-section {
    padding: 60px 15px 40px;
  }
  .page-index-why-choose-spinph88__hero-title {
    font-size: 2.5em;
  }
  .page-index-why-choose-spinph88__hero-description {
    font-size: 1em;
  }
  .page-index-why-choose-spinph88__hero-actions,
  .page-index-why-choose-spinph88__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-why-choose-spinph88__button {
    width: 100%;
    padding: 12px 25px;
  }
  .page-index-why-choose-spinph88__features-section {
    padding: 60px 15px;
  }
  .page-index-why-choose-spinph88__section-title {
    font-size: 2em;
  }
  .page-index-why-choose-spinph88__section-intro {
    font-size: 0.95em;
  }
  .page-index-why-choose-spinph88__feature-grid {
    grid-template-columns: 1fr;
  }
  .page-index-why-choose-spinph88__feature-card-image {
    height: 200px; /* Ensure content images are not too small */
  }
  .page-index-why-choose-spinph88__cta-section {
    padding: 60px 15px;
  }
  .page-index-why-choose-spinph88__cta-title {
    font-size: 2em;
  }
  .page-index-why-choose-spinph88__cta-description {
    font-size: 1em;
  }

  /* Mobile content area image constraint */
  .page-index-why-choose-spinph88 img {
    max-width: 100%;
    height: auto;
  }
  /* Ensure content area images are not scaled down below 200px */
  .page-index-why-choose-spinph88__feature-card-image {
    min-width: 200px;
    min-height: 200px;
    width: 100%; /* Override to ensure it fills card width responsively */
  }
}

@media (max-width: 480px) {
  .page-index-why-choose-spinph88__hero-title {
    font-size: 2em;
  }
  .page-index-why-choose-spinph88__section-title {
    font-size: 1.8em;
  }
  .page-index-why-choose-spinph88__cta-title {
    font-size: 1.8em;
  }
}