/* style/blog-five88-chinh-thuc-latest-promotions-analysis.css */
.page-blog-five88-chinh-thuc-latest-promotions-analysis {
  background-color: #08160F; /* Nền tối */
  color: #F2FFF6; /* Chữ sáng */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-five88-chinh-thuc-latest-promotions-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-five88-chinh-thuc-latest-promotions-analysis__section {
  padding: 60px 0;
  text-align: center;
}

.page-blog-five88-chinh-thuc-latest-promotions-analysis__section-title {
  font-size: clamp(2em, 4vw, 2.8em); /* H1 font size control */
  color: #F2C14E; /* Gold */
  margin-bottom: 30px;
  font-weight: bold;
}

.page-blog-five88-chinh-thuc-latest-promotions-analysis__text-block {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-blog-five88-chinh-thuc-latest-promotions-analysis__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* Small top padding, body handles header offset */
  overflow: hidden;
  color: #F2FFF6;
}

.page-blog-five88-chinh-thuc-latest-promotions-analysis__hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  overflow: hidden;
  margin-bottom: 30px;
}

.page-blog-five88-chinh-thuc-latest-promotions-analysis__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-blog-five88-chinh-thuc-latest-promotions-analysis__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  padding: 0 20px;
}

.page-blog-five88-chinh-thuc-latest-promotions-analysis__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em); /* H1 font size control */
  color: #F2FFF6;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-blog-five88-chinh-thuc-latest-promotions-analysis__hero-description {
  font-size: 1.2em;
  color: #A7D9B8;
  margin-bottom: 30px;
}

/* CTA Buttons */
.page-blog-five88-chinh-thuc-latest-promotions-analysis__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-five88-chinh-thuc-latest-promotions-analysis__btn-primary,
.page-blog-five88-chinh-thuc-latest-promotions-analysis__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
  max-width: 100%;
}

.page-blog-five88-chinh-thuc-latest-promotions-analysis__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #ffffff;
  border: none;
}

.page-blog-five88-chinh-thuc-latest-promotions-analysis__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-five88-chinh-thuc-latest-promotions-analysis__btn-secondary {
  background: transparent;
  color: #57E38D; /* Glow color */
  border: 2px solid #57E38D;
}

.page-blog-five88-chinh-thuc-latest-promotions-analysis__btn-secondary:hover {
  background-color: rgba(87, 227, 141, 0.1);
  transform: translateY(-3px);
}

/* Overview Section */
.page-blog-five88-chinh-thuc-latest-promotions-analysis__overview .page-blog-five88-chinh-thuc-latest-promotions-analysis__section-title {
  color: #F2C14E;
}

.page-blog-five88-chinh-thuc-latest-promotions-analysis__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-blog-five88-chinh-thuc-latest-promotions-analysis__feature-item {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
}

.page-blog-five88-chinh-thuc-latest-promotions-analysis__feature-title {
  font-size: 1.5em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

.page-blog-five88-chinh-thuc-latest-promotions-analysis__feature-item p {
  color: #A7D9B8; /* Text Secondary */
}

/* Promotion Types Section */
.page-blog-five88-chinh-thuc-latest-promotions-analysis__promotion-types .page-blog-five88-chinh-thuc-latest-promotions-analysis__section-title {
  color: #F2C14E;
}

.page-blog-five88-chinh-thuc-latest-promotions-analysis__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-five88-chinh-thuc-latest-promotions-analysis__promo-card {
  background-color: #11271B; /* Card BG */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  border: 1px solid #2E7A4E; /* Border */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-blog-five88-chinh-thuc-latest-promotions-analysis__promo-card-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-height: 200px; /* Enforce minimum size */
}

.page-blog-five88-chinh-thuc-latest-promotions-analysis__promo-card-title {
  font-size: 1.4em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
}

.page-blog-five88-chinh-thuc-latest-promotions-analysis__promo-card p {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1; /* Push button to bottom */
}

/* How to Claim Section */
.page-blog-five88-chinh-thuc-latest-promotions-analysis__how-to-claim .page-blog-five88-chinh-thuc-latest-promotions-analysis__section-title {
  color: #F2C14E;
}

.page-blog-five88-chinh-thuc-latest-promotions-analysis__steps-list {
  list-style: none;
  counter-reset: step-counter;
  margin-top: 40px;
  padding: 0;
  text-align: left;
}

.page-blog-five88-chinh-thuc-latest-promotions-analysis__steps-list li {
  background-color: #11271B; /* Card BG */
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  padding-left: 80px;
  border: 1px solid #2E7A4E; /* Border */
}

.page-blog-five88-chinh-thuc-latest-promotions-analysis__steps-list li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 25px;
  top: 25px;
  background-color: #11A84E; /* Main color */
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
}

.page-blog-five88-chinh-thuc-latest-promotions-analysis__step-title {
  font-size: 1.3em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
}

.page-blog-five88-chinh-thuc-latest-promotions-analysis__steps-list li p {
  color: #A7D9B8; /* Text Secondary */
}

/* Terms and Tips Sections */
.page-blog-five88-chinh-thuc-latest-promotions-analysis__terms .page-blog-five88-chinh-thuc-latest-promotions-analysis__section-title,
.page-blog-five88-chinh-thuc-latest-promotions-analysis__tips .page-blog-five88-chinh-thuc-latest-promotions-analysis__section-title {
  color: #F2C14E;
}

.page-blog-five88-chinh-thuc-latest-promotions-analysis__terms-list,
.page-blog-five88-chinh-thuc-latest-promotions-analysis__tips-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-blog-five88-chinh-thuc-latest-promotions-analysis__terms-list li,
.page-blog-five88-chinh-thuc-latest-promotions-analysis__tips-list li {
  background-color: #11271B; /* Card BG */
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  color: #A7D9B8; /* Text Secondary */
  border-left: 5px solid #11A84E; /* Main color */
}

.page-blog-five88-chinh-thuc-latest-promotions-analysis__terms-list li strong,
.page-blog-five88-chinh-thuc-latest-promotions-analysis__tips-list li strong {
  color: #F2FFF6; /* Text Main */
}

/* FAQ Section */
.page-blog-five88-chinh-thuc-latest-promotions-analysis__faq-section .page-blog-five88-chinh-thuc-latest-promotions-analysis__section-title {
  color: #F2C14E;
}

.page-blog-five88-chinh-thuc-latest-promotions-analysis__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-blog-five88-chinh-thuc-latest-promotions-analysis__faq-item {
  background-color: #11271B; /* Card BG */
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #2E7A4E; /* Border */
  overflow: hidden;
}

.page-blog-five88-chinh-thuc-latest-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
  font-size: 1.1em;
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-blog-five88-chinh-thuc-latest-promotions-analysis__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-five88-chinh-thuc-latest-promotions-analysis__faq-question:hover {
  background-color: #11A84E;
}