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

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

.page-vip-club__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
  min-height: 500px;
}

.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;
  filter: brightness(0.5); /* Darken image for text readability, not changing color */
}

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

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

.page-vip-club__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-vip-club__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 15px 30px;
  border-radius: 8px;
  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-vip-club__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-vip-club__overview-section,
.page-vip-club__tiers-section,
.page-vip-club__exclusive-promotions,
.page-vip-club__how-to-join,
.page-vip-club__faq-section,
.page-vip-club__cta-section {
  padding: 60px 0;
  background-color: #1A202C; /* Main brand color for sections */
  margin-bottom: 20px;
  border-radius: 10px;
}

.page-vip-club__overview-section {
  background-color: rgba(255, 255, 255, 0.05);
}

.page-vip-club__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  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__section-text {
  font-size: 1.1em;
  color: #f0f0f0;
  max-width: 900px;
  margin: 0 auto 25px auto;
  text-align: justify;
}

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

.page-vip-club__tier-card,
.page-vip-club__promo-card,
.page-vip-club__step-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-vip-club__tier-image,
.page-vip-club__promo-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 2px solid #FFD700;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

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

.page-vip-club__tier-description,
.page-vip-club__promo-description,
.page-vip-club__step-description {
  font-size: 1em;
  color: #f0f0f0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-vip-club__tier-features {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  text-align: left;
  width: 100%;
}

.page-vip-club__tier-features li {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 10px 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  color: #f0f0f0;
}

.page-vip-club__tier-features li::before {
  content: '✓';
  color: #FFD700;
  margin-right: 10px;
  font-weight: bold;
}

.page-vip-club__tiers-cta,
.page-vip-club__promotions-cta,
.page-vip-club__how-to-join-note {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
  color: #e0e0e0;
}

.page-vip-club__tiers-button,
.page-vip-club__promotions-button {
  margin-top: 30px;
}

.page-vip-club__step-icon {
  background-color: #FFD700;
  color: #1A202C;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-vip-club__step-button {
  margin-top: auto; /* Push button to bottom */
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
}

.page-vip-club__step-button:hover {
  background-color: #e6c200;
}

.page-vip-club__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-vip-club__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-vip-club__faq-answer {
  font-size: 1em;
  color: #e0e0e0;
}

.page-vip-club__final-cta {
  margin-top: 40px;
}

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

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

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

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

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

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

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

  .page-vip-club__overview-section,
  .page-vip-club__tiers-section,
  .page-vip-club__exclusive-promotions,
  .page-vip-club__how-to-join,
  .page-vip-club__faq-section,
  .page-vip-club__cta-section {
    padding: 40px 0;
  }

  .page-vip-club__section-title {
    font-size: 1.8em;
    margin-bottom: 25px;
  }

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

  .page-vip-club__tiers-grid,
  .page-vip-club__promotions-grid,
  .page-vip-club__steps-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-vip-club__tier-card,
  .page-vip-club__promo-card,
  .page-vip-club__step-card {
    padding: 25px;
  }

  .page-vip-club__tier-image,
  .page-vip-club__promo-image {
    height: 200px;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
  }

  .page-vip-club__tier-title,
  .page-vip-club__promo-title,
  .page-vip-club__step-title {
    font-size: 1.5em;
  }

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

  .page-vip-club img {
    max-width: 100%;
    height: auto;
  }
}

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

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

  .page-vip-club__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

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

  .page-vip-club__step-icon {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
  }
}