:root {
    --primary-color: #F2C14E;
    --secondary-color: #FFD36B;
    --card-bg: #111111;
    --page-bg: #0A0A0A;
    --text-main: #FFF6D6;
    --border-color: #3A2A12;
    --glow-color: #FFD36B;
    --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
}

.page-blog-ff168-promotions-analysis {
    font-family: 'Arial', sans-serif;
    color: var(--text-main); /* Ensure text is visible on dark background */
    background-color: var(--page-bg);
    line-height: 1.6;
}

/* 🚨 Desktop HERO main image area style (must strictly adhere) */
.page-blog-ff168-promotions-analysis__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  /* 🚨 The header is handled by shared.css body { padding-top: var(--header-offset); };
     This area only uses a small top padding, do not use var(--header-offset) to avoid double spacing */
  padding-top: 10px;
  background-color: var(--page-bg);
}

.page-blog-ff168-promotions-analysis__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%; /* Important for flex-container in desktop */
}

.page-blog-ff168-promotions-analysis__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-blog-ff168-promotions-analysis__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(255, 211, 107, 0.4); /* Glow effect */
}

.page-blog-ff168-promotions-analysis__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-blog-ff168-promotions-analysis__hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.2rem);
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(255, 211, 107, 0.6);
}

.page-blog-ff168-promotions-analysis__hero-content p {
    font-size: 1.1rem;
    color: var(--text-main);
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-blog-ff168-promotions-analysis__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--button-gradient);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 211, 107, 0.5);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-ff168-promotions-analysis__cta-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 211, 107, 0.7);
}

.page-blog-ff168-promotions-analysis__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: var(--page-bg);
}

.page-blog-ff168-promotions-analysis__section-intro,
.page-blog-ff168-promotions-analysis__promotions-overview,
.page-blog-ff168-promotions-analysis__how-to-claim,
.page-blog-ff168-promotions-analysis__important-notes,
.page-blog-ff168-promotions-analysis__why-ff168,
.page-blog-ff168-promotions-analysis__faq-section,
.page-blog-ff168-promotions-analysis__conclusion {
    margin-bottom: 50px;
    padding: 30px;
    background-color: var(--card-bg);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.page-blog-ff168-promotions-analysis h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 15px;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.4);
}

.page-blog-ff168-promotions-analysis h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 5px solid var(--primary-color);
    padding-left: 15px;
}

.page-blog-ff168-promotions-analysis h4 {
    font-size: 1.4rem;
    color: var(--text-main);
    margin-top: 25px;
    margin-bottom: 10px;
}

.page-blog-ff168-promotions-analysis p {
    margin-bottom: 15px;
    color: var(--text-main);
    font-size: 1rem;
}

.page-blog-ff168-promotions-analysis ul,
.page-blog-ff168-promotions-analysis ol {
    margin-bottom: 20px;
    padding-left: 25px;
    color: var(--text-main);
}

.page-blog-ff168-promotions-analysis ul li,
.page-blog-ff168-promotions-analysis ol li {
    margin-bottom: 10px;
    color: var(--text-main);
}

.page-blog-ff168-promotions-analysis strong {
    color: var(--secondary-color);
}

.page-blog-ff168-promotions-analysis__image-wrapper {
    margin: 30px 0;
    text-align: center;
}

.page-blog-ff168-promotions-analysis__image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(255, 211, 107, 0.3);
    display: block;
    margin: 0 auto;
}

/* Buttons */
.page-blog-ff168-promotions-analysis__btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background: var(--button-gradient);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(255, 211, 107, 0.4);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-ff168-promotions-analysis__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 211, 107, 0.6);
}

/* FAQ Section */
.page-blog-ff168-promotions-analysis__faq-list {
    margin-top: 30px;
}

details.page-blog-ff168-promotions-analysis__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--card-bg);
}
details.page-blog-ff168-promotions-analysis__faq-item summary.page-blog-ff168-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: var(--secondary-color);
}
details.page-blog-ff168-promotions-analysis__faq-item summary.page-blog-ff168-promotions-analysis__faq-question::-webkit-details-marker {
  display: none;
}
details.page-blog-ff168-promotions-analysis__faq-item summary.page-blog-ff168-promotions-analysis__faq-question:hover {
  background: rgba(255, 211, 107, 0.1);
}
.page-blog-ff168-promotions-analysis__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--secondary-color);
}
.page-blog-ff168-promotions-analysis__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-blog-ff168-promotions-analysis__faq-item .page-blog-ff168-promotions-analysis__faq-answer {
  padding: 0 20px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0 0 5px 5px;
  color: var(--text-main);
}
.page-blog-ff168-promotions-analysis__faq-answer p {
    color: var(--text-main);
}

/* 🚨 Mobile Responsive Design (must strictly adhere) */
@media (max-width: 768px) {
  .page-blog-ff168-promotions-analysis__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-blog-ff168-promotions-analysis__hero-image img {
    border-radius: 4px;
  }
  
  .page-blog-ff168-promotions-analysis__hero-content h1 {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-blog-ff168-promotions-analysis__hero-content p {
    font-size: 0.95rem;
  }

  .page-blog-ff168-promotions-analysis__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-ff168-promotions-analysis__content-area {
    padding: 20px 15px;
  }

  .page-blog-ff168-promotions-analysis__section-intro,
  .page-blog-ff168-promotions-analysis__promotions-overview,
  .page-blog-ff168-promotions-analysis__how-to-claim,
  .page-blog-ff168-promotions-analysis__important-notes,
  .page-blog-ff168-promotions-analysis__why-ff168,
  .page-blog-ff168-promotions-analysis__faq-section,
  .page-blog-ff168-promotions-analysis__conclusion {
    margin-bottom: 30px;
    padding: 20px;
  }

  .page-blog-ff168-promotions-analysis h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
  }

  .page-blog-ff168-promotions-analysis h3 {
    font-size: 1.5rem;
    margin-top: 25px;
    margin-bottom: 10px;
    padding-left: 10px;
  }

  .page-blog-ff168-promotions-analysis p,
  .page-blog-ff168-promotions-analysis ul li,
  .page-blog-ff168-promotions-analysis ol li {
    font-size: 0.95rem;
  }

  .page-blog-ff168-promotions-analysis__image-wrapper img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  
  .page-blog-ff168-promotions-analysis__btn-primary {
    padding: 10px 25px;
    font-size: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* Ensure all containers with images/buttons are responsive */
  .page-blog-ff168-promotions-analysis__section,
  .page-blog-ff168-promotions-analysis__card,
  .page-blog-ff168-promotions-analysis__container,
  .page-blog-ff168-promotions-analysis__faq-section,
  .page-blog-ff168-promotions-analysis__promotions-overview {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* No CSS filters on images */
.page-blog-ff168-promotions-analysis img {
    filter: none;
}