.page-vip-club {
  color: #333333; /* Default text color for light body background */
}

.page-vip-club__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px; /* Minimum height for hero section */
  overflow: hidden;
}

.page-vip-club__hero-container {
  position: relative;
  width: 100%;
  max-width: 1920px; /* Max width for content */
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-vip-club__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  min-height: 100%;
  z-index: 1;
}

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

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

.page-vip-club__hero-description {
  font-size: 1.3em;
  line-height: 1.6;
  margin-bottom: 30px;
}

.page-vip-club__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #FCBC45; /* Login button color for CTA */
  color: #000000; /* Dark text for gold button */
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-vip-club__cta-button:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-vip-club__cta-button--register {
  background-color: #FFFFFF; /* Register button color */
  color: #000000;
  border: 1px solid #FCBC45;
}

.page-vip-club__cta-button--register:hover {
  background-color: #f0f0f0;
}

.page-vip-club__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  line-height: 1.8;
}

.page-vip-club__section-title {
  font-size: 2.5em;
  color: #000000; /* Primary color for 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: #FCBC45;
  border-radius: 2px;
}

.page-vip-club__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

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

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

.page-vip-club__benefit-card:hover, .page-vip-club__tier-card:hover, .page-vip-club__step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-vip-club__benefit-icon, .page-vip-club__tier-image {
  width: 100%; /* Ensure image fits card */
  max-width: 400px; /* Max width for content images */
  height: auto;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-vip-club__benefit-description, .page-vip-club__tier-description, .page-vip-club__step-description {
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
}

.page-vip-club__tiers-grid .page-vip-club__tier-card {
  background-color: #000000; /* Dark background for tier cards */
  color: #FFFFFF;
}

.page-vip-club__tiers-grid .page-vip-club__tier-card .page-vip-club__tier-title {
  color: #FCBC45; /* Gold title for dark cards */
}

.page-vip-club__tiers-grid .page-vip-club__tier-card .page-vip-club__tier-description {
  color: #e0e0e0;
}

.page-vip-club__cta-section {
  background-color: #f8f8f8;
  padding: 80px 20px;
  text-align: center;
}

.page-vip-club__cta-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-vip-club__cta-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.page-vip-club__cta-content {
  flex: 1;
  max-width: 500px;
  text-align: left;
}

.page-vip-club__cta-title {
  font-size: 2.8em;
  color: #000000;
  margin-bottom: 20px;
}

.page-vip-club__cta-description {
  font-size: 1.2em;
  line-height: 1.7;
  color: #555555;
  margin-bottom: 30px;
}

.page-vip-club__cta-button--explore {
  background-color: #FCBC45;
  color: #000000;
  margin-right: 15px;
}

.page-vip-club__cta-button--login {
  background-color: #000000;
  color: #FFFFFF;
  border: 1px solid #FCBC45;
}

.page-vip-club__cta-button--login:hover {
  background-color: #333333;
}

.page-vip-club__related-links {
  background-color: #000000; /* Dark background for related links */
  padding: 60px 20px;
}

.page-vip-club__related-links .page-vip-club__section-title {
  color: #FFFFFF;
}

.page-vip-club__related-links .page-vip-club__section-title::after {
  background-color: #FCBC45;
}

.page-vip-club__links-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.page-vip-club__related-link {
  display: block;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white */
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  text-align: center;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-vip-club__related-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

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

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

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

  .page-vip-club__hero-content {
    padding: 25px;
  }

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

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

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

  .page-vip-club__content-area {
    padding: 40px 15px;
  }

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

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

  .page-vip-club__benefit-card, .page-vip-club__tier-card, .page-vip-club__step-card {
    padding: 20px;
  }

  .page-vip-club__benefit-icon, .page-vip-club__tier-image, .page-vip-club__cta-image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }

  .page-vip-club__cta-wrapper {
    flex-direction: column;
  }

  .page-vip-club__cta-content {
    text-align: center;
    max-width: 100%;
  }

  .page-vip-club__cta-button--explore {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

/* Ensure all images within .page-vip-club are not small icons */
.page-vip-club img {
  min-width: 200px;
  min-height: 200px;
}

@media (max-width: 768px) {
  .page-vip-club img {
    max-width: 100%;
    height: auto;
  }
}