/* style/promotions-vip-program.css */
.page-promotions-vip-program {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #f8f8f8;
}

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

.page-promotions-vip-program__hero {
  background: linear-gradient(135deg, #0A6847 0%, #0A6847 60%, #FFD700 100%);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-vip-program__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:cockfighting_arena,dynamic_lines,blurred_action]') no-repeat center center/cover;
  opacity: 0.2;
  z-index: 0;
}

.page-promotions-vip-program__hero .page-promotions-vip-program__container {
  position: relative;
  z-index: 1;
}

.page-promotions-vip-program__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions-vip-program__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-promotions-vip-program__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  border: none;
  cursor: pointer;
}

.page-promotions-vip-program__btn--primary {
  background-color: #FFD700;
  color: #0A6847;
  margin-top: 20px;
}

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

.page-promotions-vip-program__btn--secondary {
  background-color: #0A6847;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-right: 15px;
}

.page-promotions-vip-program__btn--secondary:hover {
  background-color: #074a33;
  transform: translateY(-2px);
}

.page-promotions-vip-program__btn--link {
  background: none;
  color: #0A6847;
  border: 2px solid #0A6847;
  padding: 13px 28px;
}

.page-promotions-vip-program__btn--link:hover {
  background-color: #0A6847;
  color: #ffffff;
  transform: translateY(-2px);
}

.page-promotions-vip-program__introduction, .page-promotions-vip-program__levels, .page-promotions-vip-program__how-to-join, .page-promotions-vip-program__testimonials, .page-promotions-vip-program__faq, .page-promotions-vip-program__conclusion {
  padding: 60px 0;
}

.page-promotions-vip-program__section-title {
  font-size: 2.5em;
  color: #0A6847;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-promotions-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-promotions-vip-program__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-vip-program__text-content--note {
  font-style: italic;
  color: #555555;
  margin-top: 30px;
}

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

.page-promotions-vip-program__feature-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
  border-top: 5px solid #0A6847;
}

.page-promotions-vip-program__feature-item:hover {
  transform: translateY(-10px);
}

.page-promotions-vip-program__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.2));
}

.page-promotions-vip-program__feature-title {
  font-size: 1.5em;
  color: #0A6847;
  margin-bottom: 15px;
}

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

.page-promotions-vip-program__level-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-bottom: 5px solid #FFD700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-vip-program__level-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-promotions-vip-program__level-title {
  font-size: 1.8em;
  color: #0A6847;
  margin-bottom: 15px;
  text-align: center;
}

.page-promotions-vip-program__level-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
  text-align: center;
}

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

.page-promotions-vip-program__level-benefits li {
  background-color: #f0fdf6; /* Light green for list items */
  margin-bottom: 10px;
  padding: 10px 15px;
  border-radius: 5px;
  color: #0A6847;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.page-promotions-vip-program__level-benefits li::before {
  content: '✔';
  color: #FFD700;
  margin-right: 10px;
  font-weight: bold;
}

.page-promotions-vip-program__how-to-join {
  background-color: #f0fdf6;
}

.page-promotions-vip-program__steps-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-promotions-vip-program__steps-list li {
  background-color: #ffffff;
  padding: 25px 30px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  border-left: 5px solid #0A6847;
}

.page-promotions-vip-program__step-number {
  font-size: 2em;
  font-weight: bold;
  color: #FFD700;
  margin-right: 20px;
  flex-shrink: 0;
}

.page-promotions-vip-program__step-title {
  font-size: 1.4em;
  color: #0A6847;
  margin-top: 0;
  margin-bottom: 10px;
  flex-grow: 1;
}

.page-promotions-vip-program__steps-list li p {
  margin-bottom: 0;
  font-size: 1em;
  color: #555555;
}

.page-promotions-vip-program__steps-list li a {
  color: #0A6847;
  font-weight: bold;
  text-decoration: underline;
}

.page-promotions-vip-program__steps-list li a:hover {
  color: #FFD700;
}

