.page-promotions-vip-program {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  line-height: 1.6;
  background-color: #121E30; /* Slightly lighter dark blue for overall background */
}

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

.page-promotions-vip-program__hero-section {
  background: linear-gradient(135deg, #1A2B47 0%, #0F1A2A 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF; /* White for hero text */
  position: relative;
  overflow: hidden;
}

.page-promotions-vip-program__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:hero:vip,luxury,exclusive,abstract]') no-repeat center center/cover;
  opacity: 0.15;
  z-index: 0;
}

.page-promotions-vip-program__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.page-promotions-vip-program__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  color: #E0E0E0;
}

.page-promotions-vip-program__hero-btn {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A2B47; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  position: relative;
  z-index: 1;
  border: none;
  cursor: pointer;
}

.page-promotions-vip-program__hero-btn:hover {
  background-color: #e6c200; /* Darker gold on hover */
  transform: translateY(-3px);
}

.page-promotions-vip-program__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 30px;
  padding-top: 60px;
  font-weight: bold;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

.page-promotions-vip-program__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #B0B0B0; /* Lighter grey for intro text */
}

.page-promotions-vip-program__benefits-overview {
  padding: 80px 0;
  background-color: #1A2B47; /* Main dark blue for this section */
}

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

.page-promotions-vip-program__benefit-item {
  background-color: #283C5A; /* Slightly lighter dark blue for benefit cards */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-promotions-vip-program__benefit-item:hover {
  transform: translateY(-5px);
}

.page-promotions-vip-program__benefit-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Gold glow for icons */
}

.page-promotions-vip-program__benefit-title {
  font-size: 1.6em;
  color: #FFD700; /* Gold for benefit titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-vip-program__benefit-text {
  font-size: 1em;
  color: #E0E0E0;
}

.page-promotions-vip-program__vip-levels {
  padding: 80px 0;
  background-color: #121E30;
}

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

.page-promotions-vip-program__level-card {
  background-color: #1A2B47; /* Main dark blue for level cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-vip-program__level-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, #FFD700, #C0C0C0, #B87333, #FFD700); /* Gradient for tier indicator */
  animation: page-promotions-vip-program__level-indicator 5s linear infinite;
}

@keyframes page-promotions-vip-program__level-indicator {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.page-promotions-vip-program__level-title {
  font-size: 2.2em;
  color: #FFD700; /* Gold for level titles */
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
}

.page-promotions-vip-program__level-image {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.page-promotions-vip-program__level-description {
  font-size: 1em;
  color: #B0B0B0;
  margin-bottom: 25px;
  min-height: 120px; /* Ensure consistent height for descriptions */
}

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

.page-promotions-vip-program__level-benefits li {
  background-color: #283C5A; /* Darker background for list items */
  margin-bottom: 10px;
  padding: 10px 15px;
  border-radius: 5px;
  color: #E0E0E0;
  display: flex;
  align-items: center;
  font-size: 0.95em;
}

.page-promotions-vip-program__level-benefits li::before {
  content: '✓';
  color: #FFD700; /* Gold checkmark */
  margin-right: 10px;
  font-weight: bold;
}

.page-promotions-vip-program__how-to-join {
  padding: 80px 0;
  background-color: #1A2B47;
}

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

.page-promotions-vip-program__steps-list li {
  display: flex;
  align-items: flex-start;
  text-align: left;
  color: #E0E0E0;
}

.page-promotions-vip-program__step-number {
  background-color: #FFD700; /* Gold step number background */
  color: #1A2B47; /* Dark blue text on gold */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.5em;
  margin-right: 20px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-promotions-vip-program__steps-list p {
  margin: 0;
  font-size: 1.1em;
}

.page-promotions-vip-program__steps-list a {
  color: #FFD700; /* Gold link for registration step */
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-vip-program__steps-list a:hover {
  text-decoration: underline;
}

.page-promotions-vip-program__cta-btn {
  display: block;
  width: fit-content;
  margin: 50px auto 0 auto;
  background-color: #FFD700;
  color: #1A2B47;
  padding: 18px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promotions-vip-program__cta-btn:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-promotions-vip-program__faq {
  padding: 80px 0;
  background-color: #121E30;
}

.page-promotions-vip-program__faq-item {
  background-color: #1A2B47;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-vip-program__faq-question {
  font-size: 1.4em;
  color: #FFD700; /* Gold for FAQ questions */
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promotions-vip-program__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-promotions-vip-program__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-promotions-vip-program__faq-answer {
  font-size: 1em;
  color: #B0B0B0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.page-promotions-vip-program__faq-answer.active {
  max-height: 200px; /* Adjust as needed for content */
  margin-top: 15px;
}

.page-promotions-vip-program__cta-section {
  padding: 80px 0 100px 0;
  background-color: #1A2B47;
  text-align: center;
}

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

.page-promotions-vip-program__cta-btn--secondary {
  background-color: transparent;
  border: 2px solid #FFD700; /* Gold border for secondary button */
  color: #FFD700; /* Gold text for secondary button */
}

.page-promotions-vip-program__cta-btn--secondary:hover {
  background-color: #FFD700;
  color: #1A2B47;
}

@media (max-width: 992px) {
  .page-promotions-vip-program__hero-title {
    font-size: 2.8em;
  }
  .page-promotions-vip-program__section-title {
    font-size: 2.2em;
  }
  .page-promotions-vip-program__benefits-grid, .page-promotions-vip-program__level-card-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-promotions-vip-program__steps-list {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .page-promotions-vip-program__level-description {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .page-promotions-vip-program__hero-section {
    padding: 80px 0;
  }
  .page-promotions-vip-program__hero-title {
    font-size: 2.2em;
  }
  .page-promotions-vip-program__hero-description {
    font-size: 1em;
  }
  .page-promotions-vip-program__hero-btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions-vip-program__section-title {
    font-size: 1.8em;
  }
  .page-promotions-vip-program__section-intro {
    font-size: 0.95em;
  }
  .page-promotions-vip-program__benefit-title {
    font-size: 1.4em;
  }
  .page-promotions-vip-program__level-title {
    font-size: 1.8em;
  }
  .page-promotions-vip-program__faq-question {
    font-size: 1.2em;
  }
  .page-promotions-vip-program__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .page-promotions-vip-program__cta-btn {
    width: 80%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-promotions-vip-program__hero-title {
    font-size: 1.8em;
  }
  .page-promotions-vip-program__section-title {
    font-size: 1.6em;
  }
  .page-promotions-vip-program__hero-section, .page-promotions-vip-program__benefits-overview, .page-promotions-vip-program__vip-levels, .page-promotions-vip-program__how-to-join, .page-promotions-vip-program__faq, .page-promotions-vip-program__cta-section {
    padding: 50px 0;
  }
  .page-promotions-vip-program__container {
    padding: 0 15px;
  }
}