.page-vip-club {
  color: #333333; /* Default text color for light 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__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-vip-club__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #0d0d0d; /* Dark background for hero section */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

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

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

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

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

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

.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.3s ease;
}

.page-vip-club__button--primary {
  background-color: #ffc107; /* Auxiliary color */
  color: #000000;
}

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

.page-vip-club__button--secondary {
  background-color: #007bff; /* Primary color */
  color: #ffffff;
  border: 2px solid #007bff;
}

.page-vip-club__button--secondary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
}

.page-vip-club__section-title {
  font-size: 2.5em;
  color: #007bff; /* Primary color */
  text-align: center;
  margin-bottom: 30px;
  padding-top: 40px;
}

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

.page-vip-club__benefits-section,
.page-vip-club__tiers-section,
.page-vip-club__how-to-join-section,
.page-vip-club__faq-section,
.page-vip-club__cta-section {
  padding: 60px 0;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eeeeee;
}

.page-vip-club__benefits-section {
  background-color: #ffffff;
}

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

.page-vip-club__benefit-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-vip-club__benefit-icon {
  width: 100%; /* Max width for images */
  height: auto;
  max-width: 400px; /* Ensure images are not too small */
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

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

.page-vip-club__benefit-description {
  color: #666666;
}

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

.page-vip-club__tier-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  border-top: 5px solid;
}

.page-vip-club__tier-card--bronze {
  border-color: #cd7f32;
}

.page-vip-club__tier-card--silver {
  border-color: #c0c0c0;
}

.page-vip-club__tier-card--gold {
  border-color: #ffc107;
}

.page-vip-club__tier-card--platinum {
  border-color: #e5e4e2;
}

.page-vip-club__tier-image {
  width: 100%;
  height: auto;
  max-width: 300px; /* Ensure images are not too small */
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-vip-club__tier-title {
  font-size: 2em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-vip-club__tier-description {
  color: #666666;
  margin-bottom: 20px;
}

.page-vip-club__tier-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  color: #555555;
}

.page-vip-club__tier-features li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-vip-club__tier-features li::before {
  content: '✔';
  color: #ffc107;
  position: absolute;
  left: 0;
}

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

.page-vip-club__step-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-vip-club__step-icon {
  width: 100%;
  height: auto;
  max-width: 300px; /* Enforce minimum size */
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

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

.page-vip-club__step-description {
  color: #666666;
  margin-bottom: 20px;
}

.page-vip-club__faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

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

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

.page-vip-club__faq-answer {
  color: #555555;
}

.page-vip-club__cta-section {
  text-align: center;
  background-color: #007bff; /* Primary color background */
  color: #ffffff;
  padding: 80px 20px;
}

.page-vip-club__cta-section .page-vip-club__section-title {
  color: #ffc107; /* Auxiliary color for title on primary background */
}

.page-vip-club__cta-section .page-vip-club__section-intro {
  color: #f0f0f0;
  margin-bottom: 40px;
}

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

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

@media (max-width: 768px) {
  .page-vip-club {
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  }
  .page-vip-club__hero-title {
    font-size: 2.5em;
  }
  .page-vip-club__hero-description {
    font-size: 1em;
  }
  .page-vip-club__hero-actions {
    flex-direction: column;
  }
  .page-vip-club__button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-vip-club__container {
    padding: 0 15px;
  }
  .page-vip-club__benefits-grid,
  .page-vip-club__tiers-grid,
  .page-vip-club__steps-grid {
    grid-template-columns: 1fr;
  }

  /* Mobile image overflow prevention */
  .page-vip-club__hero-image,
  .page-vip-club__benefit-icon,
  .page-vip-club__tier-image,
  .page-vip-club__step-icon {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-vip-club__hero-title {
    font-size: 2em;
  }
  .page-vip-club__section-title {
    font-size: 1.8em;
  }
  .page-vip-club__button {
    padding: 12px 20px;
    font-size: 1em;
  }
}