.page-vip-club-benefits {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
  background-color: #f8f8f8;
}

.page-vip-club-benefits__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-vip-club-benefits__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 60px; /* Adjusted padding for header offset */
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  color: #ffffff;
  overflow: hidden;
  min-height: 600px;
}

.page-vip-club-benefits__video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-vip-club-benefits__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken video for text readability */
}

.page-vip-club-benefits__video-link {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.page-vip-club-benefits__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text */
  border-radius: 10px;
}

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

.page-vip-club-benefits__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-vip-club-benefits__btn-primary {
  display: inline-block;
  background-color: #E0B400;
  color: #0A2342;
  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-benefits__btn-primary:hover {
  background-color: #ffc107; /* Lighter gold on hover */
  transform: translateY(-2px);
}

/* General Section Styles */
.page-vip-club-benefits__introduction-section,
.page-vip-club-benefits__exclusive-benefits-section,
.page-vip-club-benefits__faq-section {
  padding: 80px 0;
  background-color: #ffffff; /* Light background for content */
  color: #333333;
}

.page-vip-club-benefits__tiers-section,
.page-vip-club-benefits__how-to-join-section,
.page-vip-club-benefits__cta-section {
  padding: 80px 0;
  background-color: #0A2342; /* Dark background for key sections */
  color: #ffffff;
}

.page-vip-club-benefits__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #0A2342; /* Default for light backgrounds */
}

.page-vip-club-benefits__dark-bg .page-vip-club-benefits__section-title {
  color: #E0B400; /* Accent for dark backgrounds */
}

.page-vip-club-benefits__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Tiers Grid */
.page-vip-club-benefits__tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

.page-vip-club-benefits__card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.2);
}

.page-vip-club-benefits__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-vip-club-benefits__card-title {
  font-size: 1.8em;
  color: #E0B400;
  margin-bottom: 15px;
}

.page-vip-club-benefits__card-text {
  font-size: 1em;
  margin-bottom: 20px;
}

.page-vip-club-benefits__card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-vip-club-benefits__card-list li {
  margin-bottom: 10px;
  font-size: 0.95em;
  position: relative;
  padding-left: 25px;
  text-align: left;
}

.page-vip-club-benefits__card-list li::before {
  content: '✔';
  color: #E0B400;
  position: absolute;
  left: 0;
}

/* Benefits Grid */
.page-vip-club-benefits__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-vip-club-benefits__benefit-item {
  background-color: #fdfdfd;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  text-align: center;
}

.page-vip-club-benefits__benefit-item:hover {
  transform: translateY(-5px);
}

.page-vip-club-benefits__benefit-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-vip-club-benefits__benefit-title {
  font-size: 1.6em;
  color: #0A2342;
  margin-bottom: 10px;
}

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

/* How to Join Section */
.page-vip-club-benefits__steps-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 800px;
  text-align: left;
}

.page-vip-club-benefits__steps-list li {
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.1em;
  position: relative;
  padding-left: 50px;
}

.page-vip-club-benefits__steps-list li strong {
  color: #E0B400;
}

.page-vip-club-benefits__steps-list li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #E0B400;
  color: #0A2342;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.page-vip-club-benefits__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-vip-club-benefits__btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: #E0B400;
  border: 2px solid #E0B400;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.page-vip-club-benefits__btn-secondary:hover {
  background-color: #E0B400;
  color: #0A2342;
  transform: translateY(-2px);
}

/* FAQ Section */
.page-vip-club-benefits__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-vip-club-benefits__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #f5f5f5;
  cursor: pointer;
  font-size: 1.1em;
  color: #0A2342;
  transition: background-color 0.3s ease;
}

.page-vip-club-benefits__faq-question:hover {
  background-color: #e0e0e0;
}

.page-vip-club-benefits__faq-question h3 {
  margin: 0;
  font-size: 1.1em;
  color: #0A2342;
}

.page-vip-club-benefits__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #E0B400;
  transition: transform 0.3s ease;
}

.page-vip-club-benefits__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #ffffff;
  color: #555555;
}

.page-vip-club-benefits__faq-answer p {
  margin: 0;
  padding-bottom: 15px;
  font-size: 1em;
  text-align: left;
}

