/* style/lottery-liuhecai.css */
.page-lottery-liuhecai {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

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

.page-lottery-liuhecai__hero {
  background: linear-gradient(135deg, #003366 0%, #004488 100%); /* Dark blue gradient */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-lottery-liuhecai__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFCC00; /* Gold for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-lottery-liuhecai__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-lottery-liuhecai__hero-cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-lottery-liuhecai__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-lottery-liuhecai__btn--primary {
  background-color: #FFCC00; /* Gold */
  color: #003366; /* Deep blue */
  border: 2px solid #FFCC00;
}

.page-lottery-liuhecai__btn--primary:hover {
  background-color: #e6b800;
  border-color: #e6b800;
  transform: translateY(-2px);
}

.page-lottery-liuhecai__btn--secondary {
  background-color: transparent;
  color: #FFCC00; /* Gold */
  border: 2px solid #FFCC00;
}

.page-lottery-liuhecai__btn--secondary:hover {
  background-color: #FFCC00;
  color: #003366;
  transform: translateY(-2px);
}

.page-lottery-liuhecai__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-lottery-liuhecai__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-lottery-liuhecai__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.15;
}

.page-lottery-liuhecai__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-lottery-liuhecai__section {
  padding: 60px 0;
}

.page-lottery-liuhecai__section--alt-bg {
  background-color: #f8f8f8;
}

.page-lottery-liuhecai__section-title {
  font-size: 2.5em;
  color: #003366; /* Deep blue */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-lottery-liuhecai__section-title::after {
  content: '';
  width: 80px;
  height: 4px;
  background-color: #FFCC00; /* Gold */
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.page-lottery-liuhecai__section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #444;
}

.page-lottery-liuhecai__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-lottery-liuhecai__grid-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-lottery-liuhecai__grid-item:hover {
  transform: translateY(-5px);
}

.page-lottery-liuhecai__grid-title {
  font-size: 1.6em;
  color: #003366;
  margin-bottom: 15px;
}

.page-lottery-liuhecai__grid-item p {
  font-size: 1em;
  color: #555;
}

.page-lottery-liuhecai__grid-image {
  max-width: 100%;
  height: 200px;
  object-fit: contain;
  margin-top: 20px;
  border-radius: 5px;
}

.page-lottery-liuhecai__step-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.page-lottery-liuhecai__step-item {
  background-color: #ffffff;
  border-left: 5px solid #FFCC00;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.page-lottery-liuhecai__step-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 15px;
}

.page-lottery-liuhecai__step-item p {
  font-size: 1em;
  color: #555;
}

.page-lottery-liuhecai__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-lottery-liuhecai__list-item {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #ddd;
}

.page-lottery-liuhecai__list-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.page-lottery-liuhecai__list-title {
  font-size: 1.6em;
  color: #003366;
  margin-bottom: 10px;
}

.page-lottery-liuhecai__list-item p {
  font-size: 1em;
  color: #555;
}

.page-lottery-liuhecai__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-lottery-liuhecai__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-lottery-liuhecai__promo-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  border-top: 5px solid #FFCC00;
}

.page-lottery-liuhecai__promo-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 15px;
}

.page-lottery-liuhecai__promo-card p {
  font-size: 1em;
  color: #555;
}

.page-lottery-liuhecai__cta-center {
  text-align: center;
  margin-top: 40px;
}

.page-lottery-liuhecai__icon-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-lottery-liuhecai__icon-list-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-lottery-liuhecai__icon {
  font-size: 2.5em;
  color: #FFCC00;
  margin-right: 20px;
  flex-shrink: 0;
}

.page-lottery-liuhecai__icon-list-item h3 {
  font-size: 1.6em;
  color: #003366;
  margin-top: 0;
  margin-bottom: 8px;
}

.page-lottery-liuhecai__icon-list-item p {
  font-size: 1em;
  color: #555;
  margin-bottom: 0;
}

.page-lottery-liuhecai__faq-list {
  margin-top: 30px;
}

.page-lottery-liuhecai__faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-lottery-liuhecai__faq-question {
  font-size: 1.4em;
  color: #003366;
  padding: 20px 25px;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f0f4f8;
  border-bottom: 1px solid #e0e0e0;
}

.page-lottery-liuhecai__faq-question::after {
  content: '+';
  font-size: 1.2em;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.page-lottery-liuhecai__faq-item.active .page-lottery-liuhecai__faq-question::after {
  transform: rotate(45deg);
}

.page-lottery-liuhecai__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-lottery-liuhecai__faq-item.active .page-lottery-liuhecai__faq-answer {
  max-height: 200px; /* Adjust as needed */
  padding: 20px 25px;
}

.page-lottery-liuhecai__faq-answer p {
  font-size: 1em;
  color: #555;
  margin-bottom: 0;
}

.page-lottery-liuhecai__cta-banner {
  background: linear-gradient(90deg, #003366, #FFCC00);
  color: #ffffff;
  text-align: center;
  padding: 60px 20px;
}

.page-lottery-liuhecai__cta-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.page-lottery-liuhecai__cta-text {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #f0f0f0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-lottery-liuhecai__hero-title {
    font-size: 3em;
  }
  .page-lottery-liuhecai__hero-description {
    font-size: 1.1em;
  }
  .page-lottery-liuhecai__section-title {
    font-size: 2em;
  }
  .page-lottery-liuhecai__grid-title,
  .page-lottery-liuhecai__step-title,
  .page-lottery-liuhecai__list-title,
  .page-lottery-liuhecai__promo-title,
  .page-lottery-liuhecai__icon-list-item h3,
  .page-lottery-liuhecai__faq-question {
    font-size: 1.4em;
  }
  .page-lottery-liuhecai__cta-title {
    font-size: 2.2em;
  }
  .page-lottery-liuhecai__cta-text {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-lottery-liuhecai__hero {
    padding: 60px 0;
  }
  .page-lottery-liuhecai__hero-title {
    font-size: 2.5em;
  }
  .page-lottery-liuhecai__hero-description {
    font-size: 1em;
  }
  .page-lottery-liuhecai__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-lottery-liuhecai__btn {
    width: 80%;
    max-width: 300px;
  }
  .page-lottery-liuhecai__section {
    padding: 40px 0;
  }
  .page-lottery-liuhecai__section-title {
    font-size: 1.8em;
  }
  .page-lottery-liuhecai__grid,
  .page-lottery-liuhecai__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-lottery-liuhecai__icon-list-item {
    flex-direction: column;
    text-align: center;
  }
  .page-lottery-liuhecai__icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .page-lottery-liuhecai__cta-banner {
    padding: 40px 20px;
  }
  .page-lottery-liuhecai__cta-title {
    font-size: 1.8em;
  }
  .page-lottery-liuhecai__cta-text {
    font-size: 1em;
  }
  .page-lottery-liuhecai__faq-question {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-lottery-liuhecai__hero-title {
    font-size: 2em;
  }
  .page-lottery-liuhecai__hero-description {
    font-size: 0.9em;
  }
  .page-lottery-liuhecai__section-title {
    font-size: 1.5em;
  }
  .page-lottery-liuhecai__btn {
    width: 90%;
  }
  .page-lottery-liuhecai__cta-title {
    font-size: 1.6em;
  }
}