.page-vip-club {
  color: #ffffff; /* Light text for dark body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-bottom: 60px; /* Add some padding at the bottom for overall content */
}

.page-vip-club__section {
  padding: 80px 0;
}

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

.page-vip-club__section-title {
  font-size: 2.8em;
  color: #E94560; /* Accent color for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-vip-club__sub-title {
  font-size: 2em;
  color: #E94560;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-vip-club__section-text {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: rgba(255, 255, 255, 0.8);
}

.page-vip-club__section-text--small {
  font-size: 0.9em;
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.6);
}

/* Hero Section */
.page-vip-club__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 700px;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #1A1A2E;
}

.page-vip-club__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-vip-club__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Slightly dim the background image */
}

.page-vip-club__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-vip-club__hero-title {
  font-size: 4em;
  color: #E94560;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-vip-club__hero-description {
  font-size: 1.3em;
  color: #ffffff;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-club__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-vip-club__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1.1em;
}

.page-vip-club__button--primary {
  background-color: #E94560;
  color: #ffffff;
  border: 2px solid #E94560;
}

.page-vip-club__button--primary:hover {
  background-color: #c93a50;
  border-color: #c93a50;
}

.page-vip-club__button--secondary {
  background-color: transparent;
  color: #E94560;
  border: 2px solid #E94560;
}

.page-vip-club__button--secondary:hover {
  background-color: #E94560;
  color: #ffffff;
}

.page-vip-club__button--tertiary {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.page-vip-club__button--tertiary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Tiers Section */
.page-vip-club__tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-vip-club__tier-card {
  background-color: #1A1A2E;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  border: 1px solid rgba(233, 69, 96, 0.3);
}

.page-vip-club__tier-card:hover {
  transform: translateY(-10px);
}

.page-vip-club__tier-image {
  width: 250px;
  height: 250px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-vip-club__tier-title {
  font-size: 1.8em;
  color: #E94560;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-vip-club__tier-description {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.page-vip-club__tier-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-vip-club__tier-benefits li {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 10px 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 0.95em;
  color: #ffffff;
}

/* Benefits Section */
.page-vip-club__benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.page-vip-club__benefit-item {
  background-color: #1A1A2E;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(233, 69, 96, 0.3);
}

.page-vip-club__benefit-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 25px;
}

.page-vip-club__benefit-title {
  font-size: 1.8em;
  color: #E94560;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-vip-club__benefit-description {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.7);
}

/* Why Choose Section */
.page-vip-club__advantage-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto 30px auto;
  text-align: left;
}

.page-vip-club__advantage-item {
  background-color: rgba(26, 26, 46, 0.8); /* Slightly lighter background for list items */
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #ffffff;
  border-left: 5px solid #E94560;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-vip-club__advantage-item strong {
  color: #E94560;
}

/* FAQ Section */
.page-vip-club__faq-list {
  max-width: 900px;
  margin: 50px auto 0 auto;
}

.page-vip-club__faq-item {
  background-color: #1A1A2E;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  border: 1px solid rgba(233, 69, 96, 0.3);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-vip-club__faq-question {
  font-size: 1.3em;
  color: #E94560;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

.page-vip-club__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-vip-club__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-vip-club__faq-answer {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.7);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

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

/* CTA Section */
.page-vip-club__cta-section {
  background-color: #1A1A2E;
  padding: 100px 0;
  text-align: center;
  border-top: 2px solid #E94560;
}

.page-vip-club__cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-vip-club__hero-title {
    font-size: 3.5em;
  }
}

@media (max-width: 768px) {
  .page-vip-club__hero-section {
    min-height: 500px;
    padding: 40px 20px;
  }

  .page-vip-club__hero-title {
    font-size: 2.5em;
  }

  .page-vip-club__hero-description {
    font-size: 1.1em;
  }

  .page-vip-club__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-vip-club__button {
    width: 100%;
    max-width: 300px;
  }

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

  .page-vip-club__sub-title {
    font-size: 1.6em;
  }

  .page-vip-club__section-text {
    font-size: 1em;
  }

  .page-vip-club__tiers-grid, .page-vip-club__benefit-grid {
    grid-template-columns: 1fr;
  }

  .page-vip-club__tier-image, .page-vip-club__benefit-image {
    width: 100%;
    height: auto; /* Ensure images are responsive and not smaller than 200px */
    min-width: 200px;
    min-height: 200px;
  }

  .page-vip-club__advantage-item {
    font-size: 1em;
  }

  .page-vip-club__faq-question {
    font-size: 1.1em;
  }

  /* Ensure all images within .page-vip-club are responsive and do not overflow */
  .page-vip-club img {
    max-width: 100%;
    height: auto;
  }

  .page-vip-club {
    overflow-x: hidden; /* Prevent horizontal scroll */
  }
}

@media (max-width: 480px) {
  .page-vip-club__hero-title {
    font-size: 2em;
  }

  .page-vip-club__hero-description {
    font-size: 0.95em;
  }

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

  .page-vip-club__sub-title {
    font-size: 1.4em;
  }

  .page-vip-club__button {
    padding: 12px 20px;
    font-size: 1em;
  }
}