.page-dai-ly-789clup {
  background-color: #0A0A0A; /* Matches custom background color */
  color: #FFF6D6; /* Matches custom text main color for dark background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-dai-ly-789clup__container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 40px 16px;
  box-sizing: border-box;
}

.page-dai-ly-789clup__main-title {
  font-size: clamp(2.2em, 4vw, 3em); /* H1 font size with clamp */
  font-weight: 700;
  line-height: 1.2;
  color: #F2C14E; /* Brand color for main title */
  margin-bottom: 20px;
}

.page-dai-ly-789clup__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #FFF6D6;
}

.page-dai-ly-789clup__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.5em);
  font-weight: 700;
  color: #F2C14E;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
}

/* Intro Section */
.page-dai-ly-789clup__intro-section {
  padding-top: 10px; /* Small top padding as per non-homepage rule */
  padding-bottom: 60px;
  background-color: #0A0A0A;
}

.page-dai-ly-789clup__intro-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-dai-ly-789clup__intro-content {
  flex: 1 1 50%;
  min-width: 300px;
}

.page-dai-ly-789clup__intro-image-wrapper {
  flex: 1 1 40%;
  text-align: center;
}

.page-dai-ly-789clup__intro-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Buttons */
.page-dai-ly-789clup__cta-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap; /* Allow wrapping on small screens */
}

.page-dai-ly-789clup__btn-primary,
.page-dai-ly-789clup__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  white-space: normal; /* Allow button text to wrap */
  word-wrap: break-word;
  box-sizing: border-box; /* Include padding in width calculation */
  text-align: center;
}

.page-dai-ly-789clup__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Custom button gradient */
  color: #FFF6D6; /* Custom text main for button */
  border: none;
}

.page-dai-ly-789clup__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.page-dai-ly-789clup__btn-secondary {
  background-color: #111111; /* Custom card background */
  color: #F2C14E; /* Main brand color for text */
  border: 2px solid #F2C14E; /* Border with main brand color */
}

.page-dai-ly-789clup__btn-secondary:hover {
  background-color: #F2C14E;
  color: #111111;
  transform: translateY(-2px);
}

/* Benefits Section */
.page-dai-ly-789clup__benefits-section {
  padding-bottom: 60px;
}

.page-dai-ly-789clup__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-dai-ly-789clup__benefit-card {
  background-color: #111111; /* Custom card background */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #FFF6D6; /* Custom text main for card content */
  border: 1px solid #3A2A12; /* Custom border color */
}

.page-dai-ly-789clup__benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-dai-ly-789clup__benefit-icon {
  width: 100px; /* Example size, adjust as needed */
  height: 100px;
  object-fit: contain; /* Ensure image fits without cropping */
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD36B); /* Custom glow effect */
}

.page-dai-ly-789clup__card-title {
  font-size: 1.4em;
  font-weight: 600;
  color: #F2C14E; /* Main brand color for titles */
  margin-bottom: 10px;
}

.page-dai-ly-789clup__card-description {
  font-size: 0.95em;
  color: #FFF6D6;
}

/* How To Join Section */
.page-dai-ly-789clup__how-to-join-section {
  padding-bottom: 60px;
}

.page-dai-ly-789clup__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-dai-ly-789clup__step-card {
  background-color: #111111; /* Custom card background */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: #FFF6D6;
  border: 1px solid #3A2A12; /* Custom border color */
}

.page-dai-ly-789clup__step-number {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #F2C14E; /* Main brand color */
  color: #111111; /* Dark text for contrast */
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 0 15px #FFD36B; /* Custom glow effect */
}

.page-dai-ly-789clup__center-cta {
  text-align: center;
  margin-top: 50px;
}

/* FAQ Section */
.page-dai-ly-789clup__faq-section {
  padding-bottom: 60px;
}

.page-dai-ly-789clup__faq-list {
  margin-top: 40px;
}

.page-dai-ly-789clup__faq-item {
  background-color: #111111; /* Custom card background */
  border: 1px solid #3A2A12; /* Custom border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #FFF6D6;
}

.page-dai-ly-789clup__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.15em;
  font-weight: 600;
  cursor: pointer;
  color: #F2C14E; /* Main brand color for questions */
  list-style: none; /* Hide default marker for details */
}

.page-dai-ly-789clup__faq-item[open] > .page-dai-ly-789clup__faq-question {
  background-color: rgba(242, 193, 78, 0.1); /* Slightly lighter background when open */
}

.page-dai-ly-789clup__faq-qtext {
  flex-grow: 1;
}

.page-dai-ly-789clup__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-dai-ly-789clup__faq-item[open] .page-dai-ly-789clup__faq-toggle {
  transform: rotate(45deg); /* Rotate plus to form cross */
}

.page-dai-ly-789clup__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1em;
  color: #FFF6D6;
}

.page-dai-ly-789clup__faq-answer p {
  margin: 0;
}

/* Hide default details marker */
.page-dai-ly-789clup__faq-item > summary::-webkit-details-marker {
  display: none;
}
.page-dai-ly-789clup__faq-item > summary {
  list-style: none;
}

/* Contact Promo Section */
.page-dai-ly-789clup__contact-promo-section {
  padding-bottom: 80px;
  text-align: center;
  background-color: #0A0A0A;
}

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

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .page-dai-ly-789clup__container {
    padding: 20px 15px;
  }

  .page-dai-ly-789clup__main-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-dai-ly-789clup__description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-dai-ly-789clup__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  /* Intro Section */
  .page-dai-ly-789clup__intro-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }
  
  .page-dai-ly-789clup__intro-container {
    flex-direction: column;
    gap: 30px;
    padding: 20px 15px;
  }

  .page-dai-ly-789clup__intro-content {
    order: 2;
  }

  .page-dai-ly-789clup__intro-image-wrapper {
    order: 1;
  }

  /* Buttons */
  .page-dai-ly-789clup__cta-group {
    flex-direction: column;
    gap: 10px;
  }

  .page-dai-ly-789clup__btn-primary,
  .page-dai-ly-789clup__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  /* Benefits Grid */
  .page-dai-ly-789clup__benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-dai-ly-789clup__benefit-card {
    padding: 20px;
  }

  /* How To Join Steps */
  .page-dai-ly-789clup__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-dai-ly-789clup__step-card {
    padding: 20px;
  }

  /* FAQ Section */
  .page-dai-ly-789clup__faq-question {
    font-size: 1em;
    padding: 15px;
  }

  .page-dai-ly-789clup__faq-answer {
    padding: 0 15px 15px 15px;
  }

  /* General image responsive rules (re-emphasized with !important) */
  .page-dai-ly-789clup img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-dai-ly-789clup__intro-image,
  .page-dai-ly-789clup__benefit-icon {
    max-width: 100% !important;
    width: auto !important; /* Allow icons to scale down but not stretch */
    height: auto !important;
  }

  /* Ensure containers also adapt */
  .page-dai-ly-789clup__intro-section,
  .page-dai-ly-789clup__benefits-section,
  .page-dai-ly-789clup__how-to-join-section,
  .page-dai-ly-789clup__faq-section,
  .page-dai-ly-789clup__contact-promo-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}