.page-index-why-choose-luckyplay {
  color: #333333; /* Dark text for light body background */
  background-color: #FFFFFF;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

.page-index-why-choose-luckyplay__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background-color: #000000; /* Dark background for hero text overlay */
  color: #FFFFFF;
  overflow: hidden;
}

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

.page-index-why-choose-luckyplay__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-index-why-choose-luckyplay__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

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

.page-index-why-choose-luckyplay__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #FFFFFF;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-index-why-choose-luckyplay__hero-button {
  display: inline-block;
  padding: 15px 30px;
  margin: 0 10px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-index-why-choose-luckyplay__hero-button--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-index-why-choose-luckyplay__hero-button--register:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-index-why-choose-luckyplay__hero-button--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-index-why-choose-luckyplay__hero-button--login:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-index-why-choose-luckyplay__intro-section {
  padding: 60px 0;
  background-color: #F8F8F8;
  text-align: center;
}

.page-index-why-choose-luckyplay__section-title {
  font-size: 2.5em;
  color: #000000;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-index-why-choose-luckyplay__intro-text {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto;
  color: #333333;
}

.page-index-why-choose-luckyplay__reasons-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-index-why-choose-luckyplay__reason-card {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  background-color: #F8F8F8;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.page-index-why-choose-luckyplay__reason-card:hover {
  transform: translateY(-5px);
}

.page-index-why-choose-luckyplay__reason-card--reverse {
  flex-direction: row-reverse;
}

.page-index-why-choose-luckyplay__card-image {
  flex: 1;
  min-width: 400px; /* Minimum size for content images */
}

.page-index-why-choose-luckyplay__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-index-why-choose-luckyplay__card-content {
  flex: 1;
  padding: 40px;
  min-width: 400px; /* Ensure content area is also substantial */
}

.page-index-why-choose-luckyplay__card-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-why-choose-luckyplay__card-content p {
  font-size: 1em;
  color: #333333;
  margin-bottom: 25px;
}

.page-index-why-choose-luckyplay__card-content p a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-index-why-choose-luckyplay__card-content p a:hover {
  text-decoration: underline;
}

.page-index-why-choose-luckyplay__card-link,
.page-index-why-choose-luckyplay__card-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 6px;
  font-size: 0.95em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-index-why-choose-luckyplay__card-link {
  background-color: #000000;
  color: #FFFFFF;
}

.page-index-why-choose-luckyplay__card-link:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.page-index-why-choose-luckyplay__card-button {
  background-color: #FCBC45;
  color: #000000;
}

.page-index-why-choose-luckyplay__card-button:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-index-why-choose-luckyplay__cta-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #000000;
  color: #FFFFFF;
}

.page-index-why-choose-luckyplay__cta-title {
  font-size: 2.8em;
  color: #FCBC45;
  margin-bottom: 25px;
}

.page-index-why-choose-luckyplay__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #FFFFFF;
}

.page-index-why-choose-luckyplay__cta-button {
  display: inline-block;
  padding: 18px 35px;
  margin: 0 15px;
  border-radius: 10px;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-index-why-choose-luckyplay__cta-button--join {
  background-color: #FFFFFF;
  color: #000000;
}

.page-index-why-choose-luckyplay__cta-button--join:hover {
  background-color: #f0f0f0;
  transform: translateY(-3px);
}

.page-index-why-choose-luckyplay__cta-button--download {
  background-color: #FCBC45;
  color: #000000;
}

.page-index-why-choose-luckyplay__cta-button--download:hover {
  background-color: #e0a53b;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-why-choose-luckyplay__hero-title {
    font-size: 2.8em;
  }

  .page-index-why-choose-luckyplay__hero-description {
    font-size: 1.1em;
  }

  .page-index-why-choose-luckyplay__section-title {
    font-size: 2em;
  }

  .page-index-why-choose-luckyplay__reason-card {
    flex-direction: column;
  }

  .page-index-why-choose-luckyplay__reason-card--reverse {
    flex-direction: column;
  }

  .page-index-why-choose-luckyplay__card-image,
  .page-index-why-choose-luckyplay__card-content {
    min-width: unset;
    width: 100%;
  }

  .page-index-why-choose-luckyplay__card-content {
    padding: 30px;
  }

  .page-index-why-choose-luckyplay__card-title {
    font-size: 1.5em;
  }

  .page-index-why-choose-luckyplay__cta-title {
    font-size: 2.2em;
  }

  .page-index-why-choose-luckyplay__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
    margin: 10px;
  }
}

@media (max-width: 768px) {
  .page-index-why-choose-luckyplay__hero-section {
    padding: 60px 15px;
  }

  .page-index-why-choose-luckyplay__hero-title {
    font-size: 2.2em;
  }

  .page-index-why-choose-luckyplay__hero-description {
    font-size: 1em;
  }

  .page-index-why-choose-luckyplay__hero-button {
    display: block;
    margin: 15px auto;
    width: 80%;
  }

  .page-index-why-choose-luckyplay__section-title {
    font-size: 1.8em;
  }

  .page-index-why-choose-luckyplay__intro-section,
  .page-index-why-choose-luckyplay__reasons-section,
  .page-index-why-choose-luckyplay__cta-section {
    padding: 40px 0;
  }

  .page-index-why-choose-luckyplay__reason-card {
    margin-bottom: 40px;
  }

  .page-index-why-choose-luckyplay__card-content {
    padding: 25px;
  }

  .page-index-why-choose-luckyplay__card-image img {
    max-width: 100%;
    height: auto;
  }

  .page-index-why-choose-luckyplay__cta-title {
    font-size: 1.8em;
  }

  .page-index-why-choose-luckyplay__cta-description {
    font-size: 1em;
  }

  .page-index-why-choose-luckyplay__cta-button {
    display: block;
    margin: 15px auto;
    width: 90%;
  }

  /* Critical: prevent horizontal overflow for all images */
  .page-index-why-choose-luckyplay img {
    max-width: 100%;
    height: auto;
  }
}