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

.page-vip-program__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

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

.page-vip-program__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(26, 32, 44, 0.7); /* Main color with transparency */
  border-radius: 10px;
}

.page-vip-program__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Auxiliary color for emphasis */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-vip-program__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-vip-program__hero-button,
.page-vip-program__join-button,
.page-vip-program__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Auxiliary color */
  color: #1A202C; /* Main color for button text */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-vip-program__hero-button:hover,
.page-vip-program__join-button:hover,
.page-vip-program__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-vip-program__content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-vip-program__section-title {
  font-size: 2.5em;
  color: #1A202C; /* Main color */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-vip-program__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-vip-program__sub-title {
  font-size: 1.8em;
  color: #1A202C;
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-vip-program__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333333;
}

.page-vip-program__paragraph a {
  color: #1A202C;
  text-decoration: underline;
}

.page-vip-program__paragraph a:hover {
  color: #FFD700;
}

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

.page-vip-program__tier-card,
.page-vip-program__reward-item,
.page-vip-program__step-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-program__tier-card:hover,
.page-vip-program__reward-item:hover,
.page-vip-program__step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-vip-program__tier-image,
.page-vip-program__reward-image,
.page-vip-program__service-image,
.page-vip-program__join-image,
.page-vip-program__advantage-image,
.page-vip-program__responsible-gaming-image,
.page-vip-program__cta-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  display: block; /* Ensure image is a block element */
  margin-left: auto; /* Center image */
  margin-right: auto; /* Center image */
  min-width: 200px; /* Enforce min size for content images */
  min-height: 200px; /* Enforce min size for content images */
}

.page-vip-program__tier-title,
.page-vip-program__reward-title,
.page-vip-program__step-title {
  font-size: 1.6em;
  color: #1A202C;
  margin-bottom: 15px;
}

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

.page-vip-program__tier-benefits li {
  margin-bottom: 10px;
  font-size: 1.05em;
  color: #555555;
  position: relative;
  padding-left: 25px;
}

.page-vip-program__tier-benefits li::before {
  content: '✓';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-vip-program__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #1A202C;
  color: #FFD700;
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-vip-program__service-image,
.page-vip-program__advantage-image,
.page-vip-program__responsible-gaming-image {
  margin-top: 40px;
}

.page-vip-program__faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  padding: 25px;
}

.page-vip-program__faq-question {
  font-size: 1.4em;
  color: #1A202C;
  margin-bottom: 10px;
}

.page-vip-program__faq-answer {
  font-size: 1em;
  color: #555555;
}

.page-vip-program__responsible-gaming-button,
.page-vip-program__faq-button {
  display: inline-block;
  background-color: #1A202C; /* Main color */
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.page-vip-program__responsible-gaming-button:hover,
.page-vip-program__faq-button:hover {
  background-color: #0d121c;
}

.page-vip-program__cta-section {
  background-color: #1A202C; /* Main color as background */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-vip-program__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2; /* Subtle background image */
  z-index: -1;
}

.page-vip-program__cta-section .page-vip-program__section-title {
  color: #FFD700; /* Auxiliary color for title on dark background */
}

.page-vip-program__cta-section .page-vip-program__paragraph {
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-vip-program__hero-title {
    font-size: 2.2em;
  }

  .page-vip-program__hero-description {
    font-size: 1em;
  }

  .page-vip-program__section-title {
    font-size: 2em;
  }

  .page-vip-program__sub-title {
    font-size: 1.5em;
  }

  .page-vip-program__tiers-grid,
  .page-vip-program__rewards-grid,
  .page-vip-program__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-vip-program__hero-section {
    min-height: 400px;
  }

  .page-vip-program__hero-content {
    padding: 20px 15px;
  }

  .page-vip-program__hero-button,
  .page-vip-program__join-button,
  .page-vip-program__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-vip-program__tier-image,
  .page-vip-program__reward-image,
  .page-vip-program__service-image,
  .page-vip-program__join-image,
  .page-vip-program__advantage-image,
  .page-vip-program__responsible-gaming-image,
  .page-vip-program__cta-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px;
  }

  /* Ensure all img elements within .page-vip-program are responsive and don't overflow */
  .page-vip-program img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce min size for content images */
    min-height: 200px; /* Enforce min size for content images */
  }

  /* Prevent horizontal scrolling on mobile */
  .page-vip-program {
    overflow-x: hidden;
  }

  .page-vip-program__content-wrapper {
    padding: 20px 15px;
  }
}