.page-vip-club {
  background-color: #0A0A0A;
  color: #FFF6D6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small top padding for the first section */
}

.page-vip-club__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  background-color: #111111;
  margin-bottom: 40px;
  border-radius: 8px;
  overflow: hidden;
}

.page-vip-club__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Max width for image consistency */
  margin-bottom: 20px;
}

.page-vip-club__hero-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-vip-club__hero-content {
  max-width: 800px;
}

.page-vip-club__main-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: bold;
  line-height: 1.2;
  color: #FFD36B;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-vip-club__hero-description {
  font-size: 1.1rem;
  color: #FFF6D6;
  margin-bottom: 30px;
}

.page-vip-club__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 25px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-vip-club__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
}

.page-vip-club__cta-button--secondary {
  background: #F2C14E;
  color: #0A0A0A;
}

.page-vip-club__cta-button--secondary:hover {
  background: #FFD36B;
  box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
}

.page-vip-club__cta-button--small {
  padding: 8px 15px;
  font-size: 0.9rem;
  border-radius: 20px;
}

.page-vip-club__about-section,
.page-vip-club__benefits-section,
.page-vip-club__join-section,
.page-vip-club__tiers-section,
.page-vip-club__faq-section,
.page-vip-club__cta-final-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto 40px auto;
  background-color: #111111;
  border-radius: 8px;
  border: 1px solid #3A2A12;
}

.page-vip-club__section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #FFD36B;
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 0 0 8px rgba(255, 211, 107, 0.3);
}

.page-vip-club__section-description {
  font-size: 1rem;
  color: #FFF6D6;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px auto;
}

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

.page-vip-club__benefit-card,
.page-vip-club__step-card {
  background-color: #0A0A0A;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #3A2A12;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-club__benefit-card:hover,
.page-vip-club__step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 211, 107, 0.2);
}

.page-vip-club__benefit-icon {
  width: 100%; /* Ensure images fill card width */
  height: auto;
  min-width: 200px;
  min-height: 200px;
  max-width: 400px;
  max-height: 300px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 15px;
}

.page-vip-club__benefit-title,
.page-vip-club__step-title {
  font-size: 1.4rem;
  color: #F2C14E;
  margin-bottom: 10px;
}

.page-vip-club__benefit-description,
.page-vip-club__step-description {
  font-size: 0.95rem;
  color: #FFF6D6;
}

.page-vip-club__step-number {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  background-color: #F2C14E;
  color: #0A0A0A;
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.page-vip-club__step-button {
  margin-top: 20px;
}

.page-vip-club__tiers-overview {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-vip-club__tier-item {
  background-color: #0A0A0A;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #3A2A12;
  text-align: center;
  flex: 1 1 180px;
  min-width: 180px;
  max-width: 220px;
}

.page-vip-club__tier-name {
  font-size: 1.3rem;
  color: #FFD36B;
  margin-bottom: 10px;
}

.page-vip-club__tier-benefit {
  font-size: 0.9rem;
  color: #FFF6D6;
}

.page-vip-club__faq-item {
  background-color: #0A0A0A;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
}

.page-vip-club__faq-question {
  font-size: 1.2rem;
  color: #F2C14E;
  margin-bottom: 10px;
}

.page-vip-club__faq-answer {
  font-size: 1rem;
  color: #FFF6D6;
}

.page-vip-club__cta-final-section {
  text-align: center;
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-vip-club__hero-section {
    padding: 15px;
  }

  .page-vip-club__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .page-vip-club__hero-description {
    font-size: 1rem;
  }

  .page-vip-club__section-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }

  .page-vip-club__benefits-grid,
  .page-vip-club__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-vip-club__about-section,
  .page-vip-club__benefits-section,
  .page-vip-club__join-section,
  .page-vip-club__tiers-section,
  .page-vip-club__faq-section,
  .page-vip-club__cta-final-section {
    padding: 25px 15px;
    margin-bottom: 30px;
  }

  .page-vip-club__tier-item {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .page-vip-club__benefit-icon {
    max-width: 100%;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px;
  }

  /* Mobile image scaling prevention */
  .page-vip-club img {
    max-width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 480px) {
  .page-vip-club__cta-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .page-vip-club__hero-description {
    font-size: 0.9rem;
  }

  .page-vip-club__section-description,
  .page-vip-club__benefit-description,
  .page-vip-club__step-description,
  .page-vip-club__tier-benefit,
  .page-vip-club__faq-answer {
    font-size: 0.85rem;
  }
}