.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); /* Ensures content starts below fixed header */
}

.page-vip-club__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #f8f8f8;
  overflow: hidden;
}

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

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

.page-vip-club__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FCBC45; /* Highlight title with a golden hue */
  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;
}

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

.page-vip-club__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-vip-club__button--register {
  background-color: #FFFFFF; /* Register button as specified */
  color: #000000; /* Dark text for light button */
  border: 2px solid #FFFFFF;
}

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

.page-vip-club__button--login {
  background-color: #FCBC45; /* Login button as specified */
  color: #000000; /* Dark text for golden button */
  border: 2px solid #FCBC45;
}

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

.page-vip-club__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

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

.page-vip-club__benefits-section {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

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

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

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

.page-vip-club__benefit-icon {
  width: 200px; /* Minimum 200px */
  height: 150px; /* Minimum 200px, adjust aspect ratio */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

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

.page-vip-club__card-description {
  font-size: 1em;
  color: #666666;
}

.page-vip-club__tiers-section {
  padding: 60px 20px;
  background-color: #f8f8f8;
}

.page-vip-club__tier-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 40px auto;
}

.page-vip-club__tier-card {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-top: 5px solid #FCBC45;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-club__tier-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.page-vip-club__tier-level {
  font-size: 2em;
  color: #000000;
  margin-bottom: 15px;
}

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

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

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

.page-vip-club__tier-features li::before {
  content: '✓';
  color: #FCBC45;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.page-vip-club__more-info {
  max-width: 800px;
  margin: 40px auto;
  padding: 30px;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  text-align: center;
}

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

.page-vip-club__more-info-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
}

.page-vip-club__faq-section {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.page-vip-club__faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

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

.page-vip-club__accordion-header {
  background-color: #f0f0f0;
  color: #000000;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

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

.page-vip-club__accordion-header::after {
  content: '+';
  float: right;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-vip-club__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

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

.page-vip-club__accordion-content p {
  margin: 15px 0;
  color: #555555;
}

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

.page-vip-club__cta-section .page-vip-club__section-title {
  color: #FCBC45; /* Golden title on dark background */
}

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

.page-vip-club__button--cta {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-vip-club__button--cta:hover {
  background-color: #e6a73c;
  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.2em;
  }
  .page-vip-club__section-title {
    font-size: 2em;
  }
  .page-vip-club__benefit-icon {
    width: 180px;
    height: 135px;
  }
}

@media (max-width: 768px) {
  .page-vip-club {
    padding-top: var(--header-offset, 100px); /* Adjust for smaller header on mobile */
  }
  .page-vip-club__hero-section {
    padding: 40px 15px;
  }
  .page-vip-club__hero-content {
    padding: 30px;
  }
  .page-vip-club__hero-title {
    font-size: 2.2em;
  }
  .page-vip-club__hero-description {
    font-size: 1em;
  }
  .page-vip-club__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-vip-club__button {
    width: 100%;
    max-width: 280px;
  }
  .page-vip-club__section-title {
    font-size: 1.8em;
  }
  .page-vip-club__section-intro {
    font-size: 0.95em;
  }
  .page-vip-club__benefits-grid, .page-vip-club__tier-cards {
    grid-template-columns: 1fr;
  }
  .page-vip-club__benefit-icon {
    width: 200px; /* Ensure images are not smaller than 200px */
    height: 150px;
  }
  .page-vip-club__accordion-header {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-vip-club__accordion-content {
    padding: 0 20px;
  }
  .page-vip-club__cta-section {
    padding: 60px 15px;
  }
  /* Ensure all content images do not overflow on mobile */
  .page-vip-club img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-vip-club__hero-title {
    font-size: 1.8em;
  }
  .page-vip-club__hero-description {
    font-size: 0.9em;
  }
  .page-vip-club__hero-content {
    padding: 20px;
  }
  .page-vip-club__section-title {
    font-size: 1.5em;
  }
  .page-vip-club__button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-vip-club__benefit-icon {
    width: 200px;
    height: 150px;
  }
}