/* style/vip-privileges-tier-system.css */
.page-vip-privileges-tier-system {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
  background-color: #ffffff; /* Default background */
}

.page-vip-privileges-tier-system__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-vip-privileges-tier-system__dark-bg {
  background-color: #26A9E0; /* Brand primary color */
  color: #ffffff; /* White text for dark backgrounds */
}

.page-vip-privileges-tier-system__light-bg {
  background-color: #ffffff; /* White background */
  color: #333333; /* Dark text for light backgrounds */
}

.page-vip-privileges-tier-system__hero-section {
  position: relative;
  padding: 100px 0 60px; /* Adjust top padding for header offset */
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-vip-privileges-tier-system__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.2; /* Slightly transparent to let background color show */
}

.page-vip-privileges-tier-system__main-title {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-vip-privileges-tier-system__intro-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-privileges-tier-system__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  color: inherit;
}

.page-vip-privileges-tier-system__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
}

.page-vip-privileges-tier-system__link {
  color: inherit;
  text-decoration: underline;
}

.page-vip-privileges-tier-system__keyword {
  font-weight: bold;
  color: inherit;
}

.page-vip-privileges-tier-system__btn-primary,
.page-vip-privileges-tier-system__btn-secondary,
.page-vip-privileges-tier-system__link-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  margin: 10px;
  cursor: pointer;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-vip-privileges-tier-system__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-vip-privileges-tier-system__btn-primary:hover {
  background-color: #1a8ccb;
  border-color: #1a8ccb;
}

.page-vip-privileges-tier-system__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-vip-privileges-tier-system__btn-secondary:hover {
  background-color: #e0f4ff;
  color: #1a8ccb;
  border-color: #1a8ccb;
}

.page-vip-privileges-tier-system__link-button {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-vip-privileges-tier-system__link-button:hover {
  background-color: #ffffff;
  color: #26A9E0;
}

.page-vip-privileges-tier-system__content-section {
  padding: 60px 0;
}

.page-vip-privileges-tier-system__tiers-section {
  padding: 60px 0;
}

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

.page-vip-privileges-tier-system__card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
  color: #333333;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-vip-privileges-tier-system__card:hover {
  transform: translateY(-5px);
}

.page-vip-privileges-tier-system__card-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-vip-privileges-tier-system__card-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-vip-privileges-tier-system__card-text {
  font-size: 1em;
  text-align: left;
}

.page-vip-privileges-tier-system__privileges-section {
  padding: 60px 0;
}

.page-vip-privileges-tier-system__privileges-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-vip-privileges-tier-system__list-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #333333;
}

.page-vip-privileges-tier-system__list-icon {
  width: 100%;
  max-width: 120px;
  height: auto;
  margin-bottom: 15px;
  border-radius: 50%;
  object-fit: cover;
}

.page-vip-privileges-tier-system__list-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-vip-privileges-tier-system__list-description {
  font-size: 0.95em;
}

.page-vip-privileges-tier-system__how-to-join-section {
  padding: 60px 0;
  text-align: center;
}

.page-vip-privileges-tier-system__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.page-vip-privileges-tier-system__content-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-vip-privileges-tier-system__mt-4 {
  margin-top: 40px;
}

.page-vip-privileges-tier-system__faq-section {
  padding: 60px 0;
}

.page-vip-privileges-tier-system__faq-list {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-privileges-tier-system__faq-item {
  background-color: #f0f8ff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #333333;
}

.page-vip-privileges-tier-system__faq-item summary {
  list-style: none;
}

.page-vip-privileges-tier-system__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-vip-privileges-tier-system__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: #26A9E0;
  color: #ffffff;
  font-weight: bold;
  cursor: pointer;
  font-size: 1.15em;
}

.page-vip-privileges-tier-system__faq-question:hover {
  background-color: #1a8ccb;
}

.page-vip-privileges-tier-system__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
}

.page-vip-privileges-tier-system__faq-answer {
  padding: 20px 25px;
  background-color: #ffffff;
  border-top: 1px solid #e0e0e0;
  color: #333333;
}

.page-vip-privileges-tier-system__faq-answer p {
  margin-bottom: 0;
}

.page-vip-privileges-tier-system__cta-section {
  padding: 80px 0;
  text-align: center;
}

.page-vip-privileges-tier-system__cta-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-vip-privileges-tier-system__main-title {
    font-size: 2.5em;
  }
  .page-vip-privileges-tier-system__section-title {
    font-size: 2em;
  }
  .page-vip-privileges-tier-system__grid,
  .page-vip-privileges-tier-system__privileges-list,
  .page-vip-privileges-tier-system__steps-list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-vip-privileges-tier-system {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-vip-privileges-tier-system__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
  }
  .page-vip-privileges-tier-system__main-title {
    font-size: 2em;
  }
  .page-vip-privileges-tier-system__intro-text {
    font-size: 1em;
  }
  .page-vip-privileges-tier-system__section-title {
    font-size: 1.8em;
  }
  .page-vip-privileges-tier-system__paragraph {
    font-size: 1em;
  }
  .page-vip-privileges-tier-system__btn-primary,
  .page-vip-privileges-tier-system__btn-secondary,
  .page-vip-privileges-tier-system__link-button {
    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;
    margin: 5px 0;
  }
  .page-vip-privileges-tier-system__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-vip-privileges-tier-system__container {
    padding: 0 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-vip-privileges-tier-system__card,
  .page-vip-privileges-tier-system__list-item {
    padding: 20px;
  }
  .page-vip-privileges-tier-system img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-vip-privileges-tier-system__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-vip-privileges-tier-system__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-vip-privileges-tier-system__faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-vip-privileges-tier-system__main-title {
    font-size: 1.8em;
  }
  .page-vip-privileges-tier-system__section-title {
    font-size: 1.5em;
  }
  .page-vip-privileges-tier-system__card-title {
    font-size: 1.5em;
  }
  .page-vip-privileges-tier-system__list-title {
    font-size: 1.2em;
  }
}