/* style/blog-latest-promotions-guide.css */
:root {
  --page-bg-color: #08160F;
  --card-bg-color: #11271B;
  --text-main-color: #F2FFF6;
  --text-secondary-color: #A7D9B8;
  --border-color: #2E7A4E;
  --btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --btn-text-color: #F2FFF6;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;
}

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

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

.page-blog-latest-promotions-guide__section {
  padding: 60px 0;
  text-align: center;
}

.page-blog-latest-promotions-guide__section-title {
  font-size: 2.8em;
  font-weight: bold;
  margin-bottom: 30px;
  color: var(--text-main-color);
  position: relative;
  padding-bottom: 15px;
}

.page-blog-latest-promotions-guide__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--gold-color);
  border-radius: 2px;
}

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

/* Hero Section */
.page-blog-latest-promotions-guide__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust height as needed */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
}

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

.page-blog-latest-promotions-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 20px;
  text-align: center;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for readability */
  border-radius: 10px;
  margin-top: 50px; /* Push content down from top */
  box-sizing: border-box;
}

.page-blog-latest-promotions-guide__main-title {
  color: var(--text-main-color);
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  max-width: 100%;
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
}

.page-blog-latest-promotions-guide__subtitle {
  font-size: 1.3em;
  color: var(--text-secondary-color);
  margin-bottom: 30px;
}

.page-blog-latest-promotions-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-latest-promotions-guide__btn-primary,
.page-blog-latest-promotions-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-blog-latest-promotions-guide__btn-primary {
  background: var(--btn-gradient);
  color: var(--btn-text-color);
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-latest-promotions-guide__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-blog-latest-promotions-guide__btn-secondary {
  background-color: transparent;
  color: var(--gold-color);
  border: 2px solid var(--gold-color);
}

.page-blog-latest-promotions-guide__btn-secondary:hover {
  background-color: var(--gold-color);
  color: var(--page-bg-color);
  transform: translateY(-3px);
}

/* About Promotions Section */
.page-blog-latest-promotions-guide__about-promotions {
  background-color: var(--card-bg-color);
}

/* Promo Types Section */
.page-blog-latest-promotions-guide__promo-types {
  background-color: var(--page-bg-color);
}

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

.page-blog-latest-promotions-guide__promo-card {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-main-color);
}

.page-blog-latest-promotions-guide__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-latest-promotions-guide__card-title {
  font-size: 1.8em;
  color: var(--gold-color);
  margin-bottom: 15px;
}

.page-blog-latest-promotions-guide__card-text {
  color: var(--text-secondary-color);
  margin-bottom: 20px;
}

.page-blog-latest-promotions-guide__btn-text {
  color: var(--glow-color);
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: color 0.3s ease;
}

.page-blog-latest-promotions-guide__btn-text:hover {
  color: var(--gold-color);
  text-decoration: underline;
}

/* How To Claim Section */
.page-blog-latest-promotions-guide__how-to-claim {
  background-color: var(--deep-green-color);
}

.page-blog-latest-promotions-guide__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-blog-latest-promotions-guide__step-item {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  color: var(--text-main-color);
}

.page-blog-latest-promotions-guide__step-title {
  font-size: 1.6em;
  color: var(--gold-color);
  margin-bottom: 10px;
}

.page-blog-latest-promotions-guide__step-description {
  color: var(--text-secondary-color);
  margin-bottom: 20px;
}

/* Terms & Conditions Section */
.page-blog-latest-promotions-guide__terms-conditions {
  background-color: var(--page-bg-color);
}

.page-blog-latest-promotions-guide__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  text-align: left;
}

.page-blog-latest-promotions-guide__terms-item {
  background-color: var(--card-bg-color);
  border-left: 4px solid var(--glow-color);
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  color: var(--text-secondary-color);
}

.page-blog-latest-promotions-guide__terms-item strong {
  color: var(--text-main-color);
}

/* Tips to Maximize Section */
.page-blog-latest-promotions-guide__tips-maximize {
  background-color: var(--deep-green-color);
}

.page-blog-latest-promotions-guide__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  text-align: left;
}

.page-blog-latest-promotions-guide__tips-item {
  background-color: var(--card-bg-color);
  border-left: 4px solid var(--gold-color);
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  color: var(--text-secondary-color);
}

.page-blog-latest-promotions-guide__tips-item strong {
  color: var(--text-main-color);
}

/* Video Section */
.page-blog-latest-promotions-guide__video-section {
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: var(--page-bg-color);
}

