/* style/vip-club-levels-benefits.css */
.page-vip-club-levels-benefits {
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Main content area, body background comes from shared.css */
  padding-bottom: 60px;
}

.page-vip-club-levels-benefits__hero-section {
  position: relative;
  width: 100%;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.page-vip-club-levels-benefits__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)); /* Dark overlay for text readability */
  z-index: 2;
}

.page-vip-club-levels-benefits__hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 20px;
  color: #ffffff;
}

.page-vip-club-levels-benefits__hero-title {
  font-size: 3.5em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
}

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

.page-vip-club-levels-benefits__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.page-vip-club-levels-benefits__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #017439; /* Brand green for titles */
  position: relative;
}

.page-vip-club-levels-benefits__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #017439;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-vip-club-levels-benefits__text-block {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #f0f0f0;
  text-align: justify;
}

.page-vip-club-levels-benefits__text-block--note {
  font-style: italic;
  color: #cccccc;
  text-align: center;
  margin-top: 30px;
}

/* Introduction Section */
.page-vip-club-levels-benefits__introduction-section {
  padding: 80px 0;
  background-color: #0d0d0d;
  color: #ffffff;
}

/* Levels Overview Section */
.page-vip-club-levels-benefits__levels-overview {
  padding: 80px 0;
  background-color: #1a1a1a;
  color: #ffffff;
}

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

.page-vip-club-levels-benefits__card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 450px;
}

.page-vip-club-levels-benefits__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-vip-club-levels-benefits__card-image {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  display: block;
}

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

.page-vip-club-levels-benefits__card-description {
  font-size: 1em;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-vip-club-levels-benefits__card-list {
  list-style: none;
  padding: 0;
  margin-top: auto;
  text-align: left;
}