/* style/blog-f66-latest-promotions-analysis.css */

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

.page-blog-f66-latest-promotions-analysis {
  background-color: var(--f66-background);
  color: var(--f66-text-main);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-blog-f66-latest-promotions-analysis__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* body already handles --header-offset */
  padding-bottom: 40px;
  overflow: hidden;
}

.page-blog-f66-latest-promotions-analysis__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  position: relative;
}

.page-blog-f66-latest-promotions-analysis__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text readability */
}

.page-blog-f66-latest-promotions-analysis__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  max-width: 900px;
  padding: 20px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text */
  border-radius: 10px;
  color: var(--f66-text-main);
}

.page-blog-f66-latest-promotions-analysis__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--f66-gold-color);
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.page-blog-f66-latest-promotions-analysis__description {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--f66-text-main);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-f66-latest-promotions-analysis__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--f66-button-gradient);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-f66-latest-promotions-analysis__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

.page-blog-f66-latest-promotions-analysis__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
  color: var(--f66-text-main);
}

.page-blog-f66-latest-promotions-analysis__dark-bg {
  background-color: var(--f66-background);
  color: var(--f66-text-main);
}

.page-blog-f66-latest-promotions-analysis__container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-blog-f66-latest-promotions-analysis__section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--f66-gold-color);
  text-align: center;
  margin-bottom: 30px;
  padding-top: 20px;
  border-bottom: 2px solid var(--f66-divider-color);
  padding-bottom: 15px;
}

.page-blog-f66-latest-promotions-analysis__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--f66-secondary-color);
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid var(--f66-primary-color);
  padding-left: 15px;
}

.page-blog-f66-latest-promotions-analysis__text-block p,
.page-blog-f66-latest-promotions-analysis__text-block li {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: var(--f66-text-main);
}

.page-blog-f66-latest-promotions-analysis__text-block ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-blog-f66-latest-promotions-analysis__text-block a {
  color: var(--f66-glow-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-f66-latest-promotions-analysis__text-block a:hover {
  color: var(--f66-gold-color);
  text-decoration: underline;
}

.page-blog-f66-latest-promotions-analysis__card-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-blog-f66-latest-promotions-analysis__card {
  background-color: var(--f66-card-bg);
  border: 1px solid var(--f66-border-color);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--f66-text-main);
}

.page-blog-f66-latest-promotions-analysis__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-blog-f66-latest-promotions-analysis__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  filter: none; /* Ensure no CSS filter */
}

.page-blog-f66-latest-promotions-analysis__card-title {
  font-size: 1.4rem;
  color: var(--f66-gold-color);
  margin-bottom: 10px;
}

.page-blog-f66-latest-promotions-analysis__card p {
  font-size: 1rem;
  color: var(--f66-text-secondary);
  margin-bottom: 20px;
}

.page-blog-f66-latest-promotions-analysis__btn-secondary {
  display: inline-block;
  padding: 10px 20px;
  background: transparent;
  color: var(--f66-glow-color);
  border: 2px solid var(--f66-glow-color);
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.page-blog-f66-latest-promotions-analysis__btn-secondary:hover {
  background: var(--f66-glow-color);
  color: var(--f66-card-bg);
}

.page-blog-f66-latest-promotions-analysis__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  filter: none; /* Ensure no CSS filter */
}

.page-blog-f66-latest-promotions-analysis__faq-list {
  margin-top: 30px;
}

.page-blog-f66-latest-promotions-analysis__faq-item {
  background-color: var(--f66-card-bg);
  border: 1px solid var(--f66-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--f66-text-main);
}

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

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

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

.page-blog-f66-latest-promotions-analysis__faq-question::marker {
  display: none;
}

.page-blog-f66-latest-promotions-analysis__faq-qtext {
  flex-grow: 1;
  color: var(--f66-text-main);
}

.page-blog-f66-latest-promotions-analysis__faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--f66-glow-color);
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-blog-f66-latest-promotions-analysis__faq-item[open] .page-blog-f66-latest-promotions-analysis__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-f66-latest-promotions-analysis__faq-answer {
  padding: 15px 25px;
  font-size: 1rem;
  color: var(--f66-text-secondary);
  background-color: var(--f66-card-bg);
}

.page-blog-f66-latest-promotions-analysis__action-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-blog-f66-latest-promotions-analysis__btn-primary {
  background: var(--f66-button-gradient);
  color: #ffffff;
  border: none;
}

.page-blog-f66-latest-promotions-analysis__btn-primary:hover {
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-f66-latest-promotions-analysis__hero-content {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .page-blog-f66-latest-promotions-analysis__hero-content {
    max-width: 90%;
    padding: 15px;
  }

  .page-blog-f66-latest-promotions-analysis__main-title {
    font-size: 2.5rem;
  }

  .page-blog-f66-latest-promotions-analysis__description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .page-blog-f66-latest-promotions-analysis__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

  .page-blog-f66-latest-promotions-analysis__section-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .page-blog-f66-latest-promotions-analysis__sub-title {
    font-size: 1.5rem;
    margin-top: 25px;
  }

  .page-blog-f66-latest-promotions-analysis__text-block p,
  .page-blog-f66-latest-promotions-analysis__text-block li {
    font-size: 1rem;
  }

  .page-blog-f66-latest-promotions-analysis__card-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-f66-latest-promotions-analysis__card-image {
    height: 180px;
  }

  .page-blog-f66-latest-promotions-analysis__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-blog-f66-latest-promotions-analysis__faq-answer {
    padding: 10px 20px;
  }

  .page-blog-f66-latest-promotions-analysis__action-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-f66-latest-promotions-analysis__cta-button.page-blog-f66-latest-promotions-analysis__btn-secondary {
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Image responsiveness */
  .page-blog-f66-latest-promotions-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-f66-latest-promotions-analysis__hero-image-wrapper,
  .page-blog-f66-latest-promotions-analysis__card,
  .page-blog-f66-latest-promotions-analysis__container,
  .page-blog-f66-latest-promotions-analysis__text-block,
  .page-blog-f66-latest-promotions-analysis__action-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-f66-latest-promotions-analysis__hero-section {
    padding-top: 10px !important;
  }
}

@media (max-width: 480px) {
  .page-blog-f66-latest-promotions-analysis__main-title {
    font-size: 1.8rem;
  }

  .page-blog-f66-latest-promotions-analysis__section-title {
    font-size: 1.5rem;
  }

  .page-blog-f66-latest-promotions-analysis__sub-title {
    font-size: 1.2rem;
  }

  .page-blog-f66-latest-promotions-analysis__cta-button {
    font-size: 0.95rem;
    padding: 10px 20px;
  }
}