/* style/promotions-vip-exclusive-benefits.css */

.page-promotions-vip-exclusive-benefits {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* Default text color for dark backgrounds */
  background-color: #0A1931; /* Main background color */
  line-height: 1.6;
}

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

/* Hero Section */
.page-promotions-vip-exclusive-benefits__hero {
  background: linear-gradient(135deg, #0A1931, #2a3d5f); /* Darker gradient for hero */
  padding: 100px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-vip-exclusive-benefits__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-promotions-vip-exclusive-benefits__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

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

.page-promotions-vip-exclusive-benefits__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  overflow: hidden;
}

.page-promotions-vip-exclusive-benefits__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) blur(5px);
  transform: scale(1.1);
}

/* CTA Button */
.page-promotions-vip-exclusive-benefits__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A1931; /* Dark 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;
  border: none;
  cursor: pointer;
}

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

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

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

.page-promotions-vip-exclusive-benefits__cta-button--centered {
  display: block;
  margin: 40px auto 0 auto;
  width: fit-content;
}

/* Section Titles and Intros */
.page-promotions-vip-exclusive-benefits__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 60px;
}

.page-promotions-vip-exclusive-benefits__section-intro {
  font-size: 1.1em;
  color: #E0E0E0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

/* Why VIP Section */
.page-promotions-vip-exclusive-benefits__why-vip {
  padding: 80px 0;
  background-color: #0A1931;
}

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

.page-promotions-vip-exclusive-benefits__benefit-item {
  background-color: #1a2a47; /* Slightly lighter dark blue */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.page-promotions-vip-exclusive-benefits__benefit-heading {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promotions-vip-exclusive-benefits__benefit-text {
  color: #CCCCCC;
  font-size: 1em;
}

.page-promotions-vip-exclusive-benefits__benefit-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 20px;
}

/* VIP Levels Section */
.page-promotions-vip-exclusive-benefits__vip-levels {
  padding: 80px 0;
  background-color: #0A1931;
}

.page-promotions-vip-exclusive-benefits__vip-levels-image {
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin: 50px auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

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

.page-promotions-vip-exclusive-benefits__level-card {
  background-color: #1a2a47;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-vip-exclusive-benefits__level-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promotions-vip-exclusive-benefits__level-description {
  color: #CCCCCC;
  font-size: 1em;
  margin-bottom: 20px;
}

.page-promotions-vip-exclusive-benefits__level-card ul {
  list-style: none;
  padding: 0;
}

.page-promotions-vip-exclusive-benefits__level-card ul li {
  color: #E0E0E0;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

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

.page-promotions-vip-exclusive-benefits__call-to-action-text {
  color: #E0E0E0;
  text-align: center;
  margin-top: 30px;
  font-size: 1.1em;
}

/* How to Join Section */
.page-promotions-vip-exclusive-benefits__how-to-join {
  padding: 80px 0;
  background-color: #10203D; /* Slightly different dark blue */
}

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

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

.page-promotions-vip-exclusive-benefits__step-number {
  font-size: 3em;
  color: #FFD700;
  font-weight: bold;
  margin-bottom: 20px;
  background-color: #1a2a47;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  border: 3px solid #FFD700;
}

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

.page-promotions-vip-exclusive-benefits__step-text {
  color: #CCCCCC;
  font-size: 1em;
  margin-bottom: 20px;
}

.page-promotions-vip-exclusive-benefits__inline-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-promotions-vip-exclusive-benefits__inline-link:hover {
  color: #e6c200;
  text-decoration: underline;
}

/* Exclusive Promos Section */
.page-promotions-vip-exclusive-benefits__exclusive-promos {
  padding: 80px 0;
  background-color: #0A1931;
}

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

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

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

.page-promotions-vip-exclusive-benefits__promo-heading {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promotions-vip-exclusive-benefits__promo-text {
  color: #CCCCCC;
  font-size: 1em;
}

/* Commitment Section */
.page-promotions-vip-exclusive-benefits__commitment {
  padding: 80px 0;
  background-color: #10203D;
}

.page-promotions-vip-exclusive-benefits__commitment-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

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

.page-promotions-vip-exclusive-benefits__commitment-heading {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promotions-vip-exclusive-benefits__commitment-text {
  color: #CCCCCC;
  font-size: 1em;
}

/* FAQ Section */
.page-promotions-vip-exclusive-benefits__faq {
  padding: 80px 0;
  background-color: #0A1931;
}

.page-promotions-vip-exclusive-benefits__faq-items {
  margin-top: 40px;
}

.page-promotions-vip-exclusive-benefits__faq-item {
  background-color: #1a2a47;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.page-promotions-vip-exclusive-benefits__faq-question {
  font-size: 1.5em;
  color: #FFD700;
  padding: 20px 30px;
  cursor: pointer;
  position: relative;
  margin: 0;
}

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

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

.page-promotions-vip-exclusive-benefits__faq-answer {
  color: #CCCCCC;
  padding: 0 30px 20px 30px;
  font-size: 1em;
  display: none;
}

.page-promotions-vip-exclusive-benefits__faq-answer.active {
  display: block;
}

/* Final CTA Section */
.page-promotions-vip-exclusive-benefits__final-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #0A1931, #1a2a47);
  text-align: center;
}

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

/* 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;
  }
}

@media (max-width: 768px) {
  .page-promotions-vip-exclusive-benefits__hero {
    padding: 80px 0;
  }
  .page-promotions-vip-exclusive-benefits__hero-title {
    font-size: 2.2em;
  }
  .page-promotions-vip-exclusive-benefits__hero-description {
    font-size: 1em;
  }
  .page-promotions-vip-exclusive-benefits__section-title {
    font-size: 1.8em;
  }
  .page-promotions-vip-exclusive-benefits__section-intro {
    font-size: 0.95em;
  }
  .page-promotions-vip-exclusive-benefits__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .page-promotions-vip-exclusive-benefits__cta-button--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
}

@media (max-width: 576px) {
  .page-promotions-vip-exclusive-benefits__hero {
    padding: 60px 0;
  }
  .page-promotions-vip-exclusive-benefits__hero-title {
    font-size: 1.8em;
  }
  .page-promotions-vip-exclusive-benefits__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions-vip-exclusive-benefits__section-title {
    font-size: 1.6em;
  }
  .page-promotions-vip-exclusive-benefits__benefit-item,
  .page-promotions-vip-exclusive-benefits__level-card,
  .page-promotions-vip-exclusive-benefits__step-item,
  .page-promotions-vip-exclusive-benefits__promo-item,
  .page-promotions-vip-exclusive-benefits__commitment-item {
    padding: 25px;
  }
  .page-promotions-vip-exclusive-benefits__faq-question {
    font-size: 1.3em;
    padding: 15px 25px;
  }
  .page-promotions-vip-exclusive-benefits__faq-question::after {
    right: 25px;
  }
}