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

.page-promotions-vip-program {
  font-family: 'Arial', sans-serif;
  color: #F0F0F0; /* Light grey for general text on dark background */
  background-color: #0A2463; /* Main primary color */
  line-height: 1.6;
}

.page-promotions-vip-program a {
  color: #FFD700; /* Auxiliary color for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions-vip-program a:hover {
  color: #F0A300; /* Darker gold on hover */
}

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

.page-promotions-vip-program__hero {
  background: linear-gradient(135deg, #0A2463 0%, #1A408A 100%); /* Dark blue gradient */
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-vip-program__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-vip-program__hero-description {
  font-size: 1.2em;
  color: #E0E0E0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-promotions-vip-program__hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-promotions-vip-program__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-promotions-vip-program__button--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A2463; /* Dark blue text */
}

.page-promotions-vip-program__button--primary:hover {
  background-color: #F0A300; /* Darker gold on hover */
  transform: translateY(-3px);
}

.page-promotions-vip-program__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-promotions-vip-program__button--secondary:hover {
  background-color: #FFD700;
  color: #0A2463;
  transform: translateY(-3px);
}

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

.page-promotions-vip-program__section {
  padding: 60px 0;
  background-color: #1A3470; /* Slightly lighter dark blue for sections */
  margin-bottom: 20px;
  border-radius: 10px;
}

.page-promotions-vip-program__section:nth-of-type(even) {
  background-color: #0A2463; /* Main primary color for alternating sections */
}

.page-promotions-vip-program__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-promotions-vip-program__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #E0E0E0;
}

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

.page-promotions-vip-program__feature-list li {
  font-size: 1.1em;
  margin-bottom: 15px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255, 215, 0, 0.3);
  display: flex;
  align-items: flex-start;
  color: #E0E0E0;
}

.page-promotions-vip-program__feature-list li:last-child {
  border-bottom: none;
}

.page-promotions-vip-program__icon {
  font-size: 1.5em;
  color: #FFD700;
  margin-right: 15px;
  line-height: 1;
}

.page-promotions-vip-program__image--full-width {
  width: 100%;
  max-width: 1000px;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-promotions-vip-program__image--centered {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-promotions-vip-program__image--small {
  max-width: 500px;
  width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

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

.page-promotions-vip-program__level-card {
  background-color: #0F2A6D; /* Darker blue for cards */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-promotions-vip-program__level-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-vip-program__level-desc {
  font-size: 0.95em;
  color: #C0C0C0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions-vip-program__level-benefits {
  list-style-type: disc;
  text-align: left;
  padding-left: 20px;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-promotions-vip-program__level-benefits li {
  margin-bottom: 8px;
  font-size: 0.95em;
}

.page-promotions-vip-program__section-text {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 40px auto 0 auto;
  color: #E0E0E0;
}

.page-promotions-vip-program__privilege-category {
  background-color: #0F2A6D;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions-vip-program__category-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 20px;
  text-align: center;
}

.page-promotions-vip-program__category-content p {
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page-promotions-vip-program__bullet-list {
  list-style-type: disc;
  padding-left: 25px;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-promotions-vip-program__bullet-list li {
  margin-bottom: 10px;
  color: #C0C0C0;
}

.page-promotions-vip-program__bullet-list strong {
  color: #FFD700;
}

.page-promotions-vip-program__cta-block {
  text-align: center;
  margin-top: 50px;
}

.page-promotions-vip-program__how-to-join .page-promotions-vip-program__section-intro {
  margin-bottom: 50px;
}

.page-promotions-vip-program__step-list {
  counter-reset: step-counter;
  max-width: 900px;
}

.page-promotions-vip-program__step-list li {
  position: relative;
  padding-left: 70px;
  margin-bottom: 40px;
  color: #E0E0E0;
}

.page-promotions-vip-program__step-list li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFD700;
  color: #0A2463;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-promotions-vip-program__step-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-promotions-vip-program__faq-item {
  background-color: #0F2A6D;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.page-promotions-vip-program__faq-question {
  font-size: 1.25em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promotions-vip-program__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

.page-promotions-vip-program__faq-answer {
  font-size: 1.05em;
  color: #C0C0C0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding: 0 0px;
}

.page-promotions-vip-program__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding: 10px 0px;
}

.page-promotions-vip-program__cta-final {
  background-color: #1A3470;
  text-align: center;
}

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

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

.page-promotions-vip-program__responsible-gaming {
  font-size: 0.9em;
  color: #909090;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

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

  .page-promotions-vip-program__hero-description,
  .page-promotions-vip-program__section-intro,
  .page-promotions-vip-program__section-text,
  .page-promotions-vip-program__feature-list li,
  .page-promotions-vip-program__level-desc,
  .page-promotions-vip-program__bullet-list li,
  .page-promotions-vip-program__step-list li p,
  .page-promotions-vip-program__faq-answer {
    font-size: 1em;
  }

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

  .page-promotions-vip-program__hero-cta,
  .page-promotions-vip-program__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-promotions-vip-program__button {
    width: 80%;
    margin: 0 auto;
  }

  .page-promotions-vip-program__level-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions-vip-program__step-list li {
    padding-left: 60px;
  }

  .page-promotions-vip-program__step-list li::before {
    width: 40px;
    height: 40px;
    font-size: 1.5em;
  }

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

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

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

  .page-promotions-vip-program__button {
    width: 90%;
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-promotions-vip-program__level-card {
    padding: 20px;
  }

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

  .page-promotions-vip-program__category-title {
    font-size: 1.6em;
  }
}