.page-promotions-vip-benefits {
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background from shared.css */
  padding-top: var(--header-offset, 120px); /* Offset for fixed header */
}

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

.page-promotions-vip-benefits__hero-section {
  position: relative;
  text-align: center;
  padding: 0; /* Content padding handled by hero-content */
  overflow: hidden;
}

.page-promotions-vip-benefits__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-promotions-vip-benefits__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 800px;
  width: 90%;
  padding: 40px;
  background-color: rgba(26, 32, 44, 0.85); /* #1A202C with transparency */
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-vip-benefits__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Auxiliary color for emphasis */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.page-promotions-vip-benefits__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-promotions-vip-benefits__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Auxiliary color for CTA */
  color: #1A202C; /* Dark text for golden button */
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: 700;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promotions-vip-benefits__hero-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-promotions-vip-benefits__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  margin-top: 60px;
  font-weight: 700;
  position: relative;
}

.page-promotions-vip-benefits__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-promotions-vip-benefits__section-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 50px;
  color: #cccccc;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.page-promotions-vip-benefits__levels-section,
.page-promotions-vip-benefits__benefits-section,
.page-promotions-vip-benefits__faq-section,
.page-promotions-vip-benefits__cta-section {
  padding: 60px 0;
}

.page-promotions-vip-benefits__levels-grid,
.page-promotions-vip-benefits__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-promotions-vip-benefits__level-card,
.page-promotions-vip-benefits__benefit-card {
  background-color: #1A202C; /* Main color as card background */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.page-promotions-vip-benefits__level-card:hover,
.page-promotions-vip-benefits__benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.page-promotions-vip-benefits__level-image,
.page-promotions-vip-benefits__benefit-icon {
  width: 100%;
  max-width: 400px; /* Ensure images are not too small */
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  object-fit: cover;
  min-width: 200px; /* Minimum size enforcement */
  min-height: 200px; /* Minimum size enforcement */
}

.page-promotions-vip-benefits__level-title,
.page-promotions-vip-benefits__benefit-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promotions-vip-benefits__level-description,
.page-promotions-vip-benefits__benefit-description {
  font-size: 1em;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions-vip-benefits__level-features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  text-align: left;
  width: 100%;
}

.page-promotions-vip-benefits__level-features li {
  font-size: 0.95em;
  color: #f0f0f0;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.page-promotions-vip-benefits__feature-icon {
  color: #FFD700;
  font-size: 1.2em;
  margin-right: 10px;
}

.page-promotions-vip-benefits__level-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.95em;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: auto; /* Push button to bottom */
}

.page-promotions-vip-benefits__level-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-promotions-vip-benefits__faq-list {
  margin-top: 40px;
}

.page-promotions-vip-benefits__faq-item {
  background-color: #1A202C;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-vip-benefits__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 15px;
  cursor: pointer;
  font-weight: 600;
}

.page-promotions-vip-benefits__faq-answer {
  font-size: 1em;
  color: #cccccc;
  line-height: 1.7;
}

.page-promotions-vip-benefits__cta-section {
  background-color: #1A202C;
  padding: 80px 0;
  text-align: center;
  box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.5);
}

.page-promotions-vip-benefits__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 25px;
  font-weight: 700;
}

.page-promotions-vip-benefits__cta-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.page-promotions-vip-benefits__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.page-promotions-vip-benefits__cta-button {
  display: inline-block;
  padding: 18px 40px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: 700;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.page-promotions-vip-benefits__cta-button--register {
  background-color: #FFD700;
  color: #1A202C;
}

.page-promotions-vip-benefits__cta-button--register:hover {
  background-color: #e6c200;
  transform: scale(1.05);
}

.page-promotions-vip-benefits__cta-button--login {
  background-color: transparent;
  color: #FFD700;
  border-color: #FFD700;
}

.page-promotions-vip-benefits__cta-button--login:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promotions-vip-benefits__hero-title {
    font-size: 2.5em;
  }
  .page-promotions-vip-benefits__hero-description {
    font-size: 1.1em;
  }
  .page-promotions-vip-benefits__section-title {
    font-size: 2.2em;
  }
  .page-promotions-vip-benefits__level-card,
  .page-promotions-vip-benefits__benefit-card {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .page-promotions-vip-benefits__hero-content {
    padding: 30px 20px;
    width: 95%;
  }
  .page-promotions-vip-benefits__hero-title {
    font-size: 2em;
  }
  .page-promotions-vip-benefits__hero-description {
    font-size: 1em;
  }
  .page-promotions-vip-benefits__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions-vip-benefits__section-title {
    font-size: 2em;
    margin-top: 40px;
  }
  .page-promotions-vip-benefits__section-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-promotions-vip-benefits__levels-grid,
  .page-promotions-vip-benefits__benefits-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-promotions-vip-benefits__level-card,
  .page-promotions-vip-benefits__benefit-card {
    padding: 20px;
  }
  .page-promotions-vip-benefits__level-image,
  .page-promotions-vip-benefits__benefit-icon {
    max-width: 100%;
    width: 100%;
    height: auto;
    min-width: 200px; /* Enforce min size on mobile as well */
    min-height: 200px; /* Enforce min size on mobile as well */
  }
  .page-promotions-vip-benefits__level-title,
  .page-promotions-vip-benefits__benefit-title {
    font-size: 1.6em;
  }
  .page-promotions-vip-benefits__faq-question {
    font-size: 1.2em;
  }
  .page-promotions-vip-benefits__cta-title {
    font-size: 2.2em;
  }
  .page-promotions-vip-benefits__cta-description {
    font-size: 1em;
  }
  .page-promotions-vip-benefits__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions-vip-benefits__cta-button {
    width: 100%;
    max-width: 300px;
    padding: 15px 20px;
    font-size: 1.1em;
  }
  /* Ensure all images within content area are responsive and not too small */
  .page-promotions-vip-benefits img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-promotions-vip-benefits__hero-title {
    font-size: 1.8em;
  }
  .page-promotions-vip-benefits__hero-description {
    font-size: 0.9em;
  }
  .page-promotions-vip-benefits__hero-content {
    padding: 25px 15px;
  }
  .page-promotions-vip-benefits__section-title {
    font-size: 1.8em;
  }
  .page-promotions-vip-benefits__cta-title {
    font-size: 1.8em;
  }
}