.page-promotions-exclusive-vip {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

.page-promotions-exclusive-vip__hero {
  background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%); /* Darker blue for depth */
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.page-promotions-exclusive-vip__hero::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  filter: blur(80px);
}

.page-promotions-exclusive-vip__hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background-color: rgba(255, 215, 0, 0.15);
  border-radius: 50%;
  filter: blur(100px);
}

.page-promotions-exclusive-vip__hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-promotions-exclusive-vip__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions-exclusive-vip__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-promotions-exclusive-vip__hero-image-wrapper {
  z-index: 1;
  max-width: 600px;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-promotions-exclusive-vip__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-promotions-exclusive-vip__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0056b3; /* Dark blue text for contrast */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-exclusive-vip__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-promotions-exclusive-vip__section-title {
  font-size: 2.5em;
  color: #007BFF; /* Primary blue for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions-exclusive-vip__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-promotions-exclusive-vip__intro,
.page-promotions-exclusive-vip__tiers,
.page-promotions-exclusive-vip__benefits,
.page-promotions-exclusive-vip__faq,
.page-promotions-exclusive-vip__cta-bottom {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.page-promotions-exclusive-vip__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #555;
}

.page-promotions-exclusive-vip__tiers {
  background-color: #ffffff;
  padding: 60px 20px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

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

.page-promotions-exclusive-vip__tier-card {
  background-color: #f0f8ff; /* Light blue background */
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-height: 480px; /* Ensure cards have similar height */
}

.page-promotions-exclusive-vip__tier-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.page-promotions-exclusive-vip__tier-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 5px rgba(0,0,0,0.1));
}

.page-promotions-exclusive-vip__tier-title {
  font-size: 1.8em;
  color: #007BFF;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-exclusive-vip__tier-description {
  font-size: 1em;
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.page-promotions-exclusive-vip__tier-benefits li {
  background-color: #e6f7ff;
  padding: 8px 15px;
  margin-bottom: 8px;
  border-radius: 5px;
  color: #0056b3;
  font-size: 0.95em;
  display: flex;
  align-items: center;
}

.page-promotions-exclusive-vip__tier-benefits li::before {
  content: '✓';
  color: #FFD700;
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2em;
}

.page-promotions-exclusive-vip__tier-requirement {
  font-weight: bold;
  color: #007BFF;
  font-size: 1.1em;
  margin-top: 20px;
}

.page-promotions-exclusive-vip__benefits {
  background-color: #e6f7ff; /* Light blue background for this section */
  padding: 60px 20px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

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

.page-promotions-exclusive-vip__benefit-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-exclusive-vip__benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions-exclusive-vip__benefit-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for icons if SVG */
  filter: drop-shadow(0 3px 3px rgba(0,0,0,0.1));
}

.page-promotions-exclusive-vip__benefit-title {
  font-size: 1.6em;
  color: #007BFF;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-exclusive-vip__benefit-description {
  font-size: 1em;
  color: #666;
}

.page-promotions-exclusive-vip__faq {
  background-color: #ffffff;
  padding: 60px 20px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.page-promotions-exclusive-vip__faq-item {
  margin-bottom: 25px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.page-promotions-exclusive-vip__faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.page-promotions-exclusive-vip__faq-question {
  font-size: 1.3em;
  color: #007BFF;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-promotions-exclusive-vip__faq-question::after {
  content: '+';
  font-size: 1.5em;
  margin-left: 10px;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-promotions-exclusive-vip__faq-question.active::after {
  transform: rotate(45deg);
}

.page-promotions-exclusive-vip__faq-answer {
  font-size: 1.05em;
  color: #555;
  padding-left: 20px;
  margin-top: 10px;
  display: none; /* Hidden by default, toggled by JS */
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.page-promotions-exclusive-vip__faq-answer.open {
  display: block;
}

.page-promotions-exclusive-vip__cta-bottom {
  text-align: center;
  padding: 60px 20px;
  background-color: #007BFF;
  color: #FFFFFF;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-promotions-exclusive-vip__cta-bottom .page-promotions-exclusive-vip__section-title {
  color: #FFD700;
}

.page-promotions-exclusive-vip__cta-bottom .page-promotions-exclusive-vip__text-block {
  color: #e0e0e0;
  margin-bottom: 30px;
}

.page-promotions-exclusive-vip__cta-button--large {
  padding: 18px 40px;
  font-size: 1.25em;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-promotions-exclusive-vip__hero-title {
    font-size: 2.8em;
  }
  .page-promotions-exclusive-vip__section-title {
    font-size: 2em;
  }
  .page-promotions-exclusive-vip__tier-grid,
  .page-promotions-exclusive-vip__benefit-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions-exclusive-vip__hero {
    flex-direction: column;
    padding: 60px 15px;
  }
  .page-promotions-exclusive-vip__hero-title {
    font-size: 2.2em;
  }
  .page-promotions-exclusive-vip__hero-subtitle {
    font-size: 1.1em;
  }
  .page-promotions-exclusive-vip__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-promotions-exclusive-vip__intro,
  .page-promotions-exclusive-vip__tiers,
  .page-promotions-exclusive-vip__benefits,
  .page-promotions-exclusive-vip__faq,
  .page-promotions-exclusive-vip__cta-bottom {
    margin: 40px auto;
    padding: 0 15px;
  }
  .page-promotions-exclusive-vip__tier-card {
    min-height: auto;
  }
}

@media (max-width: 576px) {
  .page-promotions-exclusive-vip__hero-title {
    font-size: 1.8em;
  }
  .page-promotions-exclusive-vip__hero-subtitle {
    font-size: 1em;
  }
  .page-promotions-exclusive-vip__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions-exclusive-vip__section-title {
    font-size: 1.6em;
  }
  .page-promotions-exclusive-vip__tier-grid,
  .page-promotions-exclusive-vip__benefit-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-exclusive-vip__faq-question {
    font-size: 1.1em;
  }
  .page-promotions-exclusive-vip__faq-answer {
    font-size: 0.95em;
  }
}