.page-dai-ly {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF5E1; /* Text Main */
  background-color: #B71C1C; /* Background */
}

.page-dai-ly__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.page-dai-ly__hero-section {
  padding-top: 10px; /* Small top padding for fixed header */
  position: relative;
  text-align: center;
  padding-bottom: 50px;
  overflow: hidden;
}

.page-dai-ly__hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 600px; /* Fixed height for desktop hero */
  overflow: hidden;
  border-radius: 10px;
}

.page-dai-ly__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cover the area */
  display: block;
  filter: brightness(0.7); /* Slightly darken image for text contrast */
}

.page-dai-ly__hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 20px;
  max-width: 900px;
  margin: -200px auto 0; /* Pull content up over the image */
  background: rgba(122, 14, 14, 0.8); /* Deep Red with opacity */
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border: 2px solid #F2B544; /* Border */
}

.page-dai-ly__main-title {
  font-size: 3.2em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFD86A; /* Gold-like for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-dai-ly__description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #FFF5E1;
}

.page-dai-ly__btn-primary {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button Gold gradient */
  color: #7A0E0E; /* Deep Red text for contrast */
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-dai-ly__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-dai-ly__section {
  padding: 60px 0;
  text-align: center;
}

.page-dai-ly__section-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 40px;
  color: #FFD86A; /* Gold-like for emphasis */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-dai-ly__section--benefits .page-dai-ly__container,
.page-dai-ly__section--commission .page-dai-ly__container,
.page-dai-ly__section--faq .page-dai-ly__container {
  background-color: #D32F2F; /* Card BG */
  border-radius: 15px;
  padding: 40px 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid #F2B544;
}

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

.page-dai-ly__benefit-card,
.page-dai-ly__commission-card {
  background-color: #7A0E0E; /* Deep Red */
  border: 1px solid #F2B544; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-dai-ly__benefit-card:hover,
.page-dai-ly__commission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-dai-ly__benefit-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-dai-ly__card-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 15px;
  color: #FFD86A;
}

.page-dai-ly__benefit-card p,
.page-dai-ly__commission-card p,
.page-dai-ly__commission-card ul {
  color: #FFF5E1;
  font-size: 1.05em;
  margin-bottom: 15px;
}

.page-dai-ly__commission-card ul {
  list-style: none;
  padding: 0;
}

.page-dai-ly__commission-card ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
  text-align: left;
}

.page-dai-ly__commission-card ul li::before {
  content: '✓';
  color: #FFD86A;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-dai-ly__section--register .page-dai-ly__container {
  background-color: #B71C1C; /* Background */
  border-radius: 15px;
  padding: 40px 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-dai-ly__register-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
}

.page-dai-ly__register-steps {
  flex: 1;
  text-align: left;
}

.page-dai-ly__step-item {
  margin-bottom: 30px;
  position: relative;
  padding-left: 70px;
}

.page-dai-ly__step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button Gold gradient */
  color: #7A0E0E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-dai-ly__step-title {
  font-size: 1.6em;
  color: #FFD86A;
  margin-bottom: 10px;
}

.page-dai-ly__step-item p {
  color: #FFF5E1;
  font-size: 1.1em;
}

.page-dai-ly__register-image-wrapper {
  flex: 1;
  max-width: 50%;
}

.page-dai-ly__register-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #F2B544;
}

.page-dai-ly__cta-bottom {
  margin-top: 50px;
}

.page-dai-ly__section--tools {
  padding: 60px 0;
  background-color: #D32F2F; /* Card BG */
  border-top: 1px solid #F2B544;
  border-bottom: 1px solid #F2B544;
}

.page-dai-ly__tools-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
  text-align: left;
}

.page-dai-ly__tools-content {
  flex: 1;
}

.page-dai-ly__sub-title {
  font-size: 1.8em;
  color: #FFD86A;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-dai-ly__tools-content p {
  color: #FFF5E1;
  font-size: 1.1em;
  margin-bottom: 25px;
}

.page-dai-ly__btn-secondary {
  display: inline-block;
  padding: 15px 35px;
  background: none;
  color: #FFD86A; /* Gold text */
  border: 2px solid #FFD86A; /* Gold border */
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: 700;
  transition: all 0.3s ease;
}

.page-dai-ly__btn-secondary:hover {
  background: #FFD86A;
  color: #7A0E0E; /* Deep Red text on hover */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-dai-ly__tools-image-wrapper {
  flex: 1;
  max-width: 50%;
}

.page-dai-ly__tools-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #F2B544;
}

.page-dai-ly__section--faq {
  padding-bottom: 80px;
}

.page-dai-ly__faq-list {
  margin-top: 40px;
  text-align: left;
}

details.page-dai-ly__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #F2B544; /* Border */
  overflow: hidden;
  background: #7A0E0E; /* Deep Red */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

details.page-dai-ly__faq-item summary.page-dai-ly__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #FFD86A;
  font-weight: 600;
}

details.page-dai-ly__faq-item summary.page-dai-ly__faq-question::-webkit-details-marker {
  display: none;
}

details.page-dai-ly__faq-item summary.page-dai-ly__faq-question:hover {
  background: #C91F17; /* Main color */
}

.page-dai-ly__faq-qtext {
  flex: 1;
  font-size: 1.2em;
  line-height: 1.5;
  text-align: left;
}

.page-dai-ly__faq-toggle {
  font-size: 2em;
  font-weight: bold;
  color: #FFD86A; /* Gold text */
  flex-shrink: 0;
  margin-left: 20px;
  width: 30px;
  text-align: center;
}

