.page-vip-club-level-system {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light body background */
  background-color: #FFFFFF; /* Matches shared.css body background */
}

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

.page-vip-club-level-system__hero-section {
  position: relative;
  background: linear-gradient(135deg, #017439, #005f2f); /* Brand color gradient */
  color: #FFFFFF;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  min-height: 500px;
}

.page-vip-club-level-system__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.page-vip-club-level-system__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFF00; /* Register and Login font color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-vip-club-level-system__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.9;
}

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

.page-vip-club-level-system__cta-button {
  display: inline-block;
  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;
  margin: 10px;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-vip-club-level-system__btn-primary {
  background-color: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #C30808;
}

.page-vip-club-level-system__btn-primary:hover {
  background-color: #e01a1a;
  transform: translateY(-3px);
}

.page-vip-club-level-system__btn-secondary {
  background-color: #FFFFFF;
  color: #017439;
  border: 2px solid #017439;
}

.page-vip-club-level-system__btn-secondary:hover {
  background-color: #f0f0f0;
  transform: translateY(-3px);
}

.page-vip-club-level-system__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 25px;
  color: #017439;
  position: relative;
  padding-bottom: 15px;
}

.page-vip-club-level-system__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #017439;
  border-radius: 2px;
}

.page-vip-club-level-system__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #555555;
}

.page-vip-club-level-system__intro-section,
.page-vip-club-level-system__benefits-detail-section,
.page-vip-club-level-system__faq-section {
  padding: 80px 0;
  background-color: #FFFFFF;
  color: #333333;
}

.page-vip-club-level-system__dark-bg {
  background-color: #017439;
  color: #FFFFFF;
}

.page-vip-club-level-system__dark-bg .page-vip-club-level-system__section-title {
  color: #FFFFFF;
}

.page-vip-club-level-system__dark-bg .page-vip-club-level-system__section-title::after {
  background-color: #FFFFFF;
}

.page-vip-club-level-system__dark-bg .page-vip-club-level-system__section-description {
  color: #f0f0f0;
}

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

.page-vip-club-level-system__feature-item {
  text-align: center;
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-club-level-system__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-vip-club-level-system__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-vip-club-level-system__feature-title {
  font-size: 1.5em;
  color: #017439;
  margin-bottom: 15px;
}

.page-vip-club-level-system__feature-text {
  color: #666666;
}

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

.page-vip-club-level-system__level-card {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  color: #FFFFFF;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-vip-club-level-system__level-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.2);
}

.page-vip-club-level-system__level-title {
  font-size: 1.8em;
  color: #FFFF00; /* Emphasize VIP levels */
  margin-bottom: 15px;
}

.page-vip-club-level-system__level-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px auto;
  object-fit: contain;
}

.page-vip-club-level-system__level-requirement {
  font-size: 1.1em;
  margin-bottom: 20px;
  opacity: 0.8;
}

.page-vip-club-level-system__level-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.page-vip-club-level-system__level-benefits li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #f0f0f0;
}

.page-vip-club-level-system__level-benefits li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #FFFF00; /* Checkmark color */
  font-weight: bold;
}

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

.page-vip-club-level-system__benefit-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-club-level-system__benefit-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}