.page-promotions-vip-program {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --background-color: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;

  font-family: 'Arial', sans-serif;
  color: var(--text-main); /* Main text color for dark background */
  background-color: var(--background-color);
  line-height: 1.6;
  overflow-x: hidden;
}

.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(28px, 4vw, 38px);
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.3;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.5);
}

.page-promotions-vip-program__text-block {
  font-size: 16px;
  color: var(--text-main);
  text-align: justify;
  margin-bottom: 20px;
}

.page-promotions-vip-program__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  margin-bottom: 40px;
  background-color: var(--deep-green-color);
}

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

.page-promotions-vip-program__hero-content {
  text-align: center;
  padding: 30px 20px;
  background-color: rgba(17, 40, 27, 0.85); /* Card BG with transparency */
  border-radius: 10px;
  margin-top: -80px; /* Overlap slightly for visual effect, but content below image */
  position: relative; /* Ensure z-index works */
  z-index: 10;
  max-width: 900px;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--border-color);
}

.page-promotions-vip-program__hero-title {
  font-size: clamp(28px, 4.5vw, 48px);
  color: var(--gold-color);
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.7);
}

.page-promotions-vip-program__hero-description {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.page-promotions-vip-program__hero-cta-button,
.page-promotions-vip-program__cta-button {
  display: inline-block;
  background: var(--button-gradient);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-promotions-vip-program__hero-cta-button:hover,
.page-promotions-vip-program__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

.page-promotions-vip-program__video-section {
  padding: 60px 0;
  background-color: var(--deep-green-color);
  text-align: center;
}

.page-promotions-vip-program__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background-color: #000;
  margin-bottom: 30px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  width: 100%; /* Desktop width */
}

.page-promotions-vip-program__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.page-promotions-vip-program__cta-button--video {
  margin-top: 30px;
}

.page-promotions-vip-program__tiers-section {
  padding: 60px 0;
  background-color: var(--background-color);
}

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

.page-promotions-vip-program__card {
  background-color: var(--card-bg);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  border: 1px solid var(--border-color);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-main);
}

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

.page-promotions-vip-program__tier-icon {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-vip-program__tier-title {
  font-size: 24px;
  color: var(--gold-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-vip-program__tier-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.page-promotions-vip-program__tier-benefits li {
  color: var(--text-secondary);
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-promotions-vip-program__tier-benefits li::before {
  content: '✔';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-promotions-vip-program__how-to-join-section {
  padding: 60px 0;
  background-color: var(--deep-green-color);
}

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

.page-promotions-vip-program__step-card {
  padding: 25px;
  background-color: var(--card-bg);
}

.page-promotions-vip-program__step-title {
  font-size: 22px;
  color: var(--gold-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions-vip-program__step-description {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.page-promotions-vip-program__step-cta-button {
  display: inline-block;
  background: var(--primary-color);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: background-color 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-promotions-vip-program__step-cta-button:hover {
  background-color: var(--secondary-color);
}

.page-promotions-vip-program__exclusive-offers-section {
  padding: 60px 0;
  background-color: var(--background-color);
}

.page-promotions-vip-program__offer-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-promotions-vip-program__offer-item {
  background-color: var(--card-bg);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  border: 1px solid var(--border-color);
  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__offer-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-promotions-vip-program__offer-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.page-promotions-vip-program__offer-title {
  font-size: 22px;
  color: var(--gold-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions-vip-program__offer-description {
  font-size: 15px;
  color: var(--text-secondary);
}

.page-promotions-vip-program__faq-section {
  padding: 60px 0;
  background-color: var(--deep-green-color);
}

.page-promotions-vip-program__faq-list {
  margin-top: 40px;
}

.page-promotions-vip-program__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions-vip-program__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 18px;
  font-weight: bold;
  color: var(--text-main);
  cursor: pointer;
  background-color: var(--card-bg);
  transition: background-color 0.3s ease;
  list-style: none;
}

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

.page-promotions-vip-program__faq-question:hover {
  background-color: rgba(var(--primary-color), 0.1);
}

.page-promotions-vip-program__faq-toggle {
  font-size: 24px;
  color: var(--primary-color);
  margin-left: 15px;
}

.page-promotions-vip-program__faq-answer {
  padding: 0 25px 20px;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

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

.page-promotions-vip-program__cta-final-section {
  padding: 60px 0;
  text-align: center;
  background-color: var(--background-color);
}

.page-promotions-vip-program__cta-button--final {
  margin-top: 40px;
  font-size: 20px;
  padding: 18px 35px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promotions-vip-program__hero-image {
    max-height: 500px;
  }
  .page-promotions-vip-program__hero-content {
    margin-top: -60px;
  }
}

@media (max-width: 768px) {
  .page-promotions-vip-program__hero-section {
    padding-bottom: 40px;
  }
  .page-promotions-vip-program__hero-image {
    max-height: 300px;
  }
  .page-promotions-vip-program__hero-content {
    margin-top: -40px;
    padding: 20px;
  }
  .page-promotions-vip-program__hero-title {
    font-size: clamp(24px, 6vw, 36px);
  }
  .page-promotions-vip-program__hero-description {
    font-size: 16px;
  }
  .page-promotions-vip-program__section-title {
    font-size: clamp(24px, 5vw, 32px);
    margin-bottom: 30px;
  }
  .page-promotions-vip-program__text-block {
    font-size: 15px;
  }
  .page-promotions-vip-program__tier-cards,
  .page-promotions-vip-program__steps-grid,
  .page-promotions-vip-program__offer-list {
    grid-template-columns: 1fr;
  }
  .page-promotions-vip-program__card,
  .page-promotions-vip-program__offer-item {
    padding: 20px;
  }
  .page-promotions-vip-program__tier-icon {
    max-width: 150px;
  }
  .page-promotions-vip-program__tier-title,
  .page-promotions-vip-program__step-title,
  .page-promotions-vip-program__offer-title {
    font-size: 20px;
  }
  .page-promotions-vip-program__offer-image {
    height: 180px;
  }

  /* Mobile specific overrides for images, videos, buttons */
  .page-promotions-vip-program img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-promotions-vip-program video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-promotions-vip-program__hero-cta-button,
  .page-promotions-vip-program__cta-button,
  .page-promotions-vip-program__step-cta-button,
  .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__container,
  .page-promotions-vip-program__video-wrapper,
  .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;
    overflow: hidden !important;
  }
  .page-promotions-vip-program__video-section {
    padding-top: 10px !important;
  }
  .page-promotions-vip-program__hero-content {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions-vip-program__faq-question {
    padding: 15px 20px;
  }
  .page-promotions-vip-program__faq-answer {
    padding: 0 20px 15px;
  }
}

@media (max-width: 480px) {
  .page-promotions-vip-program__hero-title {
    font-size: clamp(20px, 8vw, 30px);
  }
  .page-promotions-vip-program__hero-description {
    font-size: 14px;
  }
  .page-promotions-vip-program__hero-cta-button {
    padding: 12px 25px;
    font-size: 16px;
  }
  .page-promotions-vip-program__section-title {
    font-size: clamp(20px, 6vw, 28px);
  }
  .page-promotions-vip-program__text-block {
    font-size: 14px;
  }
}