.page-promotions-vip-program__cta-block {
  text-align: center;
  margin-top: 50px;
  padding: 40px;
  background-color: #0A6847;
  border-radius: 10px;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-promotions-vip-program__cta-text {
  font-size: 1.8em;
  margin-bottom: 30px;
  font-weight: bold;
  color: #FFD700;
}

.page-promotions-vip-program__testimonials {
  background-color: #ffffff;
}

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

.page-promotions-vip-program__testimonial-card {
  background-color: #f0fdf6;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  border-bottom: 4px solid #0A6847;
}

.page-promotions-vip-program__testimonial-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid #FFD700;
}

.page-promotions-vip-program__testimonial-text {
  font-style: italic;
  color: #444444;
  margin-bottom: 20px;
  font-size: 1.05em;
}

.page-promotions-vip-program__testimonial-author {
  font-weight: bold;
  color: #0A6847;
  font-size: 0.95em;
}

.page-promotions-vip-program__faq-item {
  background-color: #ffffff;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  border-left: 5px solid #FFD700;
}

.page-promotions-vip-program__faq-question {
  font-size: 1.25em;
  color: #0A6847;
  padding: 20px;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-promotions-vip-program__faq-question::after {
  content: '+';
  font-size: 1.5em;
  color: #0A6847;
  transition: transform 0.3s ease;
}

.page-promotions-vip-program__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promotions-vip-program__faq-answer {
  padding: 0 20px 20px 20px;
  margin: 0;
  color: #555555;
  font-size: 1em;
  display: none;
}

.page-promotions-vip-program__faq-answer.active {
  display: block;
}

.page-promotions-vip-program__conclusion {
  background-color: #0A6847;
  color: #ffffff;
  text-align: center;
}

.page-promotions-vip-program__conclusion .page-promotions-vip-program__section-title {
  color: #FFD700;
}

.page-promotions-vip-program__conclusion .page-promotions-vip-program__section-title::after {
  background-color: #ffffff;
}

.page-promotions-vip-program__conclusion .page-promotions-vip-program__text-content {
  color: #e0e0e0;
}

.page-promotions-vip-program__conclusion .page-promotions-vip-program__btn--primary {
  margin-top: 30px;
}

.page-promotions-vip-program__conclusion .page-promotions-vip-program__text-content a {
  color: #FFD700;
  font-weight: bold;
  text-decoration: underline;
}

.page-promotions-vip-program__conclusion .page-promotions-vip-program__text-content a:hover {
  color: #ffffff;
}

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

  .page-promotions-vip-program__hero-subtitle {
    font-size: 1.2em;
  }

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

  .page-promotions-vip-program__features-grid, .page-promotions-vip-program__level-cards, .page-promotions-vip-program__testimonial-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .page-promotions-vip-program__cta-text {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-promotions-vip-program__hero {
    padding: 80px 0;
  }

  .page-promotions-vip-program__hero-title {
    font-size: 2.2em;
  }

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

  .page-promotions-vip-program__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-promotions-vip-program__introduction, .page-promotions-vip-program__levels, .page-promotions-vip-program__how-to-join, .page-promotions-vip-program__testimonials, .page-promotions-vip-program__faq, .page-promotions-vip-program__conclusion {
    padding: 40px 0;
  }

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

  .page-promotions-vip-program__steps-list li {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-promotions-vip-program__step-number {
    margin-bottom: 10px;
    margin-right: 0;
  }

  .page-promotions-vip-program__btn--secondary,
  .page-promotions-vip-program__btn--link {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .page-promotions-vip-program__cta-block .page-promotions-vip-program__btn {
    width: 100%;
    display: block;
  }
}

@media (max-width: 480px) {
  .page-promotions-vip-program__hero-title {
    font-size: 1.8em;
  }

  .page-promotions-vip-program__hero-subtitle {
    font-size: 0.9em;
  }

  .page-promotions-vip-program__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

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

  .page-promotions-vip-program__feature-item, .page-promotions-vip-program__level-card, .page-promotions-vip-program__testimonial-card {
    padding: 20px;
  }

  .page-promotions-vip-program__feature-title {
    font-size: 1.3em;
  }

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

  .page-promotions-vip-program__cta-text {
    font-size: 1.2em;
  }

  .page-promotions-vip-program__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-promotions-vip-program__faq-answer {
    padding: 0 15px 15px 15px;
  }
}