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

.page-vip-club__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #0d0d0d; /* Dark background for hero content */
}

.page-vip-club__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly dim the image to make text pop */
}

.page-vip-club__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff; /* White text for dark hero background */
  max-width: 900px;
  padding: 20px;
  z-index: 10;
}

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

.page-vip-club__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-vip-club__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #8B0000; /* Deep red text */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-vip-club__cta-button:hover {
  background-color: #e6c200; /* Darker gold on hover */
  color: #5a0000;
}

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

.page-vip-club__section-title {
  font-size: 2.5em;
  color: #8B0000; /* Deep red section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

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

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

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

.page-vip-club__tier-card,
.page-vip-club__benefit-card,
.page-vip-club__testimonial-card {
  background-color: #ffffff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 200px; /* Ensure cards are not too small */
}

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

.page-vip-club__tier-image,
.page-vip-club__benefit-icon {
  width: 100%;
  height: auto;
  max-width: 400px; /* Max width for consistency */
  margin: 0 auto 20px;
  border-radius: 8px;
  display: block;
}

.page-vip-club__tier-title,
.page-vip-club__benefit-title {
  font-size: 1.5em;
  color: #8B0000;
  margin-bottom: 10px;
}

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

.page-vip-club__cta-area {
  text-align: center;
  margin-top: 50px;
}

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

.page-vip-club__join-steps {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-vip-club__step-item {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-vip-club__step-title {
  font-size: 1.4em;
  color: #8B0000;
  margin-bottom: 15px;
}

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

.page-vip-club__step-button {
  background-color: #8B0000; /* Deep red button */
  color: #ffffff;
  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: #5a0000;
}

.page-vip-club__testimonial-quote {
  font-style: italic;
  font-size: 1.1em;
  color: #444444;
  margin-bottom: 15px;
}

.page-vip-club__testimonial-author {
  font-weight: bold;
  color: #8B0000;
}

.page-vip-club__faq-accordion {
  margin-top: 30px;
}

.page-vip-club__accordion-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-vip-club__accordion-header {
  background-color: #FFD700; /* Gold accordion header */
  color: #8B0000; /* Deep red text */
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-vip-club__accordion-header:hover {
  background-color: #e6c200;
}

.page-vip-club__accordion-content {
  padding: 0 25px;
  background-color: #fefefe;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-vip-club__accordion-content p {
  padding-top: 15px;
  padding-bottom: 15px;
  color: #555555;
}

.page-vip-club__accordion-item.active .page-vip-club__accordion-content {
  max-height: 200px; /* Adjust as needed for content height */
  padding-top: 15px;
  padding-bottom: 15px;
}

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

.page-vip-club__content-wrapper--center {
  text-align: center;
}

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

.page-vip-club__cta-button--secondary {
  background-color: #8B0000; /* Deep red button */
  color: #ffffff;
  margin-top: 30px;
}

.page-vip-club__cta-button--secondary:hover {
  background-color: #5a0000;
  color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-vip-club__main-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-content {
    width: 90%;
  }
  .page-vip-club__main-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__section-title {
    font-size: 2em;
  }
  .page-vip-club__tiers-grid,
  .page-vip-club__benefits-grid,
  .page-vip-club__testimonial-grid,
  .page-vip-club__join-steps {
    grid-template-columns: 1fr;
  }
  .page-vip-club__tier-image,
  .page-vip-club__benefit-icon {
    max-width: 100%; /* Ensure images scale down */
    height: auto;
  }
  .page-vip-club__cta-button--large,
  .page-vip-club__cta-button--secondary {
    display: block;
    margin: 15px auto;
  }
  /* Mobile content area image constraint */
  .page-vip-club img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size for content images */
    min-height: 200px;
  }
  .page-vip-club__hero-section .page-vip-club__hero-image {
    min-width: unset;
    min-height: unset;
  }
}

@media (max-width: 480px) {
  .page-vip-club__main-title {
    font-size: 2em;
  }
  .page-vip-club__hero-description {
    font-size: 0.9em;
  }
  .page-vip-club__section-title {
    font-size: 1.8em;
  }
  .page-vip-club__cta-button--large,
  .page-vip-club__cta-button--secondary {
    font-size: 1em;
    padding: 10px 20px;
  }
}