details.page-dai-ly__faq-item .page-dai-ly__faq-answer {
  padding: 0 25px 25px;
  background: #B71C1C; /* Background */
  border-radius: 0 0 10px 10px;
  color: #FFF5E1;
  font-size: 1.1em;
}

.page-dai-ly__faq-answer p {
  margin-top: 15px;
}

.page-dai-ly__section--cta-final {
  padding-bottom: 80px;
  background-color: #D32F2F; /* Card BG */
  border-top: 1px solid #F2B544;
  border-bottom: 1px solid #F2B544;
}

.page-dai-ly__section--cta-final .page-dai-ly__section-title {
  color: #FFD86A;
}

.page-dai-ly__section--cta-final .page-dai-ly__description {
  max-width: 800px;
  margin: 0 auto 40px;
  color: #FFF5E1;
}

/* General image responsiveness */
.page-dai-ly img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* General button responsiveness */
.page-dai-ly__btn-primary,
.page-dai-ly__btn-secondary {
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

/* Media Queries */
@media (max-width: 1024px) {
  .page-dai-ly__main-title {
    font-size: 2.8em;
  }

  .page-dai-ly__section-title {
    font-size: 2.2em;
  }

  .page-dai-ly__hero-image-wrapper {
    height: 500px;
  }

  .page-dai-ly__hero-content {
    margin-top: -150px;
  }

  .page-dai-ly__register-content,
  .page-dai-ly__tools-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .page-dai-ly__register-image-wrapper,
  .page-dai-ly__tools-image-wrapper {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-dai-ly__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* HERO主图区域 */
  .page-dai-ly__hero-section {
    padding-top: 10px; /* Small top padding for fixed header */
    padding-bottom: 30px;
  }

  .page-dai-ly__hero-image-wrapper {
    height: auto !important; /* Allow height to adjust */
    aspect-ratio: unset !important; /* Remove fixed aspect ratio */
    border-radius: 0;
  }

  .page-dai-ly__hero-image {
    object-fit: contain !important; /* Contain the image, no cropping */
    width: 100% !important;
    height: auto !important;
    filter: brightness(0.8) !important; /* Slightly less dark for mobile */
  }

  .page-dai-ly__hero-content {
    margin: -80px auto 0 !important; /* Adjust margin for mobile */
    padding: 25px 15px !important;
    border-radius: 10px !important;
    border: 1px solid #F2B544 !important;
  }

  .page-dai-ly__main-title {
    font-size: clamp(2em, 7vw, 2.5em) !important;
    margin-bottom: 15px !important;
  }

  .page-dai-ly__description {
    font-size: 1em !important;
    margin-bottom: 25px !important;
  }

  .page-dai-ly__btn-primary,
  .page-dai-ly__btn-secondary {
    padding: 12px 25px !important;
    font-size: 1em !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* 产品展示图区域 (if any grid-like content exists) */
  .page-dai-ly__benefits-grid,
  .page-dai-ly__commission-grid {
    grid-template-columns: 1fr !important; /* Single column */
    gap: 20px !important;
    overflow-x: hidden !important; /* Prevent horizontal scroll */
  }

  .page-dai-ly__section-title {
    font-size: clamp(1.8em, 6vw, 2em) !important;
    margin-bottom: 30px !important;
  }

  .page-dai-ly__section,
  .page-dai-ly__section--benefits .page-dai-ly__container,
  .page-dai-ly__section--commission .page-dai-ly__container,
  .page-dai-ly__section--faq .page-dai-ly__container,
  .page-dai-ly__section--cta-final .page-dai-ly__container {
    padding: 30px 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* 装饰主标题 + 长文 SEO 区 */
  .page-dai-ly__register-content,
  .page-dai-ly__tools-wrapper {
    flex-direction: column-reverse !important; /* Reverse order for register section */
    gap: 20px !important;
  }

  .page-dai-ly__tools-wrapper {
    flex-direction: column !important; /* Keep tools in original order */
  }

  .page-dai-ly__register-steps,
  .page-dai-ly__tools-content {
    text-align: center !important;
  }

  .page-dai-ly__step-item {
    padding-left: 0 !important;
    margin-bottom: 25px !important;
  }

  .page-dai-ly__step-number {
    position: static !important;
    margin: 0 auto 15px !important;
  }

  .page-dai-ly__step-title {
    font-size: 1.4em !important;
  }

  .page-dai-ly__register-image-wrapper,
  .page-dai-ly__tools-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-dai-ly__benefit-icon,
  .page-dai-ly__register-image,
  .page-dai-ly__tools-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* 通用图片与容器 */
  .page-dai-ly img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* 按钮与按钮容器 */
  .page-dai-ly__cta-bottom {
    margin-top: 30px !important;
  }

  .page-dai-ly__btn-primary,
  .page-dai-ly__btn-secondary {
    display: block !important;
    margin: 10px auto !important;
  }

  /* FAQ */
  details.page-dai-ly__faq-item summary.page-dai-ly__faq-question {
    padding: 15px !important;
  }

  .page-dai-ly__faq-qtext {
    font-size: 1.1em !important;
  }

  .page-dai-ly__faq-toggle {
    font-size: 1.8em !important;
    margin-left: 15px !important;
  }

  details.page-dai-ly__faq-item .page-dai-ly__faq-answer {
    padding: 0 15px 15px !important;
    font-size: 1em !important;
  }
}

@media (max-width: 480px) {
  .page-dai-ly__main-title {
    font-size: clamp(1.8em, 8vw, 2.2em) !important;
  }

  .page-dai-ly__section-title {
    font-size: clamp(1.6em, 7vw, 1.8em) !important;
  }
}