/* style/promotions-vip-program.css */

:root {
  --page-bg-color: #08160F;
  --card-bg-color: #11271B;
  --text-main-color: #F2FFF6;
  --text-secondary-color: #A7D9B8;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;
  --primary-brand-color: #11A84E;
  --secondary-brand-color: #22C768;
}

.page-promotions-vip-program {
  background-color: var(--page-bg-color);
  color: var(--text-main-color);
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 0; /* body handles --header-offset */
}

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

.page-promotions-vip-program__section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: bold;
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}

.page-promotions-vip-program__sub-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: bold;
  color: var(--primary-brand-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-promotions-vip-program__section-description {
  text-align: center;
  color: var(--text-secondary-color);
  margin-bottom: 50px;
  font-size: 18px;
}

.page-promotions-vip-program p {
  margin-bottom: 15px;
  color: var(--text-secondary-color);
}

.page-promotions-vip-program strong {
  color: var(--text-main-color);
}

.page-promotions-vip-program a {
  color: var(--secondary-brand-color);
  text-decoration: none;
}

.page-promotions-vip-program a:hover {
  text-decoration: underline;
}

/* Buttons */
.page-promotions-vip-program__btn-primary,
.page-promotions-vip-program__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-promotions-vip-program__btn-primary {
  background: var(--button-gradient);
  color: var(--text-main-color);
  border: none;
}

.page-promotions-vip-program__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(var(--glow-color-rgb), 0.4);
}

.page-promotions-vip-program__btn-secondary {
  background-color: transparent;
  color: var(--primary-brand-color);
  border: 2px solid var(--primary-brand-color);
}

.page-promotions-vip-program__btn-secondary:hover {
  background-color: var(--primary-brand-color);
  color: var(--text-main-color);
  box-shadow: 0 4px 10px rgba(var(--primary-brand-color-rgb), 0.3);
}

.page-promotions-vip-program__btn-primary--center,
.page-promotions-vip-program__btn-secondary--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
}

/* Hero Section */
.page-promotions-vip-program__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 10px; /* Small top padding */
  padding-bottom: 60px;
}

.page-promotions-vip-program__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for hero image */
  overflow: hidden;
}

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

.page-promotions-vip-program__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -80px; /* Overlap slightly for visual flow */
  position: relative;
  z-index: 1;
  background-color: var(--page-bg-color);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-promotions-vip-program__main-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: var(--gold-color);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(var(--glow-color-rgb), 0.5);
}

.page-promotions-vip-program__hero-description {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary-color);
  margin-bottom: 30px;
}

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

/* General Section Styling */
.page-promotions-vip-program__about-section,
.page-promotions-vip-program__levels-section,
.page-promotions-vip-program__privileges-section,
.page-promotions-vip-program__join-section,
.page-promotions-vip-program__faq-section,
.page-promotions-vip-program__cta-section {
  padding: 80px 0;
}

.page-promotions-vip-program__dark-bg {
  background-color: var(--card-bg-color);
}

/* About Section */
.page-promotions-vip-program__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.page-promotions-vip-program__text-block {
  padding: 20px;
}

.page-promotions-vip-program__text-block--center {
  text-align: center;
}

.page-promotions-vip-program__image-block {
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-promotions-vip-program__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-vip-program__benefits-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  text-align: left;
  display: inline-block;
}

.page-promotions-vip-program__benefits-list 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="%232AD16F" 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: 20px;
  padding-left: 30px;
  margin-bottom: 10px;
  color: var(--text-secondary-color);
  font-size: 17px;
}

/* Levels Section */
.page-promotions-vip-program__levels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-promotions-vip-program__card {
  background-color: var(--card-bg-color);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-secondary-color);
  border: 1px solid var(--border-color);
}

.page-promotions-vip-program__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(var(--glow-color-rgb), 0.3);
}

.page-promotions-vip-program__card-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-promotions-vip-program__card-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--gold-color);
  margin-bottom: 15px;
}

.page-promotions-vip-program__card-features {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-promotions-vip-program__card-features li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="%23F2C14E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><polyline points="12 6 12 12 16 14"></polyline></svg>') no-repeat left center;
  background-size: 18px;
  padding-left: 25px;
  margin-bottom: 8px;
  color: var(--text-secondary-color);
}

/* Privileges Section */
.page-promotions-vip-program__privilege-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
}

.page-promotions-vip-program__privilege-item:last-child {
  margin-bottom: 0;
}

.page-promotions-vip-program__privilege-item--reverse {
  flex-direction: row-reverse;
}

