/* style/blog-fc888-apk-latest-promotions-analysis.css */

/* Base styles for the page content, ensuring proper text color for dark background */
.page-blog-fc888-apk-latest-promotions-analysis {
  color: #F2FFF6; /* Main text color for dark background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: 0; /* body already handles padding-top from shared.css */
}

/* Section styles */
.page-blog-fc888-apk-latest-promotions-analysis__section {
  padding: 60px 20px;
  text-align: center;
}

.page-blog-fc888-apk-latest-promotions-analysis__dark-bg {
  background-color: #08160F; /* Custom background color */
  color: #F2FFF6;
}

.page-blog-fc888-apk-latest-promotions-analysis__light-bg {
  background-color: #11271B; /* Card BG color, used as a lighter background section */
  color: #F2FFF6;
}

.page-blog-fc888-apk-latest-promotions-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-fc888-apk-latest-promotions-analysis__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  overflow: hidden;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
}

.page-blog-fc888-apk-latest-promotions-analysis__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3; /* Subtle overlay to make text pop */
}

.page-blog-fc888-apk-latest-promotions-analysis__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
}

.page-blog-fc888-apk-latest-promotions-analysis__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive H1 font size */
  color: #F2C14E; /* Gold color for H1 */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.page-blog-fc888-apk-latest-promotions-analysis__hero-description {
  font-size: 1.25rem;
  color: #A7D9B8; /* Secondary text color */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* General Titles and Text */
.page-blog-fc888-apk-latest-promotions-analysis__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #F2C14E; /* Gold color for section titles */
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.3;
}

.page-blog-fc888-apk-latest-promotions-analysis__text-block {
  font-size: 1.1rem;
  color: #F2FFF6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.page-blog-fc888-apk-latest-promotions-analysis__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-blog-fc888-apk-latest-promotions-analysis__btn-primary,
.page-blog-fc888-apk-latest-promotions-analysis__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 200px;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-fc888-apk-latest-promotions-analysis__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-blog-fc888-apk-latest-promotions-analysis__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
  transform: translateY(-2px);
}

.page-blog-fc888-apk-latest-promotions-analysis__btn-secondary {
  background-color: transparent;
  color: #2AD16F;
  border: 2px solid #2AD16F;
}

.page-blog-fc888-apk-latest-promotions-analysis__btn-secondary:hover {
  background-color: rgba(42, 209, 111, 0.1);
  color: #57E38D;
  border-color: #57E38D;
  transform: translateY(-2px);
}

/* Card styles */
.page-blog-fc888-apk-latest-promotions-analysis__card {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  border: 1px solid #2E7A4E; /* Border color */
}

.page-blog-fc888-apk-latest-promotions-analysis__feature-grid,
.page-blog-fc888-apk-latest-promotions-analysis__promo-grid,
.page-blog-fc888-apk-latest-promotions-analysis__steps-grid,
.page-blog-fc888-apk-latest-promotions-analysis__terms-grid {
  display: grid;
  gap: 30px;
  margin-top: 40px;
}

.page-blog-fc888-apk-latest-promotions-analysis__feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-blog-fc888-apk-latest-promotions-analysis__feature-title {
  font-size: 1.5rem;
  color: #F2C14E; /* Gold for feature titles */
  margin-bottom: 15px;
}

.page-blog-fc888-apk-latest-promotions-analysis__feature-description {
  font-size: 1rem;
  color: #A7D9B8;
}

.page-blog-fc888-apk-latest-promotions-analysis__promo-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-blog-fc888-apk-latest-promotions-analysis__promo-title {
  font-size: 1.4rem;
  color: #F2C14E;
  margin-bottom: 10px;
}

.page-blog-fc888-apk-latest-promotions-analysis__promo-description {
  font-size: 0.95rem;
  color: #A7D9B8;
  margin-bottom: 15px;
}

.page-blog-fc888-apk-latest-promotions-analysis__promo-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-blog-fc888-apk-latest-promotions-analysis__promo-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #F2FFF6;
}

.page-blog-fc888-apk-latest-promotions-analysis__promo-list li::before {
  content: '✓';
  color: #2AD16F;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.page-blog-fc888-apk-latest-promotions-analysis__promo-button {
  width: 100%;
  margin-top: auto; /* Push button to bottom */
}

.page-blog-fc888-apk-latest-promotions-analysis__steps-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.page-blog-fc888-apk-latest-promotions-analysis__step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px;
}

.page-blog-fc888-apk-latest-promotions-analysis__step-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #F2C14E; /* Gold for step numbers */
  margin-bottom: 15px;
  border: 3px solid #F2C14E;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-blog-fc888-apk-latest-promotions-analysis__step-title {
  font-size: 1.3rem;
  color: #F2FFF6;
  margin-bottom: 10px;
}

.page-blog-fc888-apk-latest-promotions-analysis__step-description {
  font-size: 0.95rem;
  color: #A7D9B8;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-blog-fc888-apk-latest-promotions-analysis__step-button {
  width: 100%;
}