.page-blog-latest-promotions-guide__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin-top: 30px;
  border-radius: 10px;
  width: 100%; /* Ensure desktop width is 100% */
}

.page-blog-latest-promotions-guide__video-link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-blog-latest-promotions-guide__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* FAQ Section */
.page-blog-latest-promotions-guide__faq-section {
  background-color: var(--card-bg-color);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-latest-promotions-guide__image-faq {
  margin: 30px auto;
  border-radius: 10px;
  max-width: 100%;
  height: auto;
  display: block;
}

.page-blog-latest-promotions-guide__faq-list {
  max-width: 900px;
  width: 100%;
  margin-top: 40px;
  text-align: left;
}

.page-blog-latest-promotions-guide__faq-item {
  background-color: var(--deep-green-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-latest-promotions-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--text-main-color);
  background-color: var(--card-bg-color);
  border-bottom: 1px solid var(--border-color);
}

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

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

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

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

.page-blog-latest-promotions-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--gold-color);
}

.page-blog-latest-promotions-guide__faq-answer {
  padding: 15px 20px;
  font-size: 1em;
  color: var(--text-secondary-color);
  background-color: var(--deep-green-color);
}

/* Conclusion Section */
.page-blog-latest-promotions-guide__conclusion {
  background-color: var(--page-bg-color);
  padding-bottom: 80px;
}

/* Image Specific Styles */
.page-blog-latest-promotions-guide__image-full-width {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-latest-promotions-guide__section-title {
    font-size: 2.2em;
  }
  .page-blog-latest-promotions-guide__main-title {
    font-size: clamp(1.8em, 5vw, 3em);
  }
  .page-blog-latest-promotions-guide__subtitle {
    font-size: 1.1em;
  }
  .page-blog-latest-promotions-guide__hero-section {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .page-blog-latest-promotions-guide__section {
    padding: 40px 0;
  }
  .page-blog-latest-promotions-guide__section-title {
    font-size: 1.8em;
    padding-bottom: 10px;
  }
  .page-blog-latest-promotions-guide__section-title::after {
    width: 60px;
  }
  .page-blog-latest-promotions-guide__main-title {
    font-size: clamp(1.5em, 6vw, 2.5em);
  }
  .page-blog-latest-promotions-guide__subtitle {
    font-size: 1em;
  }
  .page-blog-latest-promotions-guide__hero-section {
    height: 400px;
  }
  .page-blog-latest-promotions-guide__hero-content {
    padding: 20px 15px;
    margin-top: 30px;
  }
  .page-blog-latest-promotions-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-latest-promotions-guide__btn-primary,
  .page-blog-latest-promotions-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-blog-latest-promotions-guide__promo-list,
  .page-blog-latest-promotions-guide__steps-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-blog-latest-promotions-guide__promo-card,
  .page-blog-latest-promotions-guide__step-item {
    padding: 20px;
  }
  .page-blog-latest-promotions-guide__card-title,
  .page-blog-latest-promotions-guide__step-title {
    font-size: 1.4em;
  }
  .page-blog-latest-promotions-guide__text-block,
  .page-blog-latest-promotions-guide__card-text,
  .page-blog-latest-promotions-guide__step-description,
  .page-blog-latest-promotions-guide__terms-item,
  .page-blog-latest-promotions-guide__tips-item,
  .page-blog-latest-promotions-guide__faq-answer {
    font-size: 0.95em;
  }

  /* Mobile image responsiveness */
  .page-blog-latest-promotions-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-latest-promotions-guide__section,
  .page-blog-latest-promotions-guide__card,
  .page-blog-latest-promotions-guide__container,
  .page-blog-latest-promotions-guide__hero-content,
  .page-blog-latest-promotions-guide__cta-buttons,
  .page-blog-latest-promotions-guide__promo-list,
  .page-blog-latest-promotions-guide__steps-list,
  .page-blog-latest-promotions-guide__terms-list,
  .page-blog-latest-promotions-guide__tips-list,
  .page-blog-latest-promotions-guide__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no horizontal scroll */
  }

  /* Mobile video responsiveness */
  .page-blog-latest-promotions-guide video,
  .page-blog-latest-promotions-guide__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-latest-promotions-guide__video-section,
  .page-blog-latest-promotions-guide__video-container,
  .page-blog-latest-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-latest-promotions-guide__video-section {
    padding-top: 10px !important;
  }
  .page-blog-latest-promotions-guide__video-wrapper {
    padding-bottom: 56.25% !important;
    height: 0 !important;
  }
}