:root {
  --background: #08160F;
  --card-bg: #11271B;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --glow: #57E38D;
  --gold: #F2C14E;
  --divider: #1E3A2A;
  --deep-green: #0A4B2C;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --header-offset: 0px; /* Actual value comes from shared.css */
}

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

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

.page-blog-exclusive-promotions-rewards__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-bottom: 40px; /* Space for content below image */
  background-color: var(--background);
}

.page-blog-exclusive-promotions-rewards__hero-image-wrapper {
  width: 100%;
  height: auto;
  max-height: 600px; /* Limit height to prevent overly tall hero on desktop */
  overflow: hidden;
}

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

.page-blog-exclusive-promotions-rewards__hero-content {
  position: relative; /* Ensure content is above any background elements */
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Pull content up over the image slightly for visual effect, but not covering text on image */
  background-color: var(--card-bg);
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.page-blog-exclusive-promotions-rewards__hero-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.page-blog-exclusive-promotions-rewards__hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.page-blog-exclusive-promotions-rewards__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Allow long words to break */
  box-sizing: border-box;
  max-width: 100%;
}

.page-blog-exclusive-promotions-rewards__cta-button--primary {
  background: var(--button-gradient);
  color: #ffffff;
}

.page-blog-exclusive-promotions-rewards__cta-button--primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%); /* Slightly altered gradient on hover */
  transform: translateY(-2px);
}

.page-blog-exclusive-promotions-rewards__cta-button--secondary {
  background-color: transparent;
  border: 2px solid var(--border);
  color: var(--text-main);
}

.page-blog-exclusive-promotions-rewards__cta-button--secondary:hover {
  background-color: var(--deep-green);
  transform: translateY(-2px);
}

.page-blog-exclusive-promotions-rewards__cta-button--small {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.page-blog-exclusive-promotions-rewards__section {
  padding: 60px 0;
  background-color: var(--background);
}

.page-blog-exclusive-promotions-rewards__section--intro,
.page-blog-exclusive-promotions-rewards__section--how-to,
.page-blog-exclusive-promotions-rewards__section--faq,
.page-blog-exclusive-promotions-rewards__section--conclusion {
  background-color: var(--background);
}

.page-blog-exclusive-promotions-rewards__section--promotions,
.page-blog-exclusive-promotions-rewards__section--vip,
.page-blog-exclusive-promotions-rewards__section--why-choose {
  background-color: var(--card-bg);
}

.page-blog-exclusive-promotions-rewards__heading {
  font-size: 2.5rem;
  color: var(--gold);
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-blog-exclusive-promotions-rewards__sub-heading {
  font-size: 1.8rem;
  color: var(--text-main);
  margin-bottom: 20px;
  border-left: 4px solid var(--glow);
  padding-left: 15px;
}

.page-blog-exclusive-promotions-rewards__text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 15px;
}

.page-blog-exclusive-promotions-rewards__highlight {
  color: var(--gold);
  font-weight: bold;
}

.page-blog-exclusive-promotions-rewards__inline-link {
  color: var(--glow);
  text-decoration: underline;
}

.page-blog-exclusive-promotions-rewards__inline-link:hover {
  color: var(--gold);
}

.page-blog-exclusive-promotions-rewards__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-blog-exclusive-promotions-rewards__grid--reverse .page-blog-exclusive-promotions-rewards__grid-item:first-child {
  order: 2;
}

.page-blog-exclusive-promotions-rewards__grid--reverse .page-blog-exclusive-promotions-rewards__grid-item:last-child {
  order: 1;
}

.page-blog-exclusive-promotions-rewards__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  min-width: 200px;
  min-height: 200px;
}

.page-blog-exclusive-promotions-rewards__image--mobile {
  margin-top: 30px;
}

.page-blog-exclusive-promotions-rewards__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-blog-exclusive-promotions-rewards__list-item {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: var(--text-secondary);
}

.page-blog-exclusive-promotions-rewards__list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--glow);
  font-weight: bold;
}

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

