.page-vip-program-levels {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

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

.page-vip-program-levels__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, body handles header offset */
  margin-bottom: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #08160F; /* Background */
}

.page-vip-program-levels__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
}

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

.page-vip-program-levels__hero-content {
  max-width: 900px;
  padding: 0 20px 40px;
  box-sizing: border-box;
}

.page-vip-program-levels__main-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-vip-program-levels__description {
  font-size: clamp(16px, 2vw, 20px);
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-program-levels__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-vip-program-levels__cta-buttons--center {
  margin-top: 30px;
}

.page-vip-program-levels__btn-primary,
.page-vip-program-levels__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
  text-align: center;
}

.page-vip-program-levels__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  border: none;
}

.page-vip-program-levels__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-vip-program-levels__btn-secondary {
  background: transparent;
  color: #F2FFF6; /* Text Main */
  border: 2px solid #2E7A4E; /* Border */
}

.page-vip-program-levels__btn-secondary:hover {
  background: rgba(46, 122, 78, 0.2); /* Border color with opacity */
  transform: translateY(-2px);
}

.page-vip-program-levels__section {
  padding: 60px 0;
  margin-bottom: 20px;
  background-color: #08160F; /* Background */
  border-top: 1px solid #1E3A2A; /* Divider */
}

.page-vip-program-levels__section:first-of-type {
  border-top: none;
}

.page-vip-program-levels__section-title {
  font-size: clamp(24px, 3.5vw, 40px);
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  position: relative;
}

.page-vip-program-levels__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #2AD16F 0%, #13994A 100%);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-vip-program-levels__article-body {
  max-width: 900px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.8;
  color: #A7D9B8; /* Text Secondary */
}

.page-vip-program-levels__article-body p {
  margin-bottom: 20px;
}

.page-vip-program-levels__article-body h3 {
  font-size: 22px;
  color: #F2FFF6; /* Text Main */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-vip-program-levels__article-body ul,
.page-vip-program-levels__article-body ol {
  margin-bottom: 20px;
  padding-left: 25px;
}

.page-vip-program-levels__article-body li {
  margin-bottom: 10px;
  color: #A7D9B8; /* Text Secondary */
}

.page-vip-program-levels__article-body strong {
  color: #F2FFF6; /* Text Main */
}

.page-vip-program-levels__image-full-width {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
}

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

.page-vip-program-levels__card {
  background: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
  display: flex;
  flex-direction: column;
  color: #F2FFF6; /* Text Main */
}

.page-vip-program-levels__card-title {
  font-size: 24px;
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  text-align: center;
}

.page-vip-program-levels__level-card p,
.page-vip-program-levels__benefit-card p {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-vip-program-levels__list {
  list-style: disc;
  padding-left: 20px;
  margin-top: 10px;
}

.page-vip-program-levels__list li {
  font-size: 15px;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 8px;
}

.page-vip-program-levels__numbered-list {
  list-style: none;
  padding: 0;
  counter-reset: section;
}

.page-vip-program-levels__numbered-list li {
  counter-increment: section;
  margin-bottom: 30px;
  padding-left: 40px;
  position: relative;
  color: #A7D9B8; /* Text Secondary */
}

.page-vip-program-levels__numbered-list li::before {
  content: counter(section);
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.page-vip-program-levels__numbered-list h3 {
  margin-top: 0;
  font-size: 20px;
  color: #F2FFF6; /* Text Main */
}

.page-vip-program-levels__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
}

details.page-vip-program-levels__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #2E7A4E; /* Border */
  overflow: hidden;
  background: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
}

details.page-vip-program-levels__faq-item summary.page-vip-program-levels__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

details.page-vip-program-levels__faq-item summary.page-vip-program-levels__faq-question::-webkit-details-marker {
  display: none;
}

details.page-vip-program-levels__faq-item summary.page-vip-program-levels__faq-question:hover {
  background: rgba(46, 122, 78, 0.2); /* Border color with opacity */
}

.page-vip-program-levels__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #F2FFF6; /* Text Main */
}

.page-vip-program-levels__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #57E38D; /* Glow */
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
  line-height: 1;
}

details.page-vip-program-levels__faq-item .page-vip-program-levels__faq-answer {
  padding: 0 25px 25px;
  background: #0A4B2C; /* Deep Green */
  border-radius: 0 0 10px 10px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 16px;
}

details.page-vip-program-levels__faq-item .page-vip-program-levels__faq-answer p {
  margin-bottom: 15px;
}

