.page-vip-club {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

/* Hero Section */
.page-vip-club__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-vip-club__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.6); /* Slightly dim the background image for text readability */
}

.page-vip-club__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
}

.page-vip-club__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Accent color for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

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

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

/* General Section Styling */
.page-vip-club__introduction-section,
.page-vip-club__benefits-section,
.page-vip-club__how-to-join-section,
.page-vip-club__detail-pages-section,
.page-vip-club__final-cta-section {
  padding: 80px 0;
  background-color: #1A202C; /* Main dark background color */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.page-vip-club__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

/* Buttons */
.page-vip-club__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-align: center;
}

.page-vip-club__button--primary {
  background-color: #FFD700;
  color: #1A202C;
  border: 2px solid #FFD700;
}

.page-vip-club__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

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

.page-vip-club__button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

.page-vip-club__button--tertiary {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFD700;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.95em;
  padding: 10px 20px;
}

.page-vip-club__button--tertiary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.page-vip-club__button--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

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

.page-vip-club__benefit-card {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly lighter dark background */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-vip-club__benefit-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.12);
}

.page-vip-club__benefit-icon {
  width: 200px; /* Min size 200px */
  height: 200px; /* Min size 200px */
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 3px solid #FFD700;
  padding: 10px;
}

.page-vip-club__benefit-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-vip-club__benefit-description {
  font-size: 1em;
  color: #f0f0f0;
}

/* How to Join Steps */
.page-vip-club__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-vip-club__step-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-vip-club__step-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-vip-club__step-description {
  font-size: 1em;
  color: #f0f0f0;
}

.page-vip-club__cta-buttons {
  margin-top: 50px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Detail Pages Section */
.page-vip-club__detail-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-vip-club__detail-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.page-vip-club__detail-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-vip-club__detail-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-vip-club__detail-title a:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-vip-club__detail-description {
  font-size: 1em;
  color: #f0f0f0;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-vip-club__final-cta-section {
  text-align: center;
  padding-bottom: 100px;
}

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

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

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

@media (max-width: 768px) {
  .page-vip-club__hero-section {
    padding: 60px 0;
    min-height: 400px;
  }

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

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

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

  .page-vip-club__button {
    width: 80%;
    margin: 0 auto;
  }

  .page-vip-club__introduction-section,
  .page-vip-club__benefits-section,
  .page-vip-club__how-to-join-section,
  .page-vip-club__detail-pages-section,
  .page-vip-club__final-cta-section {
    padding: 60px 0;
  }

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

  .page-vip-club__text-content {
    font-size: 0.95em;
  }

  .page-vip-club__benefits-grid,
  .page-vip-club__steps-grid,
  .page-vip-club__detail-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-vip-club__benefit-icon {
    width: 200px; /* Ensure min size */
    height: 200px; /* Ensure min size */
  }

  .page-vip-club__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-vip-club__cta-buttons .page-vip-club__button {
    width: 80%;
    margin: 0 auto;
  }

  /* Critical: Prevent content overflow on mobile */
  .page-vip-club img {
    max-width: 100%;
    height: auto;
  }
}

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

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

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

  .page-vip-club__button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }

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

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

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