/* style/vip-club-privileges-details.css */
.page-vip-club-privileges-details {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #121212; /* Inherited from shared.css body */
}

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

.page-vip-club-privileges-details__container--center {
  text-align: center;
}

.page-vip-club-privileges-details__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px);
  padding-bottom: 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, #26A9E0, #1a7bb0);
}

.page-vip-club-privileges-details__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.3;
}

.page-vip-club-privileges-details__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
  line-height: 1.2;
}

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

.page-vip-club-privileges-details__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-vip-club-privileges-details__btn-primary,
.page-vip-club-privileges-details__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-vip-club-privileges-details__btn-primary {
  background-color: #EA7C07; /* Login color */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-vip-club-privileges-details__btn-primary:hover {
  background-color: #d46c00;
  border-color: #d46c00;
}

.page-vip-club-privileges-details__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-vip-club-privileges-details__btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.page-vip-club-privileges-details__btn-primary--large {
  padding: 18px 35px;
  font-size: 1.1em;
}

.page-vip-club-privileges-details__section {
  padding: 80px 0;
}

.page-vip-club-privileges-details__dark-bg {
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-vip-club-privileges-details__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-vip-club-privileges-details__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-vip-club-privileges-details__dark-bg .page-vip-club-privileges-details__section-title {
  color: #26A9E0;
}

.page-vip-club-privileges-details__light-bg .page-vip-club-privileges-details__section-title {
  color: #26A9E0;
}

.page-vip-club-privileges-details__subsection-title {
  font-size: 1.8em;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
  color: #26A9E0;
}

.page-vip-club-privileges-details__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-vip-club-privileges-details__privilege-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-vip-club-privileges-details__list-item {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly visible on dark background */
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 1.1em;
  line-height: 1.7;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-vip-club-privileges-details__light-bg .page-vip-club-privileges-details__list-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  color: #333333;
}

.page-vip-club-privileges-details__list-item::before {
  content: '✔';
  color: #26A9E0;
  font-weight: bold;
  font-size: 1.2em;
  margin-top: 2px;
  flex-shrink: 0;
}

.page-vip-club-privileges-details__content-image {
  display: block;
  margin: 40px auto;
  border-radius: 12px;
  max-width: 100%;
  height: auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-vip-club-privileges-details__light-bg .page-vip-club-privileges-details__content-image {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-vip-club-privileges-details__cta-section {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(135deg, #26A9E0, #1a7bb0);
  color: #ffffff;
}

.page-vip-club-privileges-details__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: bold;
}

.page-vip-club-privileges-details__cta-description {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

/* FAQ Styles */
.page-vip-club-privileges-details__faq-list {
  margin-top: 40px;
}

.page-vip-club-privileges-details__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.page-vip-club-privileges-details__light-bg .page-vip-club-privileges-details__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
}

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

.page-vip-club-privileges-details__light-bg .page-vip-club-privileges-details__faq-question {
  color: #333333;
  background-color: #e8e8e8;
}

.page-vip-club-privileges-details__faq-question:hover {
  background-color: #3a3a3a;
}

.page-vip-club-privileges-details__light-bg .page-vip-club-privileges-details__faq-question:hover {
  background-color: #dcdcdc;
}

.page-vip-club-privileges-details__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

.page-vip-club-privileges-details__light-bg .page-vip-club-privileges-details__faq-answer {
  color: #555555;
}

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

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

.page-vip-club-privileges-details__faq-answer p {
  margin: 0 0 10px 0;
}

.page-vip-club-privileges-details__faq-answer p:last-child {
  margin-bottom: 0;
}

.page-vip-club-privileges-details__link {
  color: #26A9E0;
  text-decoration: none;
}

.page-vip-club-privileges-details__link:hover {
  text-decoration: underline;
}

/* Ensure all content area images are not too small */
.page-vip-club-privileges-details img {
  min-width: 200px;
  min-height: 200px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-vip-club-privileges-details__main-title {
    font-size: 3em;
  }
  .page-vip-club-privileges-details__intro-description {
    font-size: 1.1em;
  }
  .page-vip-club-privileges-details__section-title {
    font-size: 2em;
  }
  .page-vip-club-privileges-details__subsection-title {
    font-size: 1.6em;
  }
  .page-vip-club-privileges-details__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-vip-club-privileges-details {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .page-vip-club-privileges-details__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
  }

  .page-vip-club-privileges-details__main-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

  .page-vip-club-privileges-details__intro-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-vip-club-privileges-details__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-vip-club-privileges-details__btn-primary,
  .page-vip-club-privileges-details__btn-secondary,
  .page-vip-club-privileges-details a[class*="button"],
  .page-vip-club-privileges-details a[class*="btn"] {
    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-privileges-details__section {
    padding: 50px 0;
  }

  .page-vip-club-privileges-details__section-title {
    font-size: 1.8em;
    margin-bottom: 25px;
  }

  .page-vip-club-privileges-details__subsection-title {
    font-size: 1.4em;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-vip-club-privileges-details__text-block,
  .page-vip-club-privileges-details__list-item,
  .page-vip-club-privileges-details__faq-question,
  .page-vip-club-privileges-details__faq-answer p {
    font-size: 1em;
  }

  .page-vip-club-privileges-details__list-item {
    padding: 15px;
  }

  .page-vip-club-privileges-details__content-image {
    margin: 30px auto;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-vip-club-privileges-details__section,
  .page-vip-club-privileges-details__card,
  .page-vip-club-privileges-details__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-vip-club-privileges-details__cta-section {
    padding: 60px 0;
  }

  .page-vip-club-privileges-details__cta-title {
    font-size: 2em;
  }

  .page-vip-club-privileges-details__cta-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-vip-club-privileges-details__faq-question {
    padding: 15px;
    font-size: 1.1em;
  }

  .page-vip-club-privileges-details__faq-answer {
    padding: 0 15px;
  }

  .page-vip-club-privileges-details__faq-item.active .page-vip-club-privileges-details__faq-answer {
    padding: 15px;
  }
}