/* Universal image responsive styles */
.page-vip-program-levels img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Media Queries for responsiveness */
@media (max-width: 1024px) {
  .page-vip-program-levels__container {
    padding: 15px;
  }

  .page-vip-program-levels__hero-content {
    padding: 0 15px 30px;
  }

  .page-vip-program-levels__main-title {
    font-size: clamp(24px, 4vw, 40px);
  }

  .page-vip-program-levels__description {
    font-size: clamp(15px, 2vw, 18px);
  }

  .page-vip-program-levels__section-title {
    font-size: clamp(22px, 3.5vw, 36px);
  }

  .page-vip-program-levels__article-body {
    font-size: 16px;
  }

  .page-vip-program-levels__card-title {
    font-size: 22px;
  }

  .page-vip-program-levels__btn-primary,
  .page-vip-program-levels__btn-secondary {
    padding: 12px 25px;
    font-size: 16px;
  }
}

@media (max-width: 849px) {
  .page-vip-program-levels__hero-image {
    object-fit: contain !important; /* Ensure image is not cropped */
    aspect-ratio: unset !important;
  }
}

@media (max-width: 768px) {
  .page-vip-program-levels__container,
  .page-vip-program-levels__hero-content,
  .page-vip-program-levels__cta-buttons,
  .page-vip-program-levels__level-grid,
  .page-vip-program-levels__benefits-grid,
  .page-vip-program-levels__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-vip-program-levels__hero-section {
    padding-top: 10px;
    margin-bottom: 30px;
  }

  .page-vip-program-levels__main-title {
    font-size: clamp(20px, 6vw, 36px);
    margin-bottom: 10px;
  }

  .page-vip-program-levels__description {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .page-vip-program-levels__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-vip-program-levels__btn-primary,
  .page-vip-program-levels__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 15px;
    font-size: 16px;
  }

  .page-vip-program-levels__section {
    padding: 40px 0;
  }

  .page-vip-program-levels__section-title {
    font-size: clamp(20px, 5vw, 30px);
    margin-bottom: 30px;
  }

  .page-vip-program-levels__article-body {
    font-size: 15px;
    line-height: 1.7;
  }

  .page-vip-program-levels__article-body p {
    margin-bottom: 15px;
  }

  .page-vip-program-levels__article-body h3 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-vip-program-levels__image-full-width {
    margin: 30px auto;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-vip-program-levels__level-grid,
  .page-vip-program-levels__benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .page-vip-program-levels__card {
    padding: 25px;
  }

  .page-vip-program-levels__card-title {
    font-size: 20px;
  }

  .page-vip-program-levels__level-card p,
  .page-vip-program-levels__benefit-card p {
    font-size: 15px;
  }

  .page-vip-program-levels__list li {
    font-size: 14px;
  }

  .page-vip-program-levels__numbered-list li {
    margin-bottom: 20px;
    padding-left: 35px;
  }

  .page-vip-program-levels__numbered-list li::before {
    width: 25px;
    height: 25px;
    font-size: 16px;
  }

  .page-vip-program-levels__numbered-list h3 {
    font-size: 18px;
  }

  details.page-vip-program-levels__faq-item {
    margin-bottom: 10px;
  }

  details.page-vip-program-levels__faq-item summary.page-vip-program-levels__faq-question {
    padding: 15px 20px;
  }

  .page-vip-program-levels__faq-qtext {
    font-size: 16px;
  }

  .page-vip-program-levels__faq-toggle {
    font-size: 24px;
    width: 25px;
  }

  details.page-vip-program-levels__faq-item .page-vip-program-levels__faq-answer {
    padding: 0 20px 20px;
    font-size: 15px;
  }

  /* Ensure all content containers have proper padding and max-width */
  .page-vip-program-levels__section,
  .page-vip-program-levels__card,
  .page-vip-program-levels__container,
  .page-vip-program-levels__hero-section,
  .page-vip-program-levels__hero-content,
  .page-vip-program-levels__cta-buttons,
  .page-vip-program-levels__level-grid,
  .page-vip-program-levels__benefits-grid,
  .page-vip-program-levels__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-vip-program-levels__section:not(.page-vip-program-levels__hero-section) .page-vip-program-levels__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Specific for product/game grids to prevent overflow */
  .page-vip-program-levels__products-grid { /* Assuming a product grid might exist */
    overflow-x: hidden;
    grid-template-columns: 1fr; /* Or 2 columns if cards are small enough */
  }

  .page-vip-program-levels__products-grid .page-vip-program-levels__card { /* Assuming a card within product grid */
    max-width: 100% !important;
    width: 100% !important;
  }
}