.page-vip-club-benefits__faq-item.active .page-vip-club-benefits__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show all content */
  padding: 15px 20px;
}

.page-vip-club-benefits__faq-item.active .page-vip-club-benefits__faq-toggle {
  transform: rotate(45deg); /* Change + to X or - */
}

/* CTA Section */
.page-vip-club-benefits__cta-section {
  text-align: center;
  padding: 80px 0;
  background-color: #0A2342;
  color: #ffffff;
}

.page-vip-club-benefits__cta-section .page-vip-club-benefits__section-title {
  color: #E0B400;
}

.page-vip-club-benefits__cta-section .page-vip-club-benefits__text-block {
  color: #f0f0f0;
  margin-bottom: 30px;
}

/* Color Contrast Fixes */
.page-vip-club-benefits__contrast-fix {
  background: transparent !important; /* Ensure background is handled by parent */
  color: #ffffff !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-vip-club-benefits__hero-title {
    font-size: 3em;
  }
  .page-vip-club-benefits__hero-description {
    font-size: 1.2em;
  }
  .page-vip-club-benefits__section-title {
    font-size: 2em;
  }
}

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

  .page-vip-club-benefits__hero-section {
    padding: 80px 15px 40px;
    padding-top: var(--header-offset, 120px) !important;
    min-height: 500px;
  }

  .page-vip-club-benefits__hero-title {
    font-size: 2.5em;
  }

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

  .page-vip-club-benefits__btn-primary,
  .page-vip-club-benefits__btn-secondary {
    padding: 12px 25px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  
  .page-vip-club-benefits__cta-buttons {
    flex-direction: column;
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-vip-club-benefits__introduction-section,
  .page-vip-club-benefits__tiers-section,
  .page-vip-club-benefits__exclusive-benefits-section,
  .page-vip-club-benefits__how-to-join-section,
  .page-vip-club-benefits__faq-section,
  .page-vip-club-benefits__cta-section {
    padding: 50px 0;
  }

  .page-vip-club-benefits__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-vip-club-benefits__text-block {
    font-size: 0.95em;
  }

  .page-vip-club-benefits__card {
    padding: 25px;
  }

  .page-vip-club-benefits__card-title {
    font-size: 1.5em;
  }

  .page-vip-club-benefits__benefit-item {
    padding: 25px;
  }

  .page-vip-club-benefits__benefit-title {
    font-size: 1.4em;
  }

  .page-vip-club-benefits__steps-list {
    margin-left: 15px;
    margin-right: 15px;
  }

  .page-vip-club-benefits__faq-question,
  .page-vip-club-benefits__faq-question h3 {
    font-size: 1em;
  }
  
  .page-vip-club-benefits img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-vip-club-benefits__section,
  .page-vip-club-benefits__card,
  .page-vip-club-benefits__container,
  .page-vip-club-benefits__video-section,
  .page-vip-club-benefits__video-container,
  .page-vip-club-benefits__video-wrapper,
  .page-vip-club-benefits__benefits-grid,
  .page-vip-club-benefits__tiers-grid,
  .page-vip-club-benefits__faq-list,
  .page-vip-club-benefits__faq-item,
  .page-vip-club-benefits__how-to-join-section,
  .page-vip-club-benefits__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important; /* Prevent horizontal scroll */
  }
  
  .page-vip-club-benefits__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
}

@media (max-width: 480px) {
  .page-vip-club-benefits__hero-title {
    font-size: 2em;
  }
  .page-vip-club-benefits__hero-description {
    font-size: 0.9em;
  }
  .page-vip-club-benefits__section-title {
    font-size: 1.5em;
  }
  .page-vip-club-benefits__btn-primary,
  .page-vip-club-benefits__btn-secondary {
    font-size: 0.9em;
    padding: 10px 20px;
  }
  .page-vip-club-benefits__card-title {
    font-size: 1.3em;
  }
  .page-vip-club-benefits__benefit-title {
    font-size: 1.2em;
  }
  .page-vip-club-benefits__steps-list li {
    font-size: 1em;
    padding-left: 40px;
  }
  .page-vip-club-benefits__steps-list li::before {
    width: 25px;
    height: 25px;
    font-size: 0.9em;
  }
}