.page-promotions-vip-program__privilege-content {
  flex: 1;
  padding: 20px;
}

.page-promotions-vip-program__privilege-content p {
  font-size: 17px;
}

.page-promotions-vip-program__privilege-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-promotions-vip-program__privilege-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Join Section */
.page-promotions-vip-program__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.page-promotions-vip-program__step-card {
  padding: 40px;
}

.page-promotions-vip-program__step-card .page-promotions-vip-program__card-title {
  color: var(--primary-brand-color);
  font-size: 28px;
}

.page-promotions-vip-program__tips-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  text-align: left;
  display: inline-block;
}

.page-promotions-vip-program__tips-list 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="%23F2C14E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polygon points="13 2 3 14 12 14 11 22 21 10 12 10 13 2"></polygon></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 10px;
  color: var(--text-secondary-color);
  font-size: 17px;
}

/* FAQ Section */
.page-promotions-vip-program__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions-vip-program__faq-item {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-secondary-color);
}

.page-promotions-vip-program__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 18px;
  color: var(--text-main-color);
  transition: background-color 0.3s ease;
}

.page-promotions-vip-program__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-promotions-vip-program__faq-item summary:hover {
  background-color: var(--deep-green-color);
}

.page-promotions-vip-program__faq-qtext {
  flex-grow: 1;
}

.page-promotions-vip-program__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 15px;
  color: var(--gold-color);
}

.page-promotions-vip-program__faq-answer {
  padding: 0 20px 20px;
  font-size: 16px;
  color: var(--text-secondary-color);
}

/* CTA Section */
.page-promotions-vip-program__cta-section {
  text-align: center;
  padding: 100px 0;
  background-color: var(--card-bg-color);
  border-top: 5px solid var(--primary-brand-color);
}

.page-promotions-vip-program__cta-content {
  max-width: 900px;
}

/* Responsive */
@media (max-width: 992px) {
  .page-promotions-vip-program__content-grid,
  .page-promotions-vip-program__privilege-item {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .page-promotions-vip-program__privilege-item--reverse {
    flex-direction: column;
  }

  .page-promotions-vip-program__hero-content {
    margin-top: -40px;
    padding: 30px 15px;
  }
}

@media (max-width: 768px) {
  .page-promotions-vip-program__hero-section,
  .page-promotions-vip-program__about-section,
  .page-promotions-vip-program__levels-section,
  .page-promotions-vip-program__privileges-section,
  .page-promotions-vip-program__join-section,
  .page-promotions-vip-program__faq-section,
  .page-promotions-vip-program__cta-section {
    padding: 40px 0;
  }

  .page-promotions-vip-program__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions-vip-program__main-title {
    font-size: clamp(28px, 6vw, 40px);
  }

  .page-promotions-vip-program__section-title {
    font-size: clamp(24px, 5vw, 36px);
    margin-bottom: 30px;
  }

  .page-promotions-vip-program__sub-title {
    font-size: clamp(20px, 4vw, 28px);
  }

  .page-promotions-vip-program__hero-description,
  .page-promotions-vip-program__section-description,
  .page-promotions-vip-program p,
  .page-promotions-vip-program li,
  .page-promotions-vip-program__faq-answer {
    font-size: 16px;
  }

  /* Responsive Images */
  .page-promotions-vip-program img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions-vip-program__section,
  .page-promotions-vip-program__card,
  .page-promotions-vip-program__container,
  .page-promotions-vip-program__image-block,
  .page-promotions-vip-program__privilege-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .page-promotions-vip-program__hero-section {
    padding-top: 10px !important;
  }

  /* Responsive Buttons */
  .page-promotions-vip-program__cta-button,
  .page-promotions-vip-program__btn-primary,
  .page-promotions-vip-program__btn-secondary,
  .page-promotions-vip-program a[class*="button"],
  .page-promotions-vip-program a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-promotions-vip-program__cta-buttons,
  .page-promotions-vip-program__button-group,
  .page-promotions-vip-program__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    flex-direction: column;
  }
  
  .page-promotions-vip-program__cta-buttons {
    display: flex;
    flex-direction: column;
  }
  
  .page-promotions-vip-program__text-block--center .page-promotions-vip-program__btn-primary--center,
  .page-promotions-vip-program__text-block--center .page-promotions-vip-program__btn-secondary--center {
    width: auto !important; /* Allow buttons to size based on content if not full width */
    max-width: 100% !important;
    margin-left: auto;
    margin-right: auto;
  }

  .page-promotions-vip-program__faq-item summary {
    font-size: 16px;
  }
}