.page-blog-fc888-apk-latest-promotions-analysis__terms-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-blog-fc888-apk-latest-promotions-analysis__term-title {
  font-size: 1.4rem;
  color: #F2FFF6;
  margin-bottom: 10px;
}

.page-blog-fc888-apk-latest-promotions-analysis__term-description {
  font-size: 0.95rem;
  color: #A7D9B8;
}

/* FAQ Section */
.page-blog-fc888-apk-latest-promotions-analysis__faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-fc888-apk-latest-promotions-analysis__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 10px;
  overflow: hidden;
}

.page-blog-fc888-apk-latest-promotions-analysis__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: bold;
  color: #F2FFF6;
  cursor: pointer;
  list-style: none;
  background-color: #0A4B2C; /* Deep Green for summary background */
  border-bottom: 1px solid #2E7A4E;
}

.page-blog-fc888-apk-latest-promotions-analysis__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-fc888-apk-latest-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-blog-fc888-apk-latest-promotions-analysis__faq-qtext {
  flex-grow: 1;
  text-align: left;
  color: #F2FFF6;
}

.page-blog-fc888-apk-latest-promotions-analysis__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Glow color for toggle */
}

.page-blog-fc888-apk-latest-promotions-analysis__faq-item[open] .page-blog-fc888-apk-latest-promotions-analysis__faq-toggle {
  content: '−';
}

.page-blog-fc888-apk-latest-promotions-analysis__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: #A7D9B8;
  text-align: left;
}

.page-blog-fc888-apk-latest-promotions-analysis__faq-answer p {
  margin: 0;
  color: #A7D9B8;
}

/* Conclusion Area */
.page-blog-fc888-apk-latest-promotions-analysis__conclusion-area {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* Images responsiveness */
.page-blog-fc888-apk-latest-promotions-analysis img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto; /* Center images */
  border-radius: 8px;
  object-fit: cover;
}

/* Desktop video container width */
.page-blog-fc888-apk-latest-promotions-analysis__video-container {
  width: 100%; /* Ensures it takes full width up to max-width */
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-fc888-apk-latest-promotions-analysis__hero-content {
    padding: 15px;
  }

  .page-blog-fc888-apk-latest-promotions-analysis__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

  .page-blog-fc888-apk-latest-promotions-analysis__section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  }

  .page-blog-fc888-apk-latest-promotions-analysis__hero-description {
    font-size: 1.1rem;
  }

  .page-blog-fc888-apk-latest-promotions-analysis__text-block {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .page-blog-fc888-apk-latest-promotions-analysis__hero-section {
    padding-top: 10px !important;
    min-height: 400px;
  }

  .page-blog-fc888-apk-latest-promotions-analysis__section {
    padding: 40px 15px;
  }

  .page-blog-fc888-apk-latest-promotions-analysis__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-fc888-apk-latest-promotions-analysis__btn-primary,
  .page-blog-fc888-apk-latest-promotions-analysis__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-blog-fc888-apk-latest-promotions-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin-left: auto;
    margin-right: auto;
  }

  .page-blog-fc888-apk-latest-promotions-analysis__section,
  .page-blog-fc888-apk-latest-promotions-analysis__card,
  .page-blog-fc888-apk-latest-promotions-analysis__container,
  .page-blog-fc888-apk-latest-promotions-analysis__feature-item,
  .page-blog-fc888-apk-latest-promotions-analysis__promo-card,
  .page-blog-fc888-apk-latest-promotions-analysis__step-item,
  .page-blog-fc888-apk-latest-promotions-analysis__term-item,
  .page-blog-fc888-apk-latest-promotions-analysis__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-fc888-apk-latest-promotions-analysis__feature-grid,
  .page-blog-fc888-apk-latest-promotions-analysis__promo-grid,
  .page-blog-fc888-apk-latest-promotions-analysis__steps-grid,
  .page-blog-fc888-apk-latest-promotions-analysis__terms-grid {
    grid-template-columns: 1fr;
  }

  .page-blog-fc888-apk-latest-promotions-analysis__faq-item summary {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-blog-fc888-apk-latest-promotions-analysis__faq-toggle {
    font-size: 1.5rem;
  }

  .page-blog-fc888-apk-latest-promotions-analysis__faq-answer {
    font-size: 0.95rem;
    padding: 15px 20px;
  }
}

/* Ensure no image filters are applied */
.page-blog-fc888-apk-latest-promotions-analysis img {
  filter: none !important;
}

/* Content area images CSS size lower bound */
.page-blog-fc888-apk-latest-promotions-analysis__container img,
.page-blog-fc888-apk-latest-promotions-analysis__feature-item img,
.page-blog-fc888-apk-latest-promotions-analysis__promo-card img,
.page-blog-fc888-apk-latest-promotions-analysis__step-item img,
.page-blog-fc888-apk-latest-promotions-analysis__term-item img,
.page-blog-fc888-apk-latest-promotions-analysis__faq-item img {
  min-width: 200px;
  min-height: 200px;
  /* Ensure no styles like   are applied */
}