.page-vip-club {
  font-family: Arial, sans-serif;
  color: #333333; /* Dark text for light body background */
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

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

.page-vip-club__section-title {
  font-size: 2.5em;
  color: #000000; /* Main brand color for titles */
  text-align: center;
  margin-bottom: 30px;
  margin-top: 60px;
  font-weight: bold;
}

.page-vip-club__section-text {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #555555;
}

.page-vip-club__button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color for CTA */
  color: #000000; /* Dark text for bright button */
  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__button:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-vip-club__button--center {
  display: block;
  margin: 40px auto 0 auto;
  text-align: center;
  max-width: 300px;
}

.page-vip-club__button--large {
  padding: 18px 40px;
  font-size: 1.2em;
  margin-top: 30px;
}

.page-vip-club__button--small {
  padding: 8px 15px;
  font-size: 0.9em;
  border-radius: 5px;
}

/* Hero Section */
.page-vip-club__hero-section {
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
  text-align: center;
  padding: 0;
  margin-bottom: 60px;
}

.page-vip-club__hero-container {
  position: relative;
  width: 100%;
  height: 600px; /* Fixed height for hero on desktop */
  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;
}

.page-vip-club__hero-content {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.6); /* Overlay for readability */
  padding: 40px;
  border-radius: 10px;
  max-width: 800px;
}

.page-vip-club__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.2;
  color: #FFFFFF;
}

.page-vip-club__hero-description {
  font-size: 1.4em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-vip-club__hero-button {
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 40px;
  font-size: 1.3em;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

/* About Section */
.page-vip-club__about-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

/* Tiers Section */
.page-vip-club__tiers-section {
  padding: 80px 0;
}

.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: #000000; /* Dark background for cards */
  color: #FFFFFF;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-vip-club__tier-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.page-vip-club__tier-image {
  width: 250px;
  height: 250px;
  object-fit: contain;
  margin-bottom: 25px;
  border-radius: 50%; /* Make images circular if desired, or keep square */
  border: 4px solid #FCBC45;
}

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

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

/* Benefits Section */
.page-vip-club__benefits-section {
  padding: 80px 0;
  background-color: #f0f0f0;
}

.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: #FFFFFF;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-vip-club__benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-vip-club__benefit-image {
  width: 250px;
  height: 250px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-vip-club__benefit-title {
  font-size: 1.6em;
  margin-bottom: 10px;
  color: #000000;
  font-weight: bold;
}

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

/* How to Join Section */
.page-vip-club__how-to-join-section {
  padding: 80px 0;
}

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

.page-vip-club__step-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

/* FAQ Section */
.page-vip-club__faq-section {
  padding: 80px 0;
  background-color: #f0f0f0;
}

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

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

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

/* CTA Section */
.page-vip-club__cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: #000000; /* Dark background for strong CTA */
  color: #FFFFFF;
}

.page-vip-club__cta-section .page-vip-club__section-title,
.page-vip-club__cta-section .page-vip-club__section-text {
  color: #FFFFFF;
}

/* Detail Pages Section */
.page-vip-club__detail-pages-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

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

.page-vip-club__detail-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.page-vip-club__detail-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-vip-club__detail-title a {
  color: #000000;
  text-decoration: none;
}

.page-vip-club__detail-title a:hover {
  color: #FCBC45;
}

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

/* Responsive Design */
@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: 2em;
  }
}

@media (max-width: 768px) {
  .page-vip-club {
    padding-top: var(--header-offset, 80px);
  }
  .page-vip-club__hero-container {
    height: 450px;
  }
  .page-vip-club__hero-title {
    font-size: 2.2em;
  }
  .page-vip-club__hero-description {
    font-size: 1em;
  }
  .page-vip-club__hero-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-vip-club__section-title {
    font-size: 1.8em;
  }
  .page-vip-club__section-text {
    font-size: 0.95em;
  }
  .page-vip-club__tiers-grid,
  .page-vip-club__benefits-grid,
  .page-vip-club__steps-grid,
  .page-vip-club__detail-list {
    grid-template-columns: 1fr;
  }
  .page-vip-club__tier-image,
  .page-vip-club__benefit-image {
    width: 200px;
    height: 200px;
  }
  /* Content area images must not be smaller than 200px */
  .page-vip-club img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-vip-club__hero-content {
    padding: 20px;
  }
  .page-vip-club__hero-title {
    font-size: 1.8em;
  }
  .page-vip-club__hero-description {
    font-size: 0.9em;
  }
  .page-vip-club__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-vip-club__section-title {
    font-size: 1.5em;
  }
  .page-vip-club__faq-question {
    font-size: 1.2em;
  }
}

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

/* No filter properties for images */
.page-vip-club img {
  filter: none; /* Explicitly ensure no filters are applied */
}