.page-promotions-vip-benefits {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A192F; /* Main background color */
}

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

.page-promotions-vip-benefits__hero {
  background: linear-gradient(135deg, #0A192F 0%, #304467 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid #FFD700;
}

.page-promotions-vip-benefits__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,luxury_pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

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

.page-promotions-vip-benefits__subtitle {
  font-size: 1.5em;
  color: #B0B0B0; /* Slightly lighter gray for subtitle */
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.page-promotions-vip-benefits__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold for CTA button */
  color: #0A192F; /* Dark text on gold button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  position: relative;
  z-index: 1;
  border: none;
  cursor: pointer;
}

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

.page-promotions-vip-benefits__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-promotions-vip-benefits__section:last-of-type {
  border-bottom: none;
}

.page-promotions-vip-benefits__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-promotions-vip-benefits__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-promotions-vip-benefits__intro p,
.page-promotions-vip-benefits__responsibility p,
.page-promotions-vip-benefits__how-to-join p,
.page-promotions-vip-benefits__cta p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
  color: #E0E0E0;
}

.page-promotions-vip-benefits__intro strong,
.page-promotions-vip-benefits__how-to-join strong {
  color: #FFD700;
}

.page-promotions-vip-benefits__image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-vip-benefits__image--large {
  width: 80%;
}

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

.page-promotions-vip-benefits__benefit-item {
  background-color: #1A2B42; /* Darker blue for benefit items */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-promotions-vip-benefits__benefit-item:hover {
  transform: translateY(-5px);
  background-color: #2A3E5C;
}

.page-promotions-vip-benefits__icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

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

.page-promotions-vip-benefits__benefit-item p {
  font-size: 1em;
  line-height: 1.6;
  color: #C0C0C0; /* Lighter gray for benefit text */
}

.page-promotions-vip-benefits__list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-promotions-vip-benefits__list li {
  background-color: #1A2B42;
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid #FFD700; /* Gold accent */
  border-radius: 8px;
  font-size: 1.1em;
  line-height: 1.7;
  color: #E0E0E0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-promotions-vip-benefits__list li strong {
  color: #FFD700;
}

.page-promotions-vip-benefits__cta-buttons {
  text-align: center;
  margin-top: 40px;
}

.page-promotions-vip-benefits__cta-button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-promotions-vip-benefits__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-promotions-vip-benefits__title {
    font-size: 2.5em;
  }

  .page-promotions-vip-benefits__subtitle {
    font-size: 1.2em;
  }

  .page-promotions-vip-benefits__section-title {
    font-size: 2em;
  }

  .page-promotions-vip-benefits__intro p,
  .page-promotions-vip-benefits__responsibility p,
  .page-promotions-vip-benefits__how-to-join p,
  .page-promotions-vip-benefits__cta p {
    font-size: 1em;
  }

  .page-promotions-vip-benefits__benefit-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions-vip-benefits__image--large {
    width: 95%;
  }

  .page-promotions-vip-benefits__cta-button {
    width: 100%;
    margin-bottom: 15px;
  }

  .page-promotions-vip-benefits__cta-button--secondary {
    margin-left: 0;
  }

  .page-promotions-vip-benefits__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-promotions-vip-benefits__hero {
    padding: 80px 0 60px;
  }

  .page-promotions-vip-benefits__title {
    font-size: 2em;
  }

  .page-promotions-vip-benefits__subtitle {
    font-size: 1em;
  }

  .page-promotions-vip-benefits__section-title {
    font-size: 1.8em;
  }

  .page-promotions-vip-benefits__cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }
}