/* General styles for the page */
.page-resources-latest-promotions-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light body background */
  background-color: #f8f8f8;
}

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

.page-resources-latest-promotions-guide__section-title {
  font-size: 36px;
  font-weight: bold;
  color: #1E90FF; /* Auxiliary color for titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-latest-promotions-guide__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Primary color for accent */
  border-radius: 2px;
}

.page-resources-latest-promotions-guide__sub-title {
  font-size: 24px;
  font-weight: bold;
  color: #1E90FF;
  margin-top: 30px;
  margin-bottom: 20px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-resources-latest-promotions-guide p {
  margin-bottom: 15px;
  font-size: 17px;
}

.page-resources-latest-promotions-guide ol {
  list-style-type: decimal;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-resources-latest-promotions-guide li {
  margin-bottom: 10px;
  font-size: 17px;
}

.page-resources-latest-promotions-guide__content-image {
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-width: 100%; /* Ensure images are responsive */
  height: auto;
}

/* --- Video Section --- */
.page-resources-latest-promotions-guide__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure header offset */
  background: linear-gradient(135deg, #1E90FF, #0056b3); /* Dark blue gradient background */
}

.page-resources-latest-promotions-guide__video-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-resources-latest-promotions-guide__video-link {
  display: block;
  text-decoration: none;
  position: relative;
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-latest-promotions-guide__video-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-latest-promotions-guide__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.page-resources-latest-promotions-guide__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
  object-fit: cover;
  pointer-events: none; /* Prevent video controls from interfering with click event on parent link */
}

.page-resources-latest-promotions-guide__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.page-resources-latest-promotions-guide__video-link:hover .page-resources-latest-promotions-guide__video-overlay {
  opacity: 1;
}

.page-resources-latest-promotions-guide__video-click-hint {
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
  padding: 12px 25px;
  background: rgba(255, 215, 0, 0.8); /* Primary color for hint background */
  border-radius: 30px;
  white-space: nowrap;
  letter-spacing: 1px;
}

.page-resources-latest-promotions-guide__video-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.page-resources-latest-promotions-guide__play-now-button {
  display: inline-block;
  padding: 18px 50px;
  background: #FFD700; /* Primary color */
  color: #1a1a1a; /* Dark text for contrast */
  text-decoration: none;
  border-radius: 35px;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  border: none;
  cursor: pointer;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.page-resources-latest-promotions-guide__play-now-button:hover {
  background: #e6c200; /* Slightly darker primary color */
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

.page-resources-latest-promotions-guide__play-now-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* --- Module 1: H1 Title + CTA Buttons --- */
.page-resources-latest-promotions-guide__title-section {
  background: #f0f0f0;
  padding: 80px 20px 60px;
  text-align: center;
}

.page-resources-latest-promotions-guide__title-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-latest-promotions-guide__main-title {
  font-size: 48px;
  color: #1E90FF; /* Auxiliary color */
  margin-bottom: 25px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.page-resources-latest-promotions-guide__title-description {
  font-size: 20px;
  color: #555555;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-resources-latest-promotions-guide__cta-button {
  display: inline-block;
  padding: 16px 40px;
  background: #FFD700; /* Primary color */
  color: #1a1a1a; /* Dark text for contrast */
  text-decoration: none;
  border-radius: 30px;
  font-size: 19px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.page-resources-latest-promotions-guide__cta-button:hover {
  background: #e6c200; /* Slightly darker primary color */
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* --- Module 2: FAQ Section --- */
.page-resources-latest-promotions-guide__faq-section {
  background-color: #ffffff;
  padding: 60px 20px;
}

.page-resources-latest-promotions-guide__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-latest-promotions-guide__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-resources-latest-promotions-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 20px;
  opacity: 0;
  background: #f9f9f9;
  color: #444444;
  font-size: 16px;
}

.page-resources-latest-promotions-guide__faq-item.active .page-resources-latest-promotions-guide__faq-answer {
  max-height: 2000px !important; /* Sufficiently large to contain any content */
  padding: 20px !important;
  opacity: 1;
  border-top: 1px solid #eeeeee;
}

.page-resources-latest-promotions-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-resources-latest-promotions-guide__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-resources-latest-promotions-guide__faq-question:active {
  background: #eeeeee;
}

.page-resources-latest-promotions-guide__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #333333;
  pointer-events: none; /* Prevent h3 from blocking click event */
}

.page-resources-latest-promotions-guide__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700; /* Primary color for toggle */
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none; /* Prevent icon from blocking click event */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.page-resources-latest-promotions-guide__faq-item.active .page-resources-latest-promotions-guide__faq-toggle {
  color: #1E90FF; /* Auxiliary color when active */
  transform: rotate(45deg); /* Plus to X rotation for active */
}

/* --- Module 3: Brand Introduction --- */
.page-resources-latest-promotions-guide__brand-section {
  background: linear-gradient(135deg, #1E90FF, #0056b3); /* Dark blue gradient background */
  color: #ffffff; /* Light text for dark background */
  padding: 60px 20px;
}

.page-resources-latest-promotions-guide__brand-section .page-resources-latest-promotions-guide__section-title {
  color: #ffffff;
}

.page-resources-latest-promotions-guide__brand-section .page-resources-latest-promotions-guide__section-title::after {
  background-color: #FFD700;
}

.page-resources-latest-promotions-guide__brand-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-latest-promotions-guide__brand-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

.page-resources-latest-promotions-guide__brand-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.page-resources-latest-promotions-guide__brand-item-title {
  font-size: 22px;
  color: #FFD700; /* Primary color for brand item titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-latest-promotions-guide__brand-item p {
  font-size: 16px;
  color: #e0e0e0;
}

/* --- Module 4: Blog List --- */
.page-resources-latest-promotions-guide__blog-section {
  background-color: #f8f8f8;
  padding: 60px 20px;
}

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

.page-resources-latest-promotions-guide__blog-item {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}