/* style/blog-fa88-no-hu-latest-promotions-analysis.css */

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

.page-blog-fa88-no-hu-latest-promotions-analysis {
  background-color: var(--fa88-background); /* Dark background */
  color: var(--fa88-text-main); /* Light text for readability */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-blog-fa88-no-hu-latest-promotions-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-fa88-no-hu-latest-promotions-analysis__section {
  padding: 60px 0;
  text-align: center;
}

.page-blog-fa88-no-hu-latest-promotions-analysis__section-title {
  font-size: clamp(24px, 3.5vw, 42px);
  color: var(--fa88-gold-color);
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.page-blog-fa88-no-hu-latest-promotions-analysis__sub-title {
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--fa88-text-main);
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-blog-fa88-no-hu-latest-promotions-analysis__text-block {
  font-size: 17px;
  color: var(--fa88-text-secondary);
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-fa88-no-hu-latest-promotions-analysis__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-blog-fa88-no-hu-latest-promotions-analysis__hero-image-wrapper {
  width: 100%;
  height: auto;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.page-blog-fa88-no-hu-latest-promotions-analysis__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-fa88-no-hu-latest-promotions-analysis__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 20px;
  text-align: center;
}

.page-blog-fa88-no-hu-latest-promotions-analysis__main-title {
  font-size: clamp(32px, 4.5vw, 56px);
  color: var(--fa88-gold-color);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1px;
}

.page-blog-fa88-no-hu-latest-promotions-analysis__hero-description {
  font-size: 18px;
  color: var(--fa88-text-main);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-fa88-no-hu-latest-promotions-analysis__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-fa88-no-hu-latest-promotions-analysis__btn-primary {
  background: var(--fa88-button-gradient);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-blog-fa88-no-hu-latest-promotions-analysis__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
}

.page-blog-fa88-no-hu-latest-promotions-analysis__btn-secondary {
  background-color: transparent;
  color: var(--fa88-secondary-color);
  border: 2px solid var(--fa88-secondary-color);
}

.page-blog-fa88-no-hu-latest-promotions-analysis__btn-secondary:hover {
  background-color: var(--fa88-secondary-color);
  color: var(--fa88-text-main);
}

.page-blog-fa88-no-hu-latest-promotions-analysis__intro-section {
  background-color: var(--fa88-background);
  padding-top: 40px;
}

.page-blog-fa88-no-hu-latest-promotions-analysis__promotions-types {
  background-color: var(--fa88-card-bg);
  padding: 60px 0;
}

.page-blog-fa88-no-hu-latest-promotions-analysis__grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-fa88-no-hu-latest-promotions-analysis__card {
  background-color: var(--fa88-background);
  border: 1px solid var(--fa88-border-color);
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 450px; /* Ensure cards have similar height */
}

.page-blog-fa88-no-hu-latest-promotions-analysis__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-fa88-no-hu-latest-promotions-analysis__card-title {
  font-size: 22px;
  color: var(--fa88-gold-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-fa88-no-hu-latest-promotions-analysis__card-description {
  font-size: 16px;
  color: var(--fa88-text-secondary);
  margin-bottom: 25px;
  flex-grow: 1;
  text-align: justify;
}

.page-blog-fa88-no-hu-latest-promotions-analysis__rules-section {
  background-color: var(--fa88-background);
  padding-top: 40px;
}

.page-blog-fa88-no-hu-latest-promotions-analysis__content-block {
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-fa88-no-hu-latest-promotions-analysis__list {
  list-style-type: disc;
  padding-left: 25px;
  margin-bottom: 20px;
  color: var(--fa88-text-secondary);
  text-align: left;
}

.page-blog-fa88-no-hu-latest-promotions-analysis__list-item {
  margin-bottom: 10px;
  font-size: 17px;
}

.page-blog-fa88-no-hu-latest-promotions-analysis__tips-section {
  background-color: var(--fa88-card-bg);
  padding: 60px 0;
}

.page-blog-fa88-no-hu-latest-promotions-analysis__comparison-section {
  background-color: var(--fa88-background);
  padding-top: 40px;
}

.page-blog-fa88-no-hu-latest-promotions-analysis__content-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  margin: 40px auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-fa88-no-hu-latest-promotions-analysis__faq-section {
  background-color: var(--fa88-card-bg);
  padding: 60px 0;
}

.page-blog-fa88-no-hu-latest-promotions-analysis__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
  text-align: left;
}

.page-blog-fa88-no-hu-latest-promotions-analysis__faq-item {
  background-color: var(--fa88-background);
  border: 1px solid var(--fa88-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--fa88-text-secondary);
}

.page-blog-fa88-no-hu-latest-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: var(--fa88-text-main);
  background-color: var(--fa88-deep-green);
  border-bottom: 1px solid var(--fa88-border-color);
}

.page-blog-fa88-no-hu-latest-promotions-analysis__faq-item[open] .page-blog-fa88-no-hu-latest-promotions-analysis__faq-question {
  border-bottom: 1px solid var(--fa88-border-color);
}

.page-blog-fa88-no-hu-latest-promotions-analysis__faq-qtext {
  flex-grow: 1;
}

.page-blog-fa88-no-hu-latest-promotions-analysis__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 15px;
  color: var(--fa88-gold-color);
}

.page-blog-fa88-no-hu-latest-promotions-analysis__faq-item[open] .page-blog-fa88-no-hu-latest-promotions-analysis__faq-toggle {
  content: '−';
}

.page-blog-fa88-no-hu-latest-promotions-analysis__faq-answer {
  padding: 20px 25px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--fa88-text-secondary);
  text-align: justify;
}

.page-blog-fa88-no-hu-latest-promotions-analysis__faq-answer p:last-child {
  margin-bottom: 0;
}

.page-blog-fa88-no-hu-latest-promotions-analysis__conclusion-section {
  background-color: var(--fa88-background);
  padding-bottom: 60px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-fa88-no-hu-latest-promotions-analysis__section {
    padding: 50px 0;
  }
  .page-blog-fa88-no-hu-latest-promotions-analysis__hero-content {
    max-width: 768px;
  }
  .page-blog-fa88-no-hu-latest-promotions-analysis__grid-cards {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-blog-fa88-no-hu-latest-promotions-analysis__card {
    min-height: 420px;
  }
}

@media (max-width: 768px) {
  .page-blog-fa88-no-hu-latest-promotions-analysis__section {
    padding: 40px 0;
  }
  .page-blog-fa88-no-hu-latest-promotions-analysis__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-blog-fa88-no-hu-latest-promotions-analysis__sub-title {
    font-size: 22px;
  }
  .page-blog-fa88-no-hu-latest-promotions-analysis__text-block {
    font-size: 16px;
  }
  .page-blog-fa88-no-hu-latest-promotions-analysis__main-title {
    font-size: 38px;
  }
  .page-blog-fa88-no-hu-latest-promotions-analysis__hero-description {
    font-size: 16px;
  }
  .page-blog-fa88-no-hu-latest-promotions-analysis__cta-button {
    padding: 12px 25px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-bottom: 15px;
  }
  .page-blog-fa88-no-hu-latest-promotions-analysis__grid-cards {
    grid-template-columns: 1fr;
  }
  .page-blog-fa88-no-hu-latest-promotions-analysis__card {
    min-height: auto;
  }
  .page-blog-fa88-no-hu-latest-promotions-analysis__card-description {
    font-size: 15px;
  }
  .page-blog-fa88-no-hu-latest-promotions-analysis__list {
    padding-left: 20px;
  }
  .page-blog-fa88-no-hu-latest-promotions-analysis__list-item {
    font-size: 16px;
  }
  .page-blog-fa88-no-hu-latest-promotions-analysis__faq-question {
    font-size: 16px;
    padding: 15px 20px;
  }
  .page-blog-fa88-no-hu-latest-promotions-analysis__faq-answer {
    padding: 15px 20px;
    font-size: 15px;
  }
  /* Mobile image responsiveness */
  .page-blog-fa88-no-hu-latest-promotions-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-fa88-no-hu-latest-promotions-analysis__hero-image-wrapper,
  .page-blog-fa88-no-hu-latest-promotions-analysis__card,
  .page-blog-fa88-no-hu-latest-promotions-analysis__container,
  .page-blog-fa88-no-hu-latest-promotions-analysis__content-block {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-blog-fa88-no-hu-latest-promotions-analysis__hero-section {
    padding-top: 10px !important;
    padding-left: 0;
    padding-right: 0;
  }
  .page-blog-fa88-no-hu-latest-promotions-analysis__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .page-blog-fa88-no-hu-latest-promotions-analysis__main-title {
    font-size: 32px;
  }
  .page-blog-fa88-no-hu-latest-promotions-analysis__section-title {
    font-size: 24px;
  }
  .page-blog-fa88-no-hu-latest-promotions-analysis__hero-description {
    font-size: 15px;
  }
  .page-blog-fa88-no-hu-latest-promotions-analysis__cta-button {
    font-size: 15px;
  }
}