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

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

.page-promotions-vip-program__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px; /* Limit height on desktop */
}

.page-promotions-vip-program__hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
  position: relative; /* Ensure content is above any potential background layers if needed */
  z-index: 1;
  background-color: #08160F; /* Ensure text block has a solid background */
  border-radius: 8px;
  margin-top: -80px; /* Pull up to overlap hero image slightly for visual effect */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.page-promotions-vip-program__hero-description {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions-vip-program__btn-primary,
.page-promotions-vip-program__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

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

.page-promotions-vip-program__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
  opacity: 0.9;
}

.page-promotions-vip-program__btn-secondary {
  background: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
  border: 2px solid #2E7A4E; /* Border */
}

.page-promotions-vip-program__btn-secondary:hover {
  transform: translateY(-3px);
  background: #1E3A2A; /* Divider */
  color: #57E38D; /* Glow */
}

.page-promotions-vip-program__content-section {
  max-width: 100%;
  margin: 0 auto;
  padding: 60px 0;
  box-sizing: border-box;
}

.page-promotions-vip-program__dark-section {
  background-color: #0A4B2C; /* Deep Green */
}

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

.page-promotions-vip-program__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.4);
}

.page-promotions-vip-program__text-block {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-vip-program__features-grid,
.page-promotions-vip-program__offers-grid,
.page-promotions-vip-program__security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-vip-program__feature-card,
.page-promotions-vip-program__offer-item,
.page-promotions-vip-program__security-item {
  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);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-vip-program__feature-card:hover,
.page-promotions-vip-program__offer-item:hover,
.page-promotions-vip-program__security-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-promotions-vip-program__feature-icon,
.page-promotions-vip-program__security-icon {
  width: 100%; /* Ensure image fills card width */
  height: auto;
  max-width: 200px;
  margin: 0 auto 20px auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-promotions-vip-program__feature-title,
.page-promotions-vip-program__offer-title,
.page-promotions-vip-program__security-title {
  font-size: 1.3rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promotions-vip-program__feature-description,
.page-promotions-vip-program__offer-description,
.page-promotions-vip-program__security-description {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
}

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

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

.page-promotions-vip-program__level-title {
  font-size: 1.5rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
  font-weight: 700;
  text-align: center;
}

.page-promotions-vip-program__level-requirement {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  text-align: center;
}

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

.page-promotions-vip-program__level-benefits li {
  font-size: 0.9rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-promotions-vip-program__level-benefits li::before {
  content: '✅';
  position: absolute;
  left: 0;
  color: #57E38D; /* Glow */
}

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

.page-promotions-vip-program__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);
}

.page-promotions-vip-program__step-title {
  font-size: 1.3rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promotions-vip-program__step-description {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-promotions-vip-program__subtitle {
  font-size: 1.6rem;
  color: #F2C14E; /* Gold */
  margin-top: 50px;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 600;
}

.page-promotions-vip-program__tips-list {
  list-style-type: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.page-promotions-vip-program__tips-list li {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 15px;
  color: #F2FFF6; /* Text Main */
  font-size: 1rem;
  position: relative;
  padding-left: 45px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions-vip-program__tips-list li::before {
  content: '💡';
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.page-promotions-vip-program__cta-block {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 12px;
  border: 1px solid #2E7A4E; /* Border */
}

.page-promotions-vip-program__cta-text {
  font-size: 1.2rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 25px;
  font-weight: 500;
}

.page-promotions-vip-program__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-vip-program__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.page-promotions-vip-program__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-promotions-vip-program__faq-question::-webkit-details-marker {
  display: none; /* For details/summary */
}

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

.page-promotions-vip-program__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #57E38D; /* Glow */
}

.page-promotions-vip-program__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.page-promotions-vip-program__faq-item[open] .page-promotions-vip-program__faq-answer {
  max-height: 500px; /* Adjust as needed */
  transition: max-height 0.4s ease-in;
}

.page-promotions-vip-program__faq-answer p {
  margin: 0;
}

.page-promotions-vip-program__conclusion-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #0A4B2C; /* Deep Green */
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-promotions-vip-program__hero-content {
    margin-top: -50px;
  }
}

@media (max-width: 768px) {
  .page-promotions-vip-program {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-promotions-vip-program__hero-section {
    padding-bottom: 40px;
  }

  .page-promotions-vip-program__hero-image {
    max-height: 400px;
  }

  .page-promotions-vip-program__hero-content {
    padding: 30px 15px;
    margin-top: -60px; /* Adjust overlap for smaller screens */
  }

  .page-promotions-vip-program__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-promotions-vip-program__hero-description {
    font-size: 1rem;
  }

  .page-promotions-vip-program__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions-vip-program__btn-primary,
  .page-promotions-vip-program__btn-secondary {
    width: 100% !important; /* Ensure buttons take full width */
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-promotions-vip-program__content-section {
    padding: 40px 0;
  }

  .page-promotions-vip-program__container {
    padding: 0 15px;
  }

  .page-promotions-vip-program__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 30px;
  }

  .page-promotions-vip-program__text-block {
    font-size: 0.95rem;
  }

  .page-promotions-vip-program__features-grid,
  .page-promotions-vip-program__offers-grid,
  .page-promotions-vip-program__security-features,
  .page-promotions-vip-program__vip-levels,
  .page-promotions-vip-program__process-steps {
    grid-template-columns: 1fr; /* Single column layout for cards */
    gap: 20px;
  }

  .page-promotions-vip-program__feature-card,
  .page-promotions-vip-program__offer-item,
  .page-promotions-vip-program__security-item,
  .page-promotions-vip-program__vip-level-card,
  .page-promotions-vip-program__step-card {
    padding: 25px;
  }

  .page-promotions-vip-program__feature-title,
  .page-promotions-vip-program__offer-title,
  .page-promotions-vip-program__security-title,
  .page-promotions-vip-program__level-title,
  .page-promotions-vip-program__step-title {
    font-size: 1.2rem;
  }

  .page-promotions-vip-program__faq-question {
    padding: 15px;
    font-size: 1rem;
  }

  .page-promotions-vip-program__faq-answer {
    padding: 0 15px 15px 15px;
    font-size: 0.9rem;
  }

  /* Mobile image responsiveness */
  .page-promotions-vip-program img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-promotions-vip-program__section,
  .page-promotions-vip-program__card,
  .page-promotions-vip-program__container,
  .page-promotions-vip-program__cta-block {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-promotions-vip-program__hero-section {
    padding-top: 10px !important;
  }

  .page-promotions-vip-program__video-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }
  
  /* Video responsiveness (if any) */
  .page-promotions-vip-program video,
  .page-promotions-vip-program__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions-vip-program__video-section,
  .page-promotions-vip-program__video-container,
  .page-promotions-vip-program__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-program__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Button responsiveness */
  .page-promotions-vip-program__cta-button,
  .page-promotions-vip-program__btn-primary,
  .page-promotions-vip-program__btn-secondary,
  .page-promotions-vip-program a[class*="button"],
  .page-promotions-vip-program a[class*="btn"] {
    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-promotions-vip-program__cta-buttons,
  .page-promotions-vip-program__button-group,
  .page-promotions-vip-program__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;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-promotions-vip-program__hero-content {
    margin-top: -40px;
  }

  .page-promotions-vip-program__main-title {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }

  .page-promotions-vip-program__section-title {
    font-size: clamp(1.3rem, 7vw, 1.8rem);
  }
}