:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --button-register-bg: #C30808; /* Custom color for register/login */
  --button-register-text: #FFFFFF; /* Adjusted for contrast, originally #FFFF00 */
  --background-light: #f9f9f9;
  --border-color: #e0e0e0;
}

.page-vip-club {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark); /* Default text color for light body background */
  background-color: var(--secondary-color); /* Default white background */
}

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

.page-vip-club__section {
  padding: 60px 0;
  text-align: center;
}

.page-vip-club__heading {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.page-vip-club__heading--white {
  color: var(--text-light);
}

.page-vip-club__sub-heading {
  font-size: 24px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-vip-club__sub-heading--white {
  color: var(--text-light);
}

.page-vip-club__paragraph {
  font-size: 18px;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-club__paragraph--white {
  color: var(--text-light);
}

.page-vip-club__list {
  list-style: none;
  padding: 0;
  margin: 20px auto;
  max-width: 800px;
  text-align: left;
}

.page-vip-club__list li {
  background: var(--background-light);
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 5px;
  font-size: 17px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.page-vip-club__list--white li {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-vip-club__list li::before {
  content: '✅';
  margin-right: 10px;
  font-size: 1.2em;
  color: var(--primary-color);
}

.page-vip-club__list--white li::before {
  color: var(--text-light);
}

.page-vip-club__text-link {
  color: #007bff; /* Standard link color */
  text-decoration: underline;
}

.page-vip-club__text-link:hover {
  color: var(--primary-color);
}

/* HERO Section */
.page-vip-club__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background: linear-gradient(135deg, var(--primary-color), #00A652); /* Dark green to lighter green */
  color: var(--text-light);
}

.page-vip-club__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-vip-club__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-vip-club__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px; /* Minimum size */
  min-height: 200px; /* Minimum size */
}

.page-vip-club__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-vip-club__hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-light);
}

.page-vip-club__hero-description {
  font-size: 22px;
  margin-bottom: 30px;
  color: var(--text-light);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Button */
.page-vip-club__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--button-register-bg); /* Custom red for register/login */
  color: var(--button-register-text); /* White text for contrast */
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: none; /* No border for these buttons */
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-vip-club__cta-button:hover {
  background: #A30606; /* Slightly darker red on hover */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-vip-club__cta-button--primary {
  background: var(--button-register-bg);
  color: var(--button-register-text);
}

.page-vip-club__cta-button--secondary {
  background: var(--primary-color);
  color: var(--text-light);
  border: 1px solid var(--text-light);
  margin-left: 20px;
}

.page-vip-club__cta-button--secondary:hover {
  background: var(--text-light);
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.page-vip-club__cta-button--white-text {
  background: var(--button-register-bg); /* Custom red */
  color: var(--button-register-text); /* White text */
}

/* Introduction Section */
.page-vip-club__introduction-section {
  background-color: var(--secondary-color);
  color: var(--text-dark);
  padding-bottom: 30px;
}

.page-vip-club__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-vip-club__feature-card {
  background: var(--background-light);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 350px; /* Ensure cards have similar height */
  display: flex;
  flex-direction: column;
}

.page-vip-club__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.page-vip-club__feature-card img {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  min-width: 200px; /* Minimum size */
  min-height: 200px; /* Minimum size */
}

.page-vip-club__feature-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-vip-club__feature-text {
  font-size: 16px;
  color: var(--text-dark);
  flex-grow: 1;
}

/* Tiers Section */
.page-vip-club__tiers-section {
  background-color: var(--primary-color); /* Dark background for this section */
  color: var(--text-light);
}

.page-vip-club__dark-bg {
  background-color: var(--primary-color);
  color: var(--text-light);
}

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

.page-vip-club__tier-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  min-height: 500px; /* Ensure cards have similar height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-vip-club__tier-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.page-vip-club__tier-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--text-light);
  margin-bottom: 15px;
}

.page-vip-club__tier-card img {
  width: 100%;
   /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  min-width: 200px; /* Minimum size */
  min-height: 200px; /* Minimum size */
}

.page-vip-club__tier-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-vip-club__tier-benefits {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}