/* style/promotions-vip-exclusive-benefits.css */
.page-promotions-vip-exclusive-benefits {
  font-family: 'Arial', sans-serif;
  color: #F8F8F8; /* Light text on dark background for readability */
  background-color: #1A202C;
  line-height: 1.6;
}

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

.page-promotions-vip-exclusive-benefits__hero-section {
  background: linear-gradient(135deg, #1A202C 0%, #3a414e 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-promotions-vip-exclusive-benefits__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #F8F8F8;
  position: relative;
  z-index: 1;
  font-weight: bold;
}

.page-promotions-vip-exclusive-benefits__hero-subtitle {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #CCCCCC;
  position: relative;
  z-index: 1;
}

.page-promotions-vip-exclusive-benefits__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 30px;
  color: #E0B400; /* Accent color for titles */
  font-weight: bold;
}

.page-promotions-vip-exclusive-benefits__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 50px;
  color: #CCCCCC;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-vip-exclusive-benefits__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  position: relative;
  z-index: 1;
  font-size: 1.1em;
}

.page-promotions-vip-exclusive-benefits__button--primary {
  background-color: #E0B400;
  color: #1A202C;
  border: none;
}

.page-promotions-vip-exclusive-benefits__button--primary:hover {
  background-color: #f0c510;
  transform: translateY(-3px);
}

.page-promotions-vip-exclusive-benefits__button--secondary {
  background-color: transparent;
  color: #E0B400;
  border: 2px solid #E0B400;
  margin-left: 20px;
}

.page-promotions-vip-exclusive-benefits__button--secondary:hover {
  background-color: #E0B400;
  color: #1A202C;
  transform: translateY(-3px);
}

.page-promotions-vip-exclusive-benefits__benefits-overview {
  padding: 80px 0;
  background-color: #1A202C;
}

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

.page-promotions-vip-exclusive-benefits__grid-item {
  background-color: #2A303C;
  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-exclusive-benefits__grid-item:hover {
  transform: translateY(-10px);
}

.page-promotions-vip-exclusive-benefits__icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #E0B400);
}

.page-promotions-vip-exclusive-benefits__grid-item h3 {
  color: #E0B400;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-promotions-vip-exclusive-benefits__grid-item p {
  color: #B0B0B0;
  font-size: 1em;
}

.page-promotions-vip-exclusive-benefits__vip-tiers {
  padding: 80px 0;
  background-color: #212733;
}

.page-promotions-vip-exclusive-benefits__tier-card-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.page-promotions-vip-exclusive-benefits__tier-card {
  background-color: #2A303C;
  border: 1px solid #3A404C;
  border-radius: 10px;
  padding: 30px;
  width: 280px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.page-promotions-vip-exclusive-benefits__tier-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: #E0B400;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions-vip-exclusive-benefits__tier-image {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-promotions-vip-exclusive-benefits__tier-card h3 {
  color: #E0B400;
  font-size: 2em;
  margin-bottom: 20px;
}

.page-promotions-vip-exclusive-benefits__tier-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.page-promotions-vip-exclusive-benefits__tier-card ul li {
  color: #B0B0B0;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  font-size: 1em;
}

.page-promotions-vip-exclusive-benefits__tier-card ul li::before {
  content: '✔';
  color: #E0B400;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-promotions-vip-exclusive-benefits__note {
  text-align: center;
  margin-top: 50px;
  font-size: 1.1em;
  color: #CCCCCC;
}

.page-promotions-vip-exclusive-benefits__link {
  color: #E0B400;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions-vip-exclusive-benefits__link:hover {
  color: #f0c510;
  text-decoration: underline;
}

.page-promotions-vip-exclusive-benefits__how-to-join {
  padding: 80px 0;
  background-color: #1A202C;
}

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

.page-promotions-vip-exclusive-benefits__step-item {
  background-color: #2A303C;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-vip-exclusive-benefits__step-number {
  width: 60px;
  height: 60px;
  background-color: #E0B400;
  color: #1A202C;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5em;
  font-weight: bold;
  margin: 0 auto 20px;
}

.page-promotions-vip-exclusive-benefits__step-item h3 {
  color: #E0B400;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-promotions-vip-exclusive-benefits__step-item p {
  color: #B0B0B0;
  font-size: 1em;
}

.page-promotions-vip-exclusive-benefits__cta-group {
  text-align: center;
  margin-top: 60px;
}

