.page-promotions-vip-exclusive {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: var(--neon-bg-dark); /* Inherited from shared.css */
}

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

.page-promotions-vip-exclusive__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #017439; /* Brand primary color for hero */
  color: #ffffff;
  overflow: hidden;
}

.page-promotions-vip-exclusive__hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
}

.page-promotions-vip-exclusive__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.page-promotions-vip-exclusive__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-promotions-vip-exclusive__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-promotions-vip-exclusive__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.page-promotions-vip-exclusive__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-promotions-vip-exclusive__btn-primary,
.page-promotions-vip-exclusive__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  min-width: 180px;
}

.page-promotions-vip-exclusive__btn-primary {
  background-color: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #C30808;
}

.page-promotions-vip-exclusive__btn-primary:hover {
  background-color: #e02020;
  transform: translateY(-2px);
}

.page-promotions-vip-exclusive__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-promotions-vip-exclusive__btn-secondary:hover {
  background-color: #ffffff;
  color: #017439;
  transform: translateY(-2px);
}

.page-promotions-vip-exclusive__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #ffffff;
}

.page-promotions-vip-exclusive__introduction-section,
.page-promotions-vip-exclusive__exclusive-offers-section,
.page-promotions-vip-exclusive__how-to-join-section,
.page-promotions-vip-exclusive__conclusion-section {
  padding: 60px 0;
}

.page-promotions-vip-exclusive__vip-tiers-section,
.page-promotions-vip-exclusive__special-privileges-section,
.page-promotions-vip-exclusive__faq-section {
  padding: 60px 0;
  background-color: #f8f8f8;
  color: #333333;
}

.page-promotions-vip-exclusive__vip-tiers-section .page-promotions-vip-exclusive__section-title,
.page-promotions-vip-exclusive__special-privileges-section .page-promotions-vip-exclusive__section-title,
.page-promotions-vip-exclusive__faq-section .page-promotions-vip-exclusive__section-title {
  color: #017439;
}

.page-promotions-vip-exclusive__dark-bg {
  background-color: #017439;
  color: #ffffff;
}

.page-promotions-vip-exclusive__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-promotions-vip-exclusive__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-promotions-vip-exclusive__tier-grid,
.page-promotions-vip-exclusive__offer-cards-grid,
.page-promotions-vip-exclusive__privilege-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-vip-exclusive__tier-card,
.page-promotions-vip-exclusive__offer-card,
.page-promotions-vip-exclusive__privilege-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.page-promotions-vip-exclusive__tier-card:hover,
.page-promotions-vip-exclusive__offer-card:hover,
.page-promotions-vip-exclusive__privilege-item:hover {
  transform: translateY(-5px);
}

.page-promotions-vip-exclusive__tier-image,
.page-promotions-vip-exclusive__offer-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-promotions-vip-exclusive__tier-title,
.page-promotions-vip-exclusive__offer-title,
.page-promotions-vip-exclusive__privilege-title {
  font-size: 1.8em;
  color: #017439;
  margin-bottom: 15px;
}

.page-promotions-vip-exclusive__tier-description,
.page-promotions-vip-exclusive__offer-description,
.page-promotions-vip-exclusive__privilege-description {
  font-size: 1em;
  color: #555555;
  flex-grow: 1;
}

.page-promotions-vip-exclusive__tier-benefits {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  text-align: left;
  width: 100%;
}

.page-promotions-vip-exclusive__tier-benefits li {
  margin-bottom: 10px;
  color: #333333;
  position: relative;
  padding-left: 25px;
}

.page-promotions-vip-exclusive__tier-benefits li::before {
  content: '✔';
  color: #017439;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-promotions-vip-exclusive__join-steps {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-promotions-vip-exclusive__join-steps li {
  background-color: rgba(255, 255, 255, 0.1);
  border-left: 5px solid #C30808;
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 1.1em;
  color: #ffffff;
}

.page-promotions-vip-exclusive__step-title {
  color: #FFFF00;
}