.page-blog-exclusive-promotions-rewards__step-item {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-exclusive-promotions-rewards__step-item .page-blog-exclusive-promotions-rewards__sub-heading {
  text-align: center;
  border-left: none;
  padding-left: 0;
  margin-bottom: 15px;
}

.page-blog-exclusive-promotions-rewards__step-item .page-blog-exclusive-promotions-rewards__text {
  flex-grow: 1;
}

.page-blog-exclusive-promotions-rewards__step-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-exclusive-promotions-rewards__faq-list {
  margin-top: 30px;
}

.page-blog-exclusive-promotions-rewards__faq-item {
  background-color: var(--card-bg);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-blog-exclusive-promotions-rewards__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: bold;
  color: var(--text-main);
  cursor: pointer;
  background-color: var(--deep-green);
  border-bottom: 1px solid var(--divider);
  list-style: none; /* For details/summary */
}

.page-blog-exclusive-promotions-rewards__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-exclusive-promotions-rewards__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--gold);
  transition: transform 0.3s ease;
}

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

.page-blog-exclusive-promotions-rewards__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: var(--text-secondary);
  background-color: var(--card-bg);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-exclusive-promotions-rewards__grid {
    grid-template-columns: 1fr;
  }
  .page-blog-exclusive-promotions-rewards__grid--reverse .page-blog-exclusive-promotions-rewards__grid-item:first-child {
    order: unset;
  }
  .page-blog-exclusive-promotions-rewards__grid--reverse .page-blog-exclusive-promotions-rewards__grid-item:last-child {
    order: unset;
  }
  .page-blog-exclusive-promotions-rewards__hero-content {
    margin-top: -50px;
    padding: 30px 15px;
  }
  .page-blog-exclusive-promotions-rewards__hero-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }
  .page-blog-exclusive-promotions-rewards__heading {
    font-size: 2rem;
  }
  .page-blog-exclusive-promotions-rewards__sub-heading {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .page-blog-exclusive-promotions-rewards__section {
    padding: 40px 0;
  }
  .page-blog-exclusive-promotions-rewards__heading {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .page-blog-exclusive-promotions-rewards__sub-heading {
    font-size: 1.3rem;
  }
  .page-blog-exclusive-promotions-rewards__text,
  .page-blog-exclusive-promotions-rewards__list-item,
  .page-blog-exclusive-promotions-rewards__faq-answer {
    font-size: 0.95rem;
  }
  .page-blog-exclusive-promotions-rewards__cta-button,
  .page-blog-exclusive-promotions-rewards__cta-button--small {
    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;
  }
  .page-blog-exclusive-promotions-rewards__steps {
    grid-template-columns: 1fr;
  }
  .page-blog-exclusive-promotions-rewards__hero-content {
    margin-top: -30px;
    padding: 20px 15px;
  }
  .page-blog-exclusive-promotions-rewards__hero-description {
    font-size: 1rem;
  }
  
  /* Image responsiveness */
  .page-blog-exclusive-promotions-rewards img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-exclusive-promotions-rewards__section,
  .page-blog-exclusive-promotions-rewards__container,
  .page-blog-exclusive-promotions-rewards__grid-item,
  .page-blog-exclusive-promotions-rewards__step-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  /* Buttons container responsiveness */
  .page-blog-exclusive-promotions-rewards__cta-buttons,
  .page-blog-exclusive-promotions-rewards__button-group,
  .page-blog-exclusive-promotions-rewards__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-blog-exclusive-promotions-rewards__cta-buttons {
    display: flex;
    flex-direction: column;
  }

  /* Video responsiveness (if any, though not used here, keep for general rule) */
  .page-blog-exclusive-promotions-rewards video,
  .page-blog-exclusive-promotions-rewards__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-exclusive-promotions-rewards__video-section,
  .page-blog-exclusive-promotions-rewards__video-container,
  .page-blog-exclusive-promotions-rewards__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-exclusive-promotions-rewards__video-section {
    padding-top: 10px !important;
  }
}