/* 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: #000080; /* Dark blue background */
}

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

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

.page-promotions-vip-program__hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  animation: page-promotions-vip-program-rotate 20s linear infinite;
  z-index: 0;
}

@keyframes page-promotions-vip-program-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

.page-promotions-vip-program__hero-subtitle {
  font-size: 1.4em;
  color: #cccccc;
  margin-bottom: 40px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.page-promotions-vip-program__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold */
  color: #000080; /* Dark Blue */
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
  position: relative;
  z-index: 1;
}

.page-promotions-vip-program__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold */
  transform: translateY(-3px);
}

.page-promotions-vip-program__cta-button--small {
  padding: 12px 30px;
  font-size: 1em;
}

.page-promotions-vip-program__cta-button--download {
  background-color: #4CAF50; /* Green for download */
  color: #fff;
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

.page-promotions-vip-program__cta-button--download:hover {
  background-color: #45a049;
}

.page-promotions-vip-program__introduction,
.page-promotions-vip-program__vip-levels,
.page-promotions-vip-program__upgrade-conditions,
.page-promotions-vip-program__exclusive-benefits,
.page-promotions-vip-program__how-to-join,
.page-promotions-vip-program__faq,
.page-promotions-vip-program__final-cta {
  padding: 60px 0;
}

.page-promotions-vip-program__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-promotions-vip-program__text-content {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
  color: #e0e0e0; /* Light grey */
}

.page-promotions-vip-program__text-content strong {
  color: #FFD700;
}

.page-promotions-vip-program__text-content a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions-vip-program__text-content a:hover {
  color: #e6c200;
  text-decoration: underline;
}

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

.page-promotions-vip-program__level-card {
  background-color: #00004d; /* Darker blue */
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #FFD700;
}

.page-promotions-vip-program__level-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(255, 215, 0, 0.3);
}

.page-promotions-vip-program__level-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.6));
}

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

.page-promotions-vip-program__level-description {
  font-size: 1em;
  line-height: 1.7;
  color: #b0b0b0;
  margin-bottom: 20px;
}

.page-promotions-vip-program__level-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.page-promotions-vip-program__level-benefits li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 0.95em;
  color: #e0e0e0;
}

.page-promotions-vip-program__level-benefits li::before {
  content: '✔';
  color: #FFD700; /* Gold checkmark */
  position: absolute;
  left: 0;
  top: 0;
}

/* Upgrade Conditions Table */
.page-promotions-vip-program__conditions-table {
  background-color: #00004d; /* Darker blue */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  margin-top: 40px;
  border: 1px solid #FFD700;
}

.page-promotions-vip-program__table-header,
.page-promotions-vip-program__table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 15px 20px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.page-promotions-vip-program__table-header {
  background-color: #FFD700; /* Gold */
  color: #000080; /* Dark Blue */
  font-weight: bold;
  font-size: 1.1em;
  border-bottom: 2px solid #000080;
}

.page-promotions-vip-program__table-row:last-child {
  border-bottom: none;
}

.page-promotions-vip-program__table-row span {
  color: #e0e0e0;
}

.page-promotions-vip-program__table-row:nth-child(even) {
  background-color: rgba(0, 0, 77, 0.5); /* Slightly lighter dark blue for alternating rows */
}

.page-promotions-vip-program__note {
  font-style: italic;
  color: #b0b0b0;
  margin-top: 20px;
  text-align: center;
}

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

.page-promotions-vip-program__benefit-item {
  background-color: #00004d; /* Darker blue */
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #000080;
}

.page-promotions-vip-program__benefit-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 22px rgba(255, 215, 0, 0.2);
}

.page-promotions-vip-program__benefit-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: brightness(1.2) drop-shadow(0 0 5px rgba(255, 215, 0, 0.4));
}

.page-promotions-vip-program__benefit-title {
  font-size: 1.6em;
  color: #FFD700; /* Gold */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions-vip-program__benefit-description {
  font-size: 0.95em;
  line-height: 1.7;
  color: #b0b0b0;
}

