.page-vip-club {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default text color for light background */
  background-color: var(--background-color, #FFFFFF); /* Inherit from shared, default to white */
  line-height: 1.6;
}

/* Hero Section */
.page-vip-club__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image above text */
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px 60px; /* Adjust padding as per "fixed header and main spacing" rule */
  background-color: #017439; /* Primary brand color for dark background */
  color: #FFFFFF; /* Light text for dark background */
}

.page-vip-club__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px; /* Space between image and text */
}

.page-vip-club__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-vip-club__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-vip-club__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFF00; /* Custom color for register/login font, used for prominence */
  margin-bottom: 20px;
  /* No fixed font-size, rely on clamp if needed, but for now just weight/line-height */
}

.page-vip-club__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

/* General Section Styling */
.page-vip-club__section {
  padding: 80px 20px;
  text-align: center;
}

.page-vip-club__light-bg {
  background-color: #FFFFFF;
  color: #333333;
}

.page-vip-club__dark-bg {
  background-color: #017439;
  color: #FFFFFF;
}

.page-vip-club__section-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: inherit; /* Inherit from section background */
}

.page-vip-club__dark-bg .page-vip-club__section-title {
  color: #FFFF00; /* Custom color for prominence on dark background */
}

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

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

.page-vip-club__text-block p {
  margin-bottom: 15px;
}

/* Grid Layouts */
.page-vip-club__grid {
  display: grid;
  gap: 30px;
  margin-top: 40px;
}

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

.page-vip-club__privileges-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  text-align: left;
}

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

/* Card Styling */
.page-vip-club__card {
  background-color: #ffffff;
  color: #333333;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding-bottom: 20px;
}

.page-vip-club__dark-bg .page-vip-club__card {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white on dark bg */
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-vip-club__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency in cards */
  object-fit: cover;
  margin-bottom: 20px;
  display: block; /* Ensure it's a block element */
}

.page-vip-club__card-title {
  font-size: 1.8em;
  font-weight: 600;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-vip-club__card-text {
  font-size: 1em;
  padding: 0 15px;
  flex-grow: 1;
}

/* Privilege Items */
.page-vip-club__privilege-item {
  background-color: #ffffff;
  color: #333333;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.page-vip-club__privilege-image {
  width: 100%;
  height: 280px; /* Consistent height for privilege images */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-vip-club__privilege-title {
  font-size: 1.6em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #017439; /* Brand color for titles */
}

.page-vip-club__privilege-text {
  font-size: 1em;
}}