.page-promotions-vip-exclusive__join-steps li a {
  color: #FFFF00;
  text-decoration: underline;
}

.page-promotions-vip-exclusive__join-steps li a:hover {
  color: #ffffff;
}

.page-promotions-vip-exclusive__cta-buttons-bottom,
.page-promotions-vip-exclusive__cta-buttons-final {
  text-align: center;
  margin-top: 50px;
}

.page-promotions-vip-exclusive__faq-section {
  background-color: #f8f8f8;
  padding: 60px 0;
  color: #333333;
}

.page-promotions-vip-exclusive__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions-vip-exclusive__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: #ffffff;
  color: #017439;
  transition: background-color 0.3s ease;
}

.page-promotions-vip-exclusive__faq-question:hover {
  background-color: #f0f0f0;
}

.page-promotions-vip-exclusive__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-promotions-vip-exclusive__faq-item.active .page-promotions-vip-exclusive__faq-toggle {
  transform: rotate(45deg);
  content: '−'; /* Change to minus sign */
}

.page-promotions-vip-exclusive__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #555555;
}

.page-promotions-vip-exclusive__faq-item.active .page-promotions-vip-exclusive__faq-answer {
  max-height: 1000px !important; /* Use !important to ensure it overrides */
  padding: 15px 25px;
}

.page-promotions-vip-exclusive__faq-answer p {
  margin: 0;
  padding-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions-vip-exclusive__hero-title {
    font-size: 2.8em;
  }
  .page-promotions-vip-exclusive__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-promotions-vip-exclusive__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important; /* Mobile header offset */
  }
  .page-promotions-vip-exclusive__hero-title {
    font-size: 2.2em;
  }
  .page-promotions-vip-exclusive__hero-description {
    font-size: 1em;
  }
  .page-promotions-vip-exclusive__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions-vip-exclusive__btn-primary,
  .page-promotions-vip-exclusive__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-promotions-vip-exclusive__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-promotions-vip-exclusive__introduction-section,
  .page-promotions-vip-exclusive__vip-tiers-section,
  .page-promotions-vip-exclusive__exclusive-offers-section,
  .page-promotions-vip-exclusive__special-privileges-section,
  .page-promotions-vip-exclusive__how-to-join-section,
  .page-promotions-vip-exclusive__faq-section,
  .page-promotions-vip-exclusive__conclusion-section {
    padding: 40px 0;
  }
  .page-promotions-vip-exclusive__container {
    padding: 0 15px;
  }
  .page-promotions-vip-exclusive__text-block {
    font-size: 0.95em;
  }
  .page-promotions-vip-exclusive__tier-grid,
  .page-promotions-vip-exclusive__offer-cards-grid,
  .page-promotions-vip-exclusive__privilege-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions-vip-exclusive__tier-card,
  .page-promotions-vip-exclusive__offer-card,
  .page-promotions-vip-exclusive__privilege-item {
    padding: 25px;
  }
  .page-promotions-vip-exclusive__tier-title,
  .page-promotions-vip-exclusive__offer-title,
  .page-promotions-vip-exclusive__privilege-title {
    font-size: 1.5em;
  }
  .page-promotions-vip-exclusive__join-steps li {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-promotions-vip-exclusive__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-promotions-vip-exclusive__faq-answer {
    padding: 10px 20px;
  }
  /* Mobile image responsiveness */
  .page-promotions-vip-exclusive img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions-vip-exclusive__section,
  .page-promotions-vip-exclusive__card,
  .page-promotions-vip-exclusive__container,
  .page-promotions-vip-exclusive__hero-section,
  .page-promotions-vip-exclusive__introduction-section,
  .page-promotions-vip-exclusive__vip-tiers-section,
  .page-promotions-vip-exclusive__exclusive-offers-section,
  .page-promotions-vip-exclusive__special-privileges-section,
  .page-promotions-vip-exclusive__how-to-join-section,
  .page-promotions-vip-exclusive__faq-section,
  .page-promotions-vip-exclusive__conclusion-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }
  .page-promotions-vip-exclusive__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}