.page-vip-club {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: var(--dark-bg); /* Inherit from shared.css */
}

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

.page-vip-club__section {
  padding: 60px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.page-vip-club__dark-section {
  background-color: #017439; /* Brand primary color for dark sections */
  color: #ffffff;
}

.page-vip-club__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: bold;
}

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

.page-vip-club__hero-section {
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #ffffff;
  padding-top: var(--header-offset, 120px);
}

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

.page-vip-club__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

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

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

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

.page-vip-club__btn-primary {
  display: inline-block;
  background-color: #C30808; /* Đăng ký/Đăng nhập color */
  color: #FFFF00; /* Đăng ký và Đăng nhập phông chữ */
  padding: 15px 30px;
  border-radius: 5px;
  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__btn-primary:hover {
  background-color: #a30606;
  transform: translateY(-2px);
}

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

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

.page-vip-club__card:hover {
  transform: translateY(-5px);
}

.page-vip-club__vip-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-vip-club__vip-card-title {
  font-size: 1.8em;
  color: #017439;
  margin-bottom: 15px;
}

.page-vip-club__vip-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.page-vip-club__vip-card-list li::before {
  content: '✓';
  color: #017439;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-vip-club__flex-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.page-vip-club__content-block {
  flex: 1;
}

.page-vip-club__content-subtitle {
  font-size: 1.8em;
  color: #ffffff;
  margin-bottom: 15px;
}

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

.page-vip-club__image-right {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.page-vip-club__mt-20 {
  margin-top: 20px;
}

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

.page-vip-club__offer-card {
  padding: 20px;
}

.page-vip-club__offer-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-vip-club__offer-title {
  font-size: 1.5em;
  color: #017439;
  margin-bottom: 10px;
}

.page-vip-club__offer-text {
  color: #333333;
  font-size: 1em;
}

.page-vip-club__faq-section {
  background-color: #FFFFFF;
  color: #333333;
}

.page-vip-club__faq-section .page-vip-club__section-title {
  color: #017439;
}

.page-vip-club__faq-list {
  max-width: 800px;
  margin: 40px auto 0 auto;
  text-align: left;
}

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

.page-vip-club__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: #f9f9f9;
  color: #333333;
  transition: background-color 0.3s ease;
}

.page-vip-club__faq-question:hover {
  background-color: #f0f0f0;
}

.page-vip-club__faq-toggle {
  font-size: 1.5em;
  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;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #555555;
}

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

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

.page-vip-club__cta-bottom {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

.page-vip-club__cta-bottom .page-vip-club__hero-overlay {
  z-index: -1;
}

.page-vip-club__cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-vip-club__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #ffffff;
}

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

/* Responsive styles */
@media (max-width: 1024px) {
  .page-vip-club__hero-title {
    font-size: 3em;
  }
  .page-vip-club__hero-description {
    font-size: 1.1em;
  }
  .page-vip-club__section-title {
    font-size: 2em;
  }
  .page-vip-club__image-right {
    max-width: 45%;
  }
}

@media (max-width: 768px) {
  .page-vip-club__hero-section {
    height: 60vh;
  }
  .page-vip-club__hero-title {
    font-size: 2.2em;
  }
  .page-vip-club__hero-description {
    font-size: 1em;
  }
  .page-vip-club__section-title {
    font-size: 1.8em;
  }
  .page-vip-club__section-description {
    font-size: 1em;
  }
  .page-vip-club__grid {
    grid-template-columns: 1fr;
  }
  .page-vip-club__flex-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  .page-vip-club__image-right {
    max-width: 100%;
    order: -1; /* Image appears above text on mobile */
  }
  .page-vip-club__cta-title {
    font-size: 2.2em;
  }
  .page-vip-club__cta-description {
    font-size: 1em;
  }

  /* Mobile image, video, button adaptation */
  .page-vip-club img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-vip-club__section,
  .page-vip-club__card,
  .page-vip-club__container,
  .page-vip-club__flex-wrapper,
  .page-vip-club__cta-bottom {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }
  .page-vip-club__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-vip-club__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Ensure header offset on mobile */
  }
}

@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__section-title {
    font-size: 1.5em;
  }
  .page-vip-club__cta-title {
    font-size: 1.8em;
  }
  .page-vip-club__cta-description {
    font-size: 0.9em;
  }
  .page-vip-club__btn-primary {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-vip-club__faq-question {
    font-size: 1em;
    padding: 15px;
  }
  .page-vip-club__faq-answer {
    padding: 0 15px;
  }
  .page-vip-club__faq-item.active .page-vip-club__faq-answer {
    padding: 15px;
  }
}