.page-vip-club-tiers {
  color: #333333; /* Dark text for light body background */
  background-color: #FFFFFF;
  line-height: 1.6;
  font-family: Arial, sans-serif;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

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

.page-vip-club-tiers__hero-section {
  position: relative;
  overflow: hidden;
  padding: 0;
  text-align: center;
  background-color: #000000; /* Dark background for hero section */
  color: #FFFFFF; /* Light text for hero section */
}

.page-vip-club-tiers__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Slightly darken image for text readability, not changing color */
}

.page-vip-club-tiers__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 900px;
  padding: 20px;
  z-index: 10;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

.page-vip-club-tiers__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF; /* White for main title */
}

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

.page-vip-club-tiers__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-vip-club-tiers__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, color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-vip-club-tiers__button--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-vip-club-tiers__button--register:hover {
  background-color: #f0f0f0;
}

.page-vip-club-tiers__button--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-vip-club-tiers__button--login:hover {
  background-color: #e0a538;
}

.page-vip-club-tiers__overview-section,
.page-vip-club-tiers__tiers-section,
.page-vip-club-tiers__upgrade-conditions-section,
.page-vip-club-tiers__faq-section,
.page-vip-club-tiers__cta-section {
  padding: 60px 0;
}

.page-vip-club-tiers__heading {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
}

.page-vip-club-tiers__paragraph {
  font-size: 1.1em;
  color: #333333;
  margin-bottom: 20px;
  text-align: justify;
}

.page-vip-club-tiers__tiers-section {
  background-color: #f8f8f8;
}

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

.page-vip-club-tiers__tier-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-vip-club-tiers__tier-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-vip-club-tiers__tier-image {
  width: 100%;
  max-width: 400px; /* Ensure images are not too small */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-vip-club-tiers__tier-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
}

.page-vip-club-tiers__tier-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
  text-align: center;
  flex-grow: 1;
}

.page-vip-club-tiers__tier-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  text-align: left;
  width: 100%;
}

.page-vip-club-tiers__tier-benefits li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23FCBC45" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') no-repeat left center;
  background-size: 18px;
  padding-left: 28px;
  margin-bottom: 10px;
  color: #333333;
  font-size: 0.95em;
}

.page-vip-club-tiers__button--learn-more {
  background-color: #000000;
  color: #FFFFFF;
  padding: 12px 25px;
  font-size: 1em;
  margin-top: auto; /* Push button to bottom */
}

.page-vip-club-tiers__button--learn-more:hover {
  background-color: #333333;
}

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

.page-vip-club-tiers__step-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-vip-club-tiers__step-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 15px;
}

.page-vip-club-tiers__step-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-vip-club-tiers__step-image {
  width: 100%;
  max-width: 400px; /* Ensure images are not too small */
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  object-fit: cover;
}

.page-vip-club-tiers__faq-item {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
}

.page-vip-club-tiers__faq-question {
  font-size: 1.3em;
  color: #000000;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-vip-club-tiers__faq-answer {
  font-size: 1em;
  color: #555555;
  margin-bottom: 0;
}

.page-vip-club-tiers__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
}

.page-vip-club-tiers__cta-content {
  padding: 60px 20px;
}

.page-vip-club-tiers__cta-content .page-vip-club-tiers__heading {
  color: #FFFFFF;
}

.page-vip-club-tiers__cta-content .page-vip-club-tiers__paragraph {
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-vip-club-tiers__cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-vip-club-tiers__button--cta-register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-vip-club-tiers__button--cta-register:hover {
  background-color: #f0f0f0;
}

.page-vip-club-tiers__button--cta-login {
  background-color: #FCBC45;
  color: #000000;
}

.page-vip-club-tiers__button--cta-login:hover {
  background-color: #e0a538;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-vip-club-tiers__hero-title {
    font-size: 2.8em;
  }
  .page-vip-club-tiers__hero-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-vip-club-tiers {
    padding-top: var(--header-offset, 80px);
  }
  .page-vip-club-tiers__hero-content {
    max-width: 90%;
    padding: 15px;
  }
  .page-vip-club-tiers__hero-title {
    font-size: 2em;
    margin-bottom: 15px;
  }
  .page-vip-club-tiers__hero-description {
    font-size: 0.95em;
    margin-bottom: 25px;
  }
  .page-vip-club-tiers__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-vip-club-tiers__button {
    width: 80%;
    max-width: 300px;
  }
  .page-vip-club-tiers__heading {
    font-size: 2em;
    margin-bottom: 30px;
  }
  .page-vip-club-tiers__paragraph {
    font-size: 1em;
  }
  .page-vip-club-tiers__tier-grid,
  .page-vip-club-tiers__upgrade-steps {
    grid-template-columns: 1fr;
  }
  .page-vip-club-tiers__tier-card,
  .page-vip-club-tiers__step-card {
    padding: 25px;
  }
  .page-vip-club-tiers__tier-title {
    font-size: 1.6em;
  }
  .page-vip-club-tiers__step-title {
    font-size: 1.4em;
  }
  .page-vip-club-tiers__faq-question {
    font-size: 1.2em;
  }
  .page-vip-club-tiers__cta-content {
    padding: 40px 20px;
  }
  /* Mobile image scaling */
  .page-vip-club-tiers__hero-image,
  .page-vip-club-tiers__tier-image,
  .page-vip-club-tiers__step-image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-vip-club-tiers__hero-title {
    font-size: 1.8em;
  }
  .page-vip-club-tiers__hero-description {
    font-size: 0.9em;
  }
  .page-vip-club-tiers__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-vip-club-tiers__heading {
    font-size: 1.8em;
  }
  .page-vip-club-tiers__tier-title {
    font-size: 1.4em;
  }
  .page-vip-club-tiers__step-title {
    font-size: 1.2em;
  }
}