/* How to Join */
.page-promotions-vip-program__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-promotions-vip-program__steps-list li {
  background-color: #00004d; /* Darker blue */
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 10px;
  font-size: 1.1em;
  line-height: 1.6;
  color: #e0e0e0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #FFD700; /* Gold accent */
  counter-increment: step-counter;
  position: relative;
}

.page-promotions-vip-program__steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFD700; /* Gold */
  color: #000080; /* Dark Blue */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.page-promotions-vip-program__step-highlight {
  color: #FFD700;
}

/* FAQ Section */
.page-promotions-vip-program__faq-item {
  background-color: #00004d; /* Darker blue */
  border-radius: 10px;
  margin-bottom: 15px;
  padding: 20px 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #000080;
}

.page-promotions-vip-program__faq-question {
  font-size: 1.3em;
  color: #FFD700; /* Gold */
  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.2em;
  color: #FFD700;
  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: 1em;
  line-height: 1.7;
  color: #cccccc;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, opacity 0.4s ease-out;
  opacity: 0;
}

.page-promotions-vip-program__faq-answer.active {
  max-height: 200px; /* Adjust as needed for content length */
  opacity: 1;
  margin-top: 10px;
}

/* Final CTA */
.page-promotions-vip-program__final-cta {
  text-align: center;
  background-color: #00004d; /* Darker blue */
  padding: 80px 0;
  border-top: 2px solid #FFD700;
}

/* 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__level-grid,
  .page-promotions-vip-program__benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions-vip-program__hero-section {
    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__cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-promotions-vip-program__introduction,
  .page-promotions-vip-program__vip-levels,
  .page-promotions-vip-program__upgrade-conditions,
  .page-promotions-vip-program__exclusive-benefits,
  .page-promotions-vip-program__how-to-join,
  .page-promotions-vip-program__faq,
  .page-promotions-vip-program__final-cta {
    padding: 40px 0;
  }
  .page-promotions-vip-program__section-title {
    font-size: 1.8em;
  }
  .page-promotions-vip-program__text-content {
    font-size: 0.95em;
  }
  .page-promotions-vip-program__table-header,
  .page-promotions-vip-program__table-row {
    grid-template-columns: 1fr 1fr;
    font-size: 0.9em;
  }
  .page-promotions-vip-program__table-header span:last-child,
  .page-promotions-vip-program__table-row span:last-child {
    display: none; /* Hide 'Total Valid Bet' for smaller screens if needed, or adjust grid */
  }
  .page-promotions-vip-program__steps-list li::before {
    left: -15px;
    width: 30px;
    height: 30px;
    font-size: 1em;
  }
  .page-promotions-vip-program__steps-list li {
    padding-left: 20px;
  }
}

@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__level-grid,
  .page-promotions-vip-program__benefits-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-vip-program__table-header,
  .page-promotions-vip-program__table-row {
    grid-template-columns: 1fr; /* Stack columns */
    text-align: center;
  }
  .page-promotions-vip-program__table-header span,
  .page-promotions-vip-program__table-row span {
    padding: 5px 0;
    border-bottom: 1px dashed rgba(255, 215, 0, 0.1);
  }
  .page-promotions-vip-program__table-header span:last-child,
  .page-promotions-vip-program__table-row span:last-child {
    display: block; /* Show all again for stacked layout */
    border-bottom: none;
  }
  .page-promotions-vip-program__table-header span:first-child,
  .page-promotions-vip-program__table-row span:first-child {
    font-weight: bold;
    color: #FFD700;
  }
  .page-promotions-vip-program__table-row:last-child span:last-child {
    border-bottom: none;
  }
  .page-promotions-vip-program__steps-list li::before {
    display: none;
  }
  .page-promotions-vip-program__steps-list li {
    border-left: none;
    text-align: center;
    padding: 15px;
  }
}