.page-promotions-vip-exclusive-benefits__faq {
  padding: 80px 0;
  background-color: #212733;
}

.page-promotions-vip-exclusive-benefits__accordion {
  max-width: 900px;
  margin: 50px auto 0;
}

.page-promotions-vip-exclusive-benefits__accordion-item {
  background-color: #2A303C;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-promotions-vip-exclusive-benefits__accordion-header {
  color: #E0B400;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  position: relative;
  transition: background-color 0.3s ease;
}

.page-promotions-vip-exclusive-benefits__accordion-header::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-promotions-vip-exclusive-benefits__accordion-header.active::after {
  content: '-';
  transform: translateY(-50%) rotate(0deg);
}

.page-promotions-vip-exclusive-benefits__accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promotions-vip-exclusive-benefits__accordion-content p {
  color: #B0B0B0;
  padding-bottom: 20px;
  font-size: 1em;
}

.page-promotions-vip-exclusive-benefits__cta-bottom {
  padding: 80px 0;
  background-color: #1A202C;
  text-align: center;
}

.page-promotions-vip-exclusive-benefits__cta-bottom .page-promotions-vip-exclusive-benefits__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.page-promotions-vip-exclusive-benefits__cta-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-promotions-vip-exclusive-benefits__cta-content {
  max-width: 800px;
}

.page-promotions-vip-exclusive-benefits__cta-title {
  font-size: 2.8em;
  color: #E0B400;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions-vip-exclusive-benefits__cta-description {
  font-size: 1.2em;
  color: #CCCCCC;
  margin-bottom: 40px;
}

.page-promotions-vip-exclusive-benefits .highlight {
  color: #E0B400;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-vip-exclusive-benefits__hero-title {
    font-size: 2.8em;
  }
  .page-promotions-vip-exclusive-benefits__section-title {
    font-size: 2em;
  }
  .page-promotions-vip-exclusive-benefits__cta-title {
    font-size: 2.2em;
  }
  .page-promotions-vip-exclusive-benefits__grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions-vip-exclusive-benefits__hero-title {
    font-size: 2.2em;
  }
  .page-promotions-vip-exclusive-benefits__hero-subtitle {
    font-size: 1em;
  }
  .page-promotions-vip-exclusive-benefits__section-title {
    font-size: 1.8em;
  }
  .page-promotions-vip-exclusive-benefits__section-description {
    font-size: 0.95em;
  }
  .page-promotions-vip-exclusive-benefits__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions-vip-exclusive-benefits__button--secondary {
    margin-left: 10px;
  }
  .page-promotions-vip-exclusive-benefits__grid-item, .page-promotions-vip-exclusive-benefits__tier-card, .page-promotions-vip-exclusive-benefits__step-item {
    padding: 20px;
  }
  .page-promotions-vip-exclusive-benefits__grid-item h3, .page-promotions-vip-exclusive-benefits__tier-card h3, .page-promotions-vip-exclusive-benefits__step-item h3 {
    font-size: 1.5em;
  }
  .page-promotions-vip-exclusive-benefits__accordion-header {
    font-size: 1.1em;
  }
  .page-promotions-vip-exclusive-benefits__cta-bottom .page-promotions-vip-exclusive-benefits__container {
    flex-direction: column;
  }
  .page-promotions-vip-exclusive-benefits__cta-title {
    font-size: 1.8em;
  }
  .page-promotions-vip-exclusive-benefits__cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-promotions-vip-exclusive-benefits__hero-title {
    font-size: 1.8em;
  }
  .page-promotions-vip-exclusive-benefits__hero-subtitle {
    font-size: 0.9em;
  }
  .page-promotions-vip-exclusive-benefits__button {
    width: 100%;
    margin: 10px 0;
  }
  .page-promotions-vip-exclusive-benefits__button--secondary {
    margin-left: 0;
  }
  .page-promotions-vip-exclusive-benefits__cta-group {
    flex-direction: column;
  }
  .page-promotions-vip-exclusive-benefits__section-title {
    font-size: 1.5em;
  }
  .page-promotions-vip-exclusive-benefits__cta-title {
    font-size: 1.5em;
  }
  .page-promotions-vip-exclusive-benefits__grid, .page-promotions-vip-exclusive-benefits__steps {
    grid-template-columns: 1fr;
  }
}