/* style/blog-value-behind-hello88-discount.css */

:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --background-color: #08160F;
  --text-main-color: #F2FFF6;
  --text-secondary-color: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;
}

.page-blog-value-behind-hello88-discount {
  font-family: Arial, sans-serif;
  color: var(--text-main-color); /* Light text for dark body background */
  background-color: var(--background-color);
}

.page-blog-value-behind-hello88-discount__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 60px 20px; /* Small top padding, larger bottom for content separation */
  color: var(--text-main-color);
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-value-behind-hello88-discount__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  margin-bottom: 20px; /* Space between image and text */
}

.page-blog-value-behind-hello88-discount__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-value-behind-hello88-discount__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-value-behind-hello88-discount__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-main-color);
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-value-behind-hello88-discount__intro-text {
  font-size: 1.15em;
  line-height: 1.6;
  color: var(--text-secondary-color);
  margin-bottom: 30px;
}

.page-blog-value-behind-hello88-discount__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.page-blog-value-behind-hello88-discount__btn-primary,
.page-blog-value-behind-hello88-discount__btn-secondary {
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-blog-value-behind-hello88-discount__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-value-behind-hello88-discount__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-value-behind-hello88-discount__btn-secondary {
  background: transparent;
  color: var(--glow-color);
  border: 2px solid var(--glow-color);
}

.page-blog-value-behind-hello88-discount__btn-secondary:hover {
  background: var(--glow-color);
  color: var(--background-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-value-behind-hello88-discount__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--background-color);
  color: var(--text-main-color);
  line-height: 1.7;
  font-size: 1.05em;
}

.page-blog-value-behind-hello88-discount__article p {
  margin-bottom: 1.5em;
  color: var(--text-secondary-color);
}

.page-blog-value-behind-hello88-discount__section-title {
  font-size: 2.2em;
  font-weight: 700;
  color: var(--text-main-color);
  margin-top: 50px;
  margin-bottom: 30px;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.page-blog-value-behind-hello88-discount__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-blog-value-behind-hello88-discount__feature-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-value-behind-hello88-discount__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-blog-value-behind-hello88-discount__card-image {
  width: 100%;
  max-width: 400px; /* Recommended size for content images */
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid var(--divider-color);
}

.page-blog-value-behind-hello88-discount__card-title {
  font-size: 1.5em;
  font-weight: 600;
  color: var(--gold-color);
  margin-bottom: 15px;
}

.page-blog-value-behind-hello88-discount__feature-card p {
  font-size: 0.95em;
  color: var(--text-secondary-color);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-blog-value-behind-hello88-discount__btn-link {
  color: var(--glow-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 1em;
  border: 1px solid var(--glow-color);
  padding: 8px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
  margin-top: auto; /* Push button to bottom */
}

.page-blog-value-behind-hello88-discount__btn-link:hover {
  background-color: var(--glow-color);
  color: var(--background-color);
}

.page-blog-value-behind-hello88-discount__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2em;
}

.page-blog-value-behind-hello88-discount__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  color: var(--text-secondary-color);
}

.page-blog-value-behind-hello88-discount__list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--glow-color);
  font-weight: bold;
  font-size: 1.2em;
}

.page-blog-value-behind-hello88-discount__highlight-text {
  color: var(--gold-color);
  font-weight: bold;
}

.page-blog-value-behind-hello88-discount__faq-section {
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-blog-value-behind-hello88-discount__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-value-behind-hello88-discount__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: 600;
  color: var(--text-main-color);
  cursor: pointer;
  background-color: var(--deep-green-color);
  border-bottom: 1px solid var(--border-color);
  transition: background-color 0.3s ease;
}

.page-blog-value-behind-hello88-discount__faq-question:hover {
  background-color: #1a4e32; /* Slightly darker deep green */
}

.page-blog-value-behind-hello88-discount__faq-item[open] .page-blog-value-behind-hello88-discount__faq-question {
  border-bottom: 1px solid var(--border-color);
}

.page-blog-value-behind-hello88-discount__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--glow-color);
  transition: transform 0.3s ease;
}

.page-blog-value-behind-hello88-discount__faq-item[open] .page-blog-value-behind-hello88-discount__faq-toggle {
  transform: rotate(45deg); /* Plus sign rotates to X */
}

.page-blog-value-behind-hello88-discount__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: var(--text-secondary-color);
  line-height: 1.6;
  background-color: var(--card-bg);
}

.page-blog-value-behind-hello88-discount__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-value-behind-hello88-discount__text-link {
  color: var(--gold-color);
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.3s ease;
}

.page-blog-value-behind-hello88-discount__text-link:hover {
  color: var(--glow-color);
}

.page-blog-value-behind-hello88-discount__cta-section {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--divider-color);
}

.page-blog-value-behind-hello88-discount__btn-large {
  padding: 16px 40px;
  font-size: 1.2em;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-value-behind-hello88-discount__main-title {
    font-size: 2.5em;
  }
  .page-blog-value-behind-hello88-discount__section-title {
    font-size: 2em;
  }
  .page-blog-value-behind-hello88-discount__feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-blog-value-behind-hello88-discount {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-value-behind-hello88-discount__hero-section {
    padding: 10px 15px 40px 15px;
  }

  .page-blog-value-behind-hello88-discount__main-title {
    font-size: 2em;
    margin-bottom: 10px;
  }

  .page-blog-value-behind-hello88-discount__intro-text {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-blog-value-behind-hello88-discount__cta-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-value-behind-hello88-discount__btn-primary,
  .page-blog-value-behind-hello88-discount__btn-secondary,
  .page-blog-value-behind-hello88-discount a[class*="button"],
  .page-blog-value-behind-hello88-discount a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-value-behind-hello88-discount__content-area {
    padding: 30px 15px;
  }

  .page-blog-value-behind-hello88-discount__section-title {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-blog-value-behind-hello88-discount__feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-value-behind-hello88-discount__card-image {
    height: 200px; /* Adjust height for smaller screens */
  }

  .page-blog-value-behind-hello88-discount__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-blog-value-behind-hello88-discount__faq-answer {
    padding: 15px 20px;
  }

  /* Mobile responsive for all images */
  .page-blog-value-behind-hello88-discount img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Mobile responsive for all containers */
  .page-blog-value-behind-hello88-discount__section,
  .page-blog-value-behind-hello88-discount__card,
  .page-blog-value-behind-hello88-discount__container,
  .page-blog-value-behind-hello88-discount__hero-image-wrapper,
  .page-blog-value-behind-hello88-discount__cta-section,
  .page-blog-value-behind-hello88-discount__feature-grid,
  .page-blog-value-behind-hello88-discount__faq-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
}

@media (max-width: 480px) {
  .page-blog-value-behind-hello88-discount__main-title {
    font-size: 1.8em;
  }
  .page-blog-value-behind-hello88-discount__section-title {
    font-size: 1.6em;
  }
  .page-blog-value-behind-hello88-discount__btn-large {
    font-size: 1.1em;
    padding: 14px 30px;
  }
}