/* style/promotions-vip-exclusive.css */
.page-promotions-vip-exclusive {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  line-height: 1.6;
}

.page-promotions-vip-exclusive__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  text-align: center;
  overflow: hidden;
}

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

.page-promotions-vip-exclusive__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.page-promotions-vip-exclusive__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}

.page-promotions-vip-exclusive__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.6);
}

.page-promotions-vip-exclusive__subtitle {
  font-size: 1.25rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 40px;
}

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

.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: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions-vip-exclusive__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-promotions-vip-exclusive__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-promotions-vip-exclusive__btn-secondary {
  background-color: transparent;
  color: #2AD16F; /* Button top color */
  border: 2px solid #2AD16F; /* Button top color */
}

.page-promotions-vip-exclusive__btn-secondary:hover {
  background-color: rgba(42, 209, 111, 0.1);
  color: #F2FFF6; /* Text Main */
  border-color: #F2FFF6; /* Text Main */
}

.page-promotions-vip-exclusive__section {
  padding: 80px 20px;
  text-align: center;
}

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

.page-promotions-vip-exclusive__section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  font-weight: 700;
}

.page-promotions-vip-exclusive__section-description {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  max-width: 800px;
  margin: 0 auto 50px auto;
}

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

.page-promotions-vip-exclusive__feature-card,
.page-promotions-vip-exclusive__tier-card,
.page-promotions-vip-exclusive__promo-card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #F2FFF6; /* Text Main */
  display: flex;
  flex-direction: column;
}

.page-promotions-vip-exclusive__feature-card:hover,
.page-promotions-vip-exclusive__tier-card:hover,
.page-promotions-vip-exclusive__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-promotions-vip-exclusive__feature-image,
.page-promotions-vip-exclusive__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-promotions-vip-exclusive__feature-title,
.page-promotions-vip-exclusive__tier-title,
.page-promotions-vip-exclusive__promo-title {
  font-size: 1.5rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promotions-vip-exclusive__tier-title .page-promotions-vip-exclusive__tier-icon {
  font-size: 1.8rem;
  margin-right: 10px;
  vertical-align: middle;
}

.page-promotions-vip-exclusive__feature-text,
.page-promotions-vip-exclusive__tier-text,
.page-promotions-vip-exclusive__promo-text {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions-vip-exclusive__tier-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-promotions-vip-exclusive__tier-benefits li {
  background-color: rgba(46, 122, 78, 0.2); /* Deep Green transparent */
  padding: 10px 15px;
  border-radius: 5px;
  margin-bottom: 10px;
  color: #F2FFF6; /* Text Main */
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}

.page-promotions-vip-exclusive__tier-benefits li::before {
  content: '✔️';
  margin-right: 10px;
  color: #57E38D; /* Glow */
}

.page-promotions-vip-exclusive__btn-text-link {
  display: inline-block;
  margin-top: auto;
  color: #2AD16F; /* Button top color */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-promotions-vip-exclusive__btn-text-link:hover {
  color: #F2C14E; /* Gold */
  text-decoration: underline;
}

.page-promotions-vip-exclusive__step-by-step {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-vip-exclusive__step-card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  color: #F2FFF6; /* Text Main */
}

.page-promotions-vip-exclusive__step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(42, 209, 111, 0.5);
}

.page-promotions-vip-exclusive__step-title {
  font-size: 1.4rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promotions-vip-exclusive__step-text {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-promotions-vip-exclusive__step-text .page-promotions-vip-exclusive__text-link {
  color: #2AD16F; /* Button top color */
  text-decoration: none;
  font-weight: 600;
}

.page-promotions-vip-exclusive__step-text .page-promotions-vip-exclusive__text-link:hover {
  text-decoration: underline;
  color: #F2C14E; /* Gold */
}

.page-promotions-vip-exclusive__faq-list {
  max-width: 900px;
  margin: 50px auto 0 auto;
  text-align: left;
}

.page-promotions-vip-exclusive__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  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;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  background-color: #0A4B2C; /* Deep Green */
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-promotions-vip-exclusive__faq-question:hover {
  background-color: #1E3A2A; /* Divider */
}

.page-promotions-vip-exclusive__faq-item[open] .page-promotions-vip-exclusive__faq-question {
  background-color: #1E3A2A; /* Divider */
}

.page-promotions-vip-exclusive__faq-item[open] .page-promotions-vip-exclusive__faq-toggle {
  transform: rotate(45deg);
}

.page-promotions-vip-exclusive__faq-qtext {
  flex-grow: 1;
}

.page-promotions-vip-exclusive__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #57E38D; /* Glow */
}

.page-promotions-vip-exclusive__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  border-top: 1px solid #1E3A2A; /* Divider */
}

.page-promotions-vip-exclusive__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-promotions-vip-exclusive__text-block {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 30px;
  margin-top: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  color: #F2FFF6; /* Text Main */
  font-size: 1.1rem;
}

.page-promotions-vip-exclusive__text-main {
  color: #F2FFF6; /* Text Main */
  font-size: 1.1rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions-vip-exclusive__hero-content {
    padding: 30px 15px;
  }
  .page-promotions-vip-exclusive__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-promotions-vip-exclusive__subtitle {
    font-size: 1.1rem;
  }
  .page-promotions-vip-exclusive__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  }
  .page-promotions-vip-exclusive__section-description {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  .page-promotions-vip-exclusive__features-grid,
  .page-promotions-vip-exclusive__tier-grid,
  .page-promotions-vip-exclusive__promo-grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .page-promotions-vip-exclusive__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* body handles --header-offset */
  }
  .page-promotions-vip-exclusive__hero-content {
    padding: 25px 10px;
  }
  .page-promotions-vip-exclusive__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 15px;
  }
  .page-promotions-vip-exclusive__subtitle {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }
  .page-promotions-vip-exclusive__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions-vip-exclusive__btn-primary,
  .page-promotions-vip-exclusive__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1rem !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-promotions-vip-exclusive__section {
    padding: 50px 15px;
  }
  .page-promotions-vip-exclusive__section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 15px;
  }
  .page-promotions-vip-exclusive__section-description {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }
  .page-promotions-vip-exclusive__features-grid,
  .page-promotions-vip-exclusive__tier-grid,
  .page-promotions-vip-exclusive__promo-grid,
  .page-promotions-vip-exclusive__step-by-step {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions-vip-exclusive__feature-card,
  .page-promotions-vip-exclusive__tier-card,
  .page-promotions-vip-exclusive__promo-card,
  .page-promotions-vip-exclusive__step-card {
    padding: 25px;
  }
  .page-promotions-vip-exclusive__feature-image,
  .page-promotions-vip-exclusive__promo-image {
    height: auto !important;
    max-width: 100% !important;
    width: 100% !important;
    min-width: 200px !important; /* Ensure min size */
    min-height: 200px !important; /* Ensure min size */
    margin-left: auto;
    margin-right: auto;
  }
  .page-promotions-vip-exclusive__feature-title,
  .page-promotions-vip-exclusive__tier-title,
  .page-promotions-vip-exclusive__promo-title {
    font-size: 1.3rem;
  }
  .page-promotions-vip-exclusive__feature-text,
  .page-promotions-vip-exclusive__tier-text,
  .page-promotions-vip-exclusive__promo-text,
  .page-promotions-vip-exclusive__tier-benefits li,
  .page-promotions-vip-exclusive__step-text,
  .page-promotions-vip-exclusive__faq-answer p,
  .page-promotions-vip-exclusive__text-main {
    font-size: 0.9rem;
  }
  .page-promotions-vip-exclusive__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }
  .page-promotions-vip-exclusive__faq-toggle {
    font-size: 1.5rem;
  }
  .page-promotions-vip-exclusive__faq-answer {
    padding: 15px 20px;
  }
  .page-promotions-vip-exclusive__container,
  .page-promotions-vip-exclusive__overview-section,
  .page-promotions-vip-exclusive__tiers-section,
  .page-promotions-vip-exclusive__promo-details-section,
  .page-promotions-vip-exclusive__guide-section,
  .page-promotions-vip-exclusive__faq-section,
  .page-promotions-vip-exclusive__final-cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-promotions-vip-exclusive img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions-vip-exclusive__video-section,
  .page-promotions-vip-exclusive__video-container,
  .page-promotions-vip-exclusive__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-promotions-vip-exclusive video,
  .page-promotions-vip-exclusive__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions-vip-exclusive__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .page-promotions-vip-exclusive__main-title {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }
  .page-promotions-vip-exclusive__section-title {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
  }
  .page-promotions-vip-exclusive__btn-primary,
  .page-promotions-vip-exclusive__btn-secondary {
    padding: 10px 15px !important;
    font-size: 0.9rem !important;
  }
  .page-promotions-vip-exclusive__step-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}