/* style/blog-ff168-promotions-guide.css */

/* --- General Styles & Typography --- */
.page-blog-ff168-promotions-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main, #F2FFF6); /* Default text color for dark background */
  background-color: var(--background, #08160F); /* Default background */
}

.page-blog-ff168-promotions-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-ff168-promotions-guide__section-title {
  font-size: 2.5em;
  color: var(--text-main, #F2FFF6);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-ff168-promotions-guide__text-block {
  font-size: 1.1em;
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 20px;
  text-align: justify;
}

/* --- Hero Section --- */
.page-blog-ff168-promotions-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image on top, content below */
  align-items: center;
  overflow: hidden;
  padding-bottom: 40px; /* Space below content */
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--background, #08160F);
}

.page-blog-ff168-promotions-guide__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-ff168-promotions-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-ff168-promotions-guide__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  position: relative; /* Ensure content is in normal flow below image */
  z-index: 1;
}

.page-blog-ff168-promotions-guide__main-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem); /* Responsive font size */
  color: var(--gold, #F2C14E);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-blog-ff168-promotions-guide__hero-description {
  font-size: 1.2em;
  color: var(--text-main, #F2FFF6);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-ff168-promotions-guide__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #FFFFFF;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-ff168-promotions-guide__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-blog-ff168-promotions-guide__cta-button--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-blog-ff168-promotions-guide__cta-button--centered {
  display: block;
  margin: 40px auto 0 auto;
  text-align: center;
}

/* --- Section Styling --- */
.page-blog-ff168-promotions-guide__intro-section,
.page-blog-ff168-promotions-guide__how-to-claim,
.page-blog-ff168-promotions-guide__conclusion-section {
  padding: 60px 0;
  background-color: var(--background, #08160F); /* Explicitly set for light-bg sections */
}

.page-blog-ff168-promotions-guide__promotions-types,
.page-blog-ff168-promotions-guide__tips-section,
.page-blog-ff168-promotions-guide__faq-section {
  padding: 60px 0;
  background-color: var(--card-bg, #11271B); /* Explicitly set for dark-bg sections */
}

.page-blog-ff168-promotions-guide__light-bg {
  background-color: var(--background, #08160F);
  color: var(--text-main, #F2FFF6);
}

.page-blog-ff168-promotions-guide__dark-bg {
  background-color: var(--card-bg, #11271B);
  color: var(--text-main, #F2FFF6);
}

/* --- Grid Layout for Promotions and Tips --- */
.page-blog-ff168-promotions-guide__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-ff168-promotions-guide__grid--two-cols {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

/* --- Card Styling --- */
.page-blog-ff168-promotions-guide__card {
  background-color: var(--card-bg, #11271B);
  border: 1px solid var(--divider, #1E3A2A);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-ff168-promotions-guide__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

.page-blog-ff168-promotions-guide__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block; /* Ensure no extra space below image */
}

.page-blog-ff168-promotions-guide__card-title {
  font-size: 1.5em;
  color: var(--gold, #F2C14E);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-ff168-promotions-guide__card-description {
  font-size: 1em;
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 20px;
  flex-grow: 1; /* Make descriptions take up available space */
}

.page-blog-ff168-promotions-guide__card-button {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #FFFFFF;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background 0.3s ease, transform 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-ff168-promotions-guide__card-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-1px);
}

.page-blog-ff168-promotions-guide__card--transparent {
  background-color: transparent;
  border: 1px solid var(--deep-green, #0A4B2C);
  box-shadow: none;
  padding: 20px;
}
.page-blog-ff168-promotions-guide__card--transparent:hover {
  transform: none;
  box-shadow: 0 0 15px rgba(17, 168, 78, 0.3);
}

/* --- Numbered List for How-To Section --- */
.page-blog-ff168-promotions-guide__numbered-list {
  list-style: none;
  counter-reset: list-counter;
  padding: 0;
  margin-top: 40px;
}

.page-blog-ff168-promotions-guide__list-item {
  position: relative;
  padding-left: 70px;
  margin-bottom: 30px;
}

.page-blog-ff168-promotions-guide__list-item::before {
  content: counter(list-counter);
  counter-increment: list-counter;
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background-color: var(--main-color, #11A84E);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  font-size: 1.5em;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-ff168-promotions-guide__list-title {
  font-size: 1.4em;
  color: var(--gold, #F2C14E);
  margin-bottom: 10px;
}

.page-blog-ff168-promotions-guide__list-description {
  font-size: 1em;
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 15px;
}

.page-blog-ff168-promotions-guide__inline-button {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 5px;
  background-color: var(--aux-color, #22C768);
  color: #FFFFFF;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-ff168-promotions-guide__inline-button:hover {
  background-color: var(--main-color, #11A84E);
}

/* --- Video Section --- */
.page-blog-ff168-promotions-guide__video-section {
  padding: 60px 0;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--background, #08160F);
  text-align: center;
}

.page-blog-ff168-promotions-guide__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 40px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  width: 100%; /* Ensure desktop width is 100% */
  max-width: 800px; /* Max width for the video player */
}

.page-blog-ff168-promotions-guide__video-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block; /* Make the entire link clickable */
}

.page-blog-ff168-promotions-guide__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

/* --- FAQ Section --- */
.page-blog-ff168-promotions-guide__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-ff168-promotions-guide__faq-item {
  background-color: var(--card-bg, #11271B);
  border: 1px solid var(--divider, #1E3A2A);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-blog-ff168-promotions-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--text-main, #F2FFF6);
  background-color: var(--deep-green, #0A4B2C);
  border-bottom: 1px solid var(--divider, #1E3A2A);
  transition: background-color 0.3s ease;
}

.page-blog-ff168-promotions-guide__faq-item[open] > .page-blog-ff168-promotions-guide__faq-question {
  background-color: var(--main-color, #11A84E);
  color: #FFFFFF;
}

.page-blog-ff168-promotions-guide__faq-question:hover {
  background-color: var(--main-color, #11A84E);
}

.page-blog-ff168-promotions-guide__faq-qtext {
  flex-grow: 1;
}

.page-blog-ff168-promotions-guide__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  width: 25px;
  text-align: center;
}

.page-blog-ff168-promotions-guide__faq-item[open] .page-blog-ff168-promotions-guide__faq-toggle {
  content: "−";
}

.page-blog-ff168-promotions-guide__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: var(--text-secondary, #A7D9B8);
  background-color: var(--card-bg, #11271B);
  border-top: none;
}

/* Hide default details marker */
.page-blog-ff168-promotions-guide__faq-item > summary {
  list-style: none;
}
.page-blog-ff168-promotions-guide__faq-item > summary::-webkit-details-marker {
  display: none;
}


/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .page-blog-ff168-promotions-guide__section-title {
    font-size: 2em;
  }
  .page-blog-ff168-promotions-guide__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .page-blog-ff168-promotions-guide__hero-description {
    font-size: 1.1em;
  }
  .page-blog-ff168-promotions-guide__grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-blog-ff168-promotions-guide__grid--two-cols {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-blog-ff168-promotions-guide__container {
    padding: 0 15px;
  }

  .page-blog-ff168-promotions-guide__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-blog-ff168-promotions-guide__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .page-blog-ff168-promotions-guide__hero-description {
    font-size: 1em;
  }

  .page-blog-ff168-promotions-guide__hero-section {
    padding-bottom: 30px;
    padding-top: 10px !important; /* body handles header offset */
  }

  /* Images responsive */
  .page-blog-ff168-promotions-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-ff168-promotions-guide__card-image {
    height: auto !important; /* Allow auto height on mobile */
    min-height: 200px;
  }

  /* Video responsive */
  .page-blog-ff168-promotions-guide video,
  .page-blog-ff168-promotions-guide__video {
    max-width: 100% !important;
    width: 100% !important;
    height: 100% !important; /* Keep 100% height within wrapper aspect ratio */
    display: block !important;
  }
  .page-blog-ff168-promotions-guide__video-section,
  .page-blog-ff168-promotions-guide__video-container,
  .page-blog-ff168-promotions-guide__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-blog-ff168-promotions-guide__video-section {
    padding-top: 10px !important;
  }

  /* Buttons responsive */
  .page-blog-ff168-promotions-guide__cta-button,
  .page-blog-ff168-promotions-guide__card-button,
  .page-blog-ff168-promotions-guide__inline-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;
    text-align: center;
  }

  .page-blog-ff168-promotions-guide__cta-button--large {
    font-size: 1.1em;
    padding: 15px 25px;
  }

  .page-blog-ff168-promotions-guide__grid {
    grid-template-columns: 1fr;
  }
  .page-blog-ff168-promotions-guide__grid--two-cols {
    grid-template-columns: 1fr;
  }

  .page-blog-ff168-promotions-guide__card {
    padding: 20px;
  }

  .page-blog-ff168-promotions-guide__list-item {
    padding-left: 60px;
  }
  .page-blog-ff168-promotions-guide__list-item::before {
    width: 40px;
    height: 40px;
    font-size: 1.2em;
  }
  .page-blog-ff168-promotions-guide__list-title {
    font-size: 1.2em;
  }

  .page-blog-ff168-promotions-guide__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }
  .page-blog-ff168-promotions-guide__faq-answer {
    padding: 15px 20px;
  }

  /* Ensure content areas respect padding for mobile */
  .page-blog-ff168-promotions-guide__intro-section .page-blog-ff168-promotions-guide__container,
  .page-blog-ff168-promotions-guide__promotions-types .page-blog-ff168-promotions-guide__container,
  .page-blog-ff168-promotions-guide__how-to-claim .page-blog-ff168-promotions-guide__container,
  .page-blog-ff168-promotions-guide__tips-section .page-blog-ff168-promotions-guide__container,
  .page-blog-ff168-promotions-guide__video-section .page-blog-ff168-promotions-guide__container,
  .page-blog-ff168-promotions-guide__faq-section .page-blog-ff168-promotions-guide__container,
  .page-blog-ff168-promotions-guide__conclusion-section .page-blog-ff168-promotions-guide__container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-blog-ff168-promotions-guide__section-title {
    font-size: 1.5em;
  }
  .page-blog-ff168-promotions-guide__main-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }
  .page-blog-ff168-promotions-guide__cta-button {
    font-size: 1em;
    padding: 12px 20px;
  }
  .page-blog-ff168-promotions-guide__card-title {
    font-size: 1.3em;
  }
  .page-blog-ff168-promotions-guide__faq-question {
    font-size: 1em;
    padding: 12px 15px;
  }
}

/* Color contrast adjustments based on body background (assuming body is dark by default) */
.page-blog-ff168-promotions-guide__light-bg .page-blog-ff168-promotions-guide__section-title,
.page-blog-ff168-promotions-guide__light-bg .page-blog-ff168-promotions-guide__text-block,
.page-blog-ff168-promotions-guide__light-bg .page-blog-ff168-promotions-guide__list-title,
.page-blog-ff168-promotions-guide__light-bg .page-blog-ff168-promotions-guide__list-description {
  color: var(--text-main, #F2FFF6); /* Ensure light text on dark background */
}

/* Specific overrides for text on dark-bg sections */
.page-blog-ff168-promotions-guide__dark-bg .page-blog-ff168-promotions-guide__section-title {
  color: var(--gold, #F2C14E);
}
.page-blog-ff168-promotions-guide__dark-bg .page-blog-ff168-promotions-guide__text-block {
  color: var(--text-secondary, #A7D9B8);
}
.page-blog-ff168-promotions-guide__dark-bg .page-blog-ff168-promotions-guide__card-title {
  color: var(--gold, #F2C14E);
}
.page-blog-ff168-promotions-guide__dark-bg .page-blog-ff168-promotions-guide__card-description {
  color: var(--text-secondary, #A7D9B8);
}
.page-blog-ff168-promotions-guide__dark-bg .page-blog-ff168-promotions-guide__faq-question {
  color: var(--text-main, #F2FFF6);
}
.page-blog-ff168-promotions-guide__dark-bg .page-blog-ff168-promotions-guide__faq-answer {
  color: var(--text-secondary, #A7D9B8);
}