.page-vip-club {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Text color for dark body background */
  background-color: transparent; /* Body background from shared.css */
}

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

.page-vip-club__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for main titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-vip-club__section-description {
  font-size: 1.1em;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-club__section-footer-text {
  font-size: 1em;
  color: #cccccc;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

/* Hero Section */
.page-vip-club__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 700px; /* Adjust height as needed */
  overflow: hidden;
  padding-bottom: 0; /* Handled by padding-top from header-offset */
}

.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-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
  z-index: 2;
}

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

.page-vip-club__hero-title {
  font-size: 3.8em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

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

/* Buttons */
.page-vip-club__btn-primary,
.page-vip-club__btn-secondary,
.page-vip-club__btn-tertiary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  border: none;
}

.page-vip-club__btn-primary {
  background-color: #FFD700;
  color: #000080; /* Dark blue for contrast */
}

.page-vip-club__btn-primary:hover {
  background-color: #e6c200;
  color: #000050;
}

.page-vip-club__btn-secondary {
  background-color: #000080;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-vip-club__btn-secondary:hover {
  background-color: #000050;
  color: #fff;
  border-color: #fff;
}

.page-vip-club__btn-tertiary {
  background-color: transparent;
  color: #FFD700;
  border: 1px solid #FFD700;
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-vip-club__btn-tertiary:hover {
  background-color: #FFD700;
  color: #000080;
}

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

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

.page-vip-club__benefit-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-vip-club__benefit-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.1);
}

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

.page-vip-club__benefit-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-vip-club__benefit-text {
  color: #cccccc;
  font-size: 1em;
}

/* Tiers Section */
.page-vip-club__tiers-section {
  padding: 80px 0;
  background-color: #000080;
  position: relative;
  overflow: hidden;
}

.page-vip-club__tiers-section .page-vip-club__section-title,
.page-vip-club__tiers-section .page-vip-club__section-description {
  color: #ffffff;
}

.page-vip-club__tiers-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.page-vip-club__tier-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  width: 220px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.page-vip-club__tier-card:hover {
  border-color: #FFD700;
  transform: translateY(-5px);
}

.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: #FFD700;
}
.page-vip-club__tier-card--platinum {
  border-color: #e5e4e2;
}
.page-vip-club__tier-card--diamond {
  border-color: #b9f2ff;
}

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

.page-vip-club__tier-level {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 20px;
}

.page-vip-club__tier-benefits {
  list-style: none;
  padding: 0;
  color: #cccccc;
  text-align: left;
}

.page-vip-club__tier-benefits li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

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

.page-vip-club__tiers-image {
  display: block;
  margin: 60px auto 0 auto;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

/* Offers Section */
.page-vip-club__offers-section {
  padding: 80px 0;
  background-color: #0a0a0a;
}

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

.page-vip-club__offer-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-vip-club__offer-card:hover {
  transform: translateY(-10px);
}

.page-vip-club__offer-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-vip-club__offer-card h3 {
  font-size: 1.6em;
  color: #FFD700;
  margin: 20px 20px 10px 20px;
}

.page-vip-club__offer-card p {
  color: #cccccc;
  font-size: 1em;
  padding: 0 20px;
  flex-grow: 1;
}

.page-vip-club__offer-card .page-vip-club__btn-tertiary {
  margin: 20px;
  align-self: flex-start;
}

.page-vip-club__offers-image {
  display: block;
  margin: 60px auto 0 auto;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

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

.page-vip-club__how-to-join-section .page-vip-club__section-title,
.page-vip-club__how-to-join-section .page-vip-club__section-description {
  color: #ffffff;
}

.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: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-vip-club__step-number {
  background-color: #FFD700;
  color: #000080;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

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

.page-vip-club__step-text {
  color: #cccccc;
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-vip-club__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

.page-vip-club__cta-text {
  font-size: 1.3em;
  color: #ffffff;
  margin-bottom: 30px;
}

/* Testimonials Section */
.page-vip-club__testimonials-section {
  padding: 80px 0;
  background-color: #0a0a0a;
}

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

.page-vip-club__testimonial-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-vip-club__testimonial-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid #FFD700;
}

.page-vip-club__testimonial-text {
  font-style: italic;
  color: #f0f0f0;
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-vip-club__testimonial-author {
  font-weight: bold;
  color: #FFD700;
  font-size: 1em;
}

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

.page-vip-club__faq-section .page-vip-club__section-title,
.page-vip-club__faq-section .page-vip-club__section-description {
  color: #ffffff;
}

.page-vip-club__faq-list {
  margin-top: 50px;
}

.page-vip-club__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-vip-club__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.08);
  transition: background-color 0.3s ease;
}

.page-vip-club__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

.page-vip-club__faq-title {
  font-size: 1.4em;
  color: #FFD700;
  margin: 0;
  flex-grow: 1;
  text-align: left;
}

.page-vip-club__faq-toggle {
  font-size: 1.8em;
  color: #FFD700;
  font-weight: bold;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-vip-club__faq-item.active .page-vip-club__faq-toggle {
  transform: rotate(45deg);
}

.page-vip-club__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: #cccccc;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-vip-club__faq-item.active .page-vip-club__faq-answer {
  max-height: 1000px !important; /* Sufficiently large value */
  padding: 20px;
}

.page-vip-club__faq-answer p {
  margin: 0;
  color: #cccccc;
}

.page-vip-club__faq-image {
  display: block;
  margin: 60px auto 0 auto;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

/* Final CTA Section */
.page-vip-club__cta-final-section {
  padding: 80px 0;
  background-color: #0a0a0a;
  text-align: center;
}

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

@media (max-width: 768px) {
  .page-vip-club {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-vip-club__hero-section {
    height: auto;
    min-height: 500px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure offset on mobile */
  }

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

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

  .page-vip-club__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-vip-club__btn-primary,
  .page-vip-club__btn-secondary,
  .page-vip-club__btn-tertiary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-vip-club__hero-cta-buttons,
  .page-vip-club__cta-bottom {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

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

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

  .page-vip-club__benefits-grid,
  .page-vip-club__tiers-grid,
  .page-vip-club__offers-grid,
  .page-vip-club__steps-grid,
  .page-vip-club__testimonials-grid {
    grid-template-columns: 1fr;
  }

  .page-vip-club__tier-card {
    width: 100%;
  }

  .page-vip-club__benefit-icon,
  .page-vip-club__offer-image,
  .page-vip-club__tiers-image,
  .page-vip-club__faq-image,
  .page-vip-club__testimonial-avatar {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-vip-club__container,
  .page-vip-club__benefits-section,
  .page-vip-club__tiers-section,
  .page-vip-club__offers-section,
  .page-vip-club__how-to-join-section,
  .page-vip-club__testimonials-section,
  .page-vip-club__faq-section,
  .page-vip-club__cta-final-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-vip-club__offer-card .page-vip-club__btn-tertiary {
    width: calc(100% - 40px);
    margin: 20px;
  }

  .page-vip-club__faq-question {
    padding: 15px;
  }

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

  .page-vip-club__faq-answer {
    padding: 0 15px;
  }

  .page-vip-club__faq-item.active .page-vip-club__faq-answer {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .page-vip-club__hero-title {
    font-size: 1.8em;
  }
  .page-vip-club__section-title {
    font-size: 1.5em;
  }
  .page-vip-club__benefit-title, .page-vip-club__tier-title, .page-vip-club__offer-title, .page-vip-club__step-title {
    font-size: 1.4em;
  }
}