/* style/blog-hd88-code-latest-promotions-analysis.css */

/* Base styles for the page content */
.page-blog-hd88-code-latest-promotions-analysis {
  background-color: #08160F; /* Custom background color */
  color: #F2FFF6; /* Main text color */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  padding-bottom: 50px; /* Ensure space above footer */
}

/* Hero Section */
.page-blog-hd88-code-latest-promotions-analysis__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as body handles header offset */
  background-color: #0A4B2C; /* Deep Green for hero background */
  overflow: hidden;
}

.page-blog-hd88-code-latest-promotions-analysis__hero-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 30px;
}

.page-blog-hd88-code-latest-promotions-analysis__hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-hd88-code-latest-promotions-analysis__hero-title {
  color: #F2C14E; /* Gold for main title */
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 font size */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-hd88-code-latest-promotions-analysis__hero-description {
  color: #A7D9B8; /* Secondary text color */
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* Call to Action Button */
.page-blog-hd88-code-latest-promotions-analysis__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Custom button gradient */
  color: #F2FFF6; /* Button text color */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-blog-hd88-code-latest-promotions-analysis__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Content Area */
.page-blog-hd88-code-latest-promotions-analysis__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  color: #F2FFF6; /* Main text color */
}

.page-blog-hd88-code-latest-promotions-analysis__section-title {
  color: #F2C14E; /* Gold for section titles */
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
  border-bottom: 2px solid #2E7A4E; /* Border color */
  padding-bottom: 15px;
}

.page-blog-hd88-code-latest-promotions-analysis__subsection-title {
  color: #2AD16F; /* Lighter green for subsections */
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 4px solid #F2C14E; /* Gold accent */
  padding-left: 15px;
}

.page-blog-hd88-code-latest-promotions-analysis__sub-subsection-title {
  color: #A7D9B8; /* Secondary text color for sub-subsections */
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-hd88-code-latest-promotions-analysis__paragraph {
  margin-bottom: 15px;
  color: #F2FFF6; /* Main text color */
}

.page-blog-hd88-code-latest-promotions-analysis__list {
  margin-bottom: 15px;
  padding-left: 25px;
  list-style-type: disc;
  color: #F2FFF6; /* Main text color */
}

.page-blog-hd88-code-latest-promotions-analysis__list-item {
  margin-bottom: 8px;
  color: #F2FFF6; /* Main text color */
}

.page-blog-hd88-code-latest-promotions-analysis__highlight {
  color: #F2C14E; /* Gold for highlights */
  font-weight: bold;
}

.page-blog-hd88-code-latest-promotions-analysis__text-link {
  color: #57E38D; /* Glow color for links */
  text-decoration: none;
}

.page-blog-hd88-code-latest-promotions-analysis__text-link:hover {
  text-decoration: underline;
}

/* Image styling */
.page-blog-hd88-code-latest-promotions-analysis__content-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

/* Card layout for promotions/features */
.page-blog-hd88-code-latest-promotions-analysis__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-hd88-code-latest-promotions-analysis__card {
  background-color: #11271B; /* Card background color */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid #2E7A4E; /* Border color */
  color: #F2FFF6; /* Card text color */
}

.page-blog-hd88-code-latest-promotions-analysis__card:hover {
  transform: translateY(-5px);
}

.page-blog-hd88-code-latest-promotions-analysis__card-title {
  color: #2AD16F; /* Lighter green for card titles */
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.page-blog-hd88-code-latest-promotions-analysis__card-description {
  color: #A7D9B8; /* Secondary text color */
  font-size: 0.95rem;
}

.page-blog-hd88-code-latest-promotions-analysis__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* FAQ Section */
.page-blog-hd88-code-latest-promotions-analysis__faq-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 40px 20px;
  background-color: #11271B; /* Card background color */
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border color */
}

.page-blog-hd88-code-latest-promotions-analysis__faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #1E3A2A; /* Divider color */
  padding-bottom: 15px;
  color: #F2FFF6; /* Main text color */
}

.page-blog-hd88-code-latest-promotions-analysis__faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.page-blog-hd88-code-latest-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.15rem;
  font-weight: 600;
  color: #2AD16F; /* Lighter green for FAQ questions */
  cursor: pointer;
  padding: 10px 0;
  list-style: none; /* For details/summary */
}

.page-blog-hd88-code-latest-promotions-analysis__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for Chrome */
}

.page-blog-hd88-code-latest-promotions-analysis__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #F2C14E; /* Gold for toggle */
  margin-left: 10px;
}

.page-blog-hd88-code-latest-promotions-analysis__faq-answer {
  padding-top: 10px;
  padding-left: 20px;
  font-size: 1rem;
  color: #A7D9B8; /* Secondary text color */
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-hd88-code-latest-promotions-analysis__hero-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }
}

@media (max-width: 768px) {
  .page-blog-hd88-code-latest-promotions-analysis {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-hd88-code-latest-promotions-analysis__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* body already handles header offset */
  }

  .page-blog-hd88-code-latest-promotions-analysis__hero-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .page-blog-hd88-code-latest-promotions-analysis__hero-description {
    font-size: 1rem;
  }

  .page-blog-hd88-code-latest-promotions-analysis__cta-button {
    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;
    font-size: 1rem;
  }

  .page-blog-hd88-code-latest-promotions-analysis__content-area,
  .page-blog-hd88-code-latest-promotions-analysis__faq-section {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-hd88-code-latest-promotions-analysis__section-title {
    font-size: 1.8rem;
  }

  .page-blog-hd88-code-latest-promotions-analysis__subsection-title {
    font-size: 1.5rem;
  }

  .page-blog-hd88-code-latest-promotions-analysis__card-grid {
    grid-template-columns: 1fr;
  }

  /* Images responsive */
  .page-blog-hd88-code-latest-promotions-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  /* Ensure containers with images are also responsive */
  .page-blog-hd88-code-latest-promotions-analysis__hero-image,
  .page-blog-hd88-code-latest-promotions-analysis__content-image,
  .page-blog-hd88-code-latest-promotions-analysis__card-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important; /* Override fixed height for card images on mobile if it causes overflow */
    box-sizing: border-box !important;
  }

  /* Video responsive (if applicable) - no video in this page */
  .page-blog-hd88-code-latest-promotions-analysis video,
  .page-blog-hd88-code-latest-promotions-analysis__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-hd88-code-latest-promotions-analysis__video-section,
  .page-blog-hd88-code-latest-promotions-analysis__video-container,
  .page-blog-hd88-code-latest-promotions-analysis__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
}