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

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

.page-promotions-vip-program__hero-section {
  background: linear-gradient(135deg, #1A237E 0%, #3F51B5 100%); /* Darker blue gradient */
  color: #FFFFFF;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

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

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

.page-promotions-vip-program__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #1A237E; /* Dark blue text */
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions-vip-program__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

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

.page-promotions-vip-program__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A237E;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-promotions-vip-program__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-promotions-vip-program__section-title {
  font-size: 2.8em;
  color: #1A237E;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
  padding-bottom: 15px;
}

.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__introduction-section,
.page-promotions-vip-program__benefits-section,
.page-promotions-vip-program__how-to-join-section,
.page-promotions-vip-program__faq-section,
.page-promotions-vip-program__final-cta-section,
.page-promotions-vip-program__responsible-gaming-section {
  padding: 60px 0;
}

.page-promotions-vip-program__introduction-section {
  background-color: #f8f8f8;
}

.page-promotions-vip-program__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #444;
}

.page-promotions-vip-program__paragraph a {
  color: #1A237E;
  font-weight: bold;
  text-decoration: none;
}

.page-promotions-vip-program__paragraph a:hover {
  text-decoration: underline;
  color: #FFD700;
}

.page-promotions-vip-program__levels-section {
  background-color: #e8eaf6; /* Lighter shade of main color */
}

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

.page-promotions-vip-program__vip-card {
  background-color: #FFFFFF;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions-vip-program__vip-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-promotions-vip-program__vip-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-promotions-vip-program__vip-level-title {
  font-size: 1.8em;
  color: #1A237E;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-vip-program__vip-description {
  font-size: 1em;
  color: #555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions-vip-program__vip-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
}

.page-promotions-vip-program__vip-features li {
  background-color: #f0f4c3; /* Light yellow for features */
  color: #333;
  padding: 8px 15px;
  margin-bottom: 8px;
  border-radius: 5px;
  font-size: 0.95em;
  display: flex;
  align-items: center;
}

.page-promotions-vip-program__vip-features li::before {
  content: '✔';
  color: #1A237E; /* Dark blue checkmark */
  margin-right: 10px;
  font-weight: bold;
}

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

.page-promotions-vip-program__benefits-section {
  background-color: #FFFFFF;
}

.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: #f5f5f5;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.page-promotions-vip-program__benefit-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-promotions-vip-program__benefit-title {
  font-size: 1.6em;
  color: #1A237E;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-vip-program__benefit-description {
  font-size: 1em;
  color: #666;
}

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

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

.page-promotions-vip-program__steps-list li {
  background-color: #FFFFFF;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  counter-increment: step-counter;
}

.page-promotions-vip-program__steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFD700;
  color: #1A237E;
  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 10px rgba(0, 0, 0, 0.2);
}

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

.page-promotions-vip-program__step-description {
  font-size: 1em;
  color: #666;
}

.page-promotions-vip-program__cta-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: #1A237E;
  border-radius: 15px;
  padding: 40px;
  margin-top: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  color: #FFFFFF;
}

.page-promotions-vip-program__cta-image {
  flex: 1 1 300px;
  max-width: 40%;
  height: auto;
  border-radius: 10px;
  margin-right: 40px;
  object-fit: cover;
}

.page-promotions-vip-program__cta-content {
  flex: 1 1 50%;
}

.page-promotions-vip-program__cta-title {
  font-size: 2.2em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions-vip-program__cta-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-promotions-vip-program__faq-section {
  background-color: #FFFFFF;
}

.page-promotions-vip-program__faq-accordion {
  margin-top: 40px;
}

.page-promotions-vip-program__accordion-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions-vip-program__accordion-header {
  background-color: #1A237E;
  color: #FFFFFF;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-promotions-vip-program__accordion-header:hover {
  background-color: #3F51B5;
}

.page-promotions-vip-program__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  font-weight: bold;
  color: #FFD700;
}

.page-promotions-vip-program__accordion-header.active::after {
  content: '-';
}

.page-promotions-vip-program__accordion-content {
  padding: 0 25px;
  background-color: #f9f9f9;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promotions-vip-program__accordion-content p {
  margin: 15px 0;
  font-size: 1em;
  color: #555;
}

.page-promotions-vip-program__accordion-content p a {
  color: #1A237E;
  font-weight: bold;
  text-decoration: none;
}

.page-promotions-vip-program__accordion-content p a:hover {
  text-decoration: underline;
  color: #FFD700;
}

.page-promotions-vip-program__final-cta-section {
  background-color: #1A237E;
  color: #FFFFFF;
  text-align: center;
  padding: 80px 0;
}

.page-promotions-vip-program__final-cta-section .page-promotions-vip-program__section-title {
  color: #FFD700;
}

.page-promotions-vip-program__final-cta-section .page-promotions-vip-program__section-title::after {
  background-color: #FFFFFF;
}

.page-promotions-vip-program__final-cta-section .page-promotions-vip-program__paragraph {
  color: #e0e0e0;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

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

.page-promotions-vip-program__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-promotions-vip-program__responsible-gaming-section {
  background-color: #f0f0f0;
  text-align: center;
  padding: 50px 0;
  border-top: 1px solid #e0e0e0;
}

.page-promotions-vip-program__responsible-gaming-section .page-promotions-vip-program__section-title {
  font-size: 2em;
  color: #1A237E;
}

.page-promotions-vip-program__responsible-gaming-section .page-promotions-vip-program__paragraph {
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions-vip-program__hero-title {
    font-size: 3em;
  }
  .page-promotions-vip-program__section-title {
    font-size: 2.2em;
  }
  .page-promotions-vip-program__cta-image {
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .page-promotions-vip-program__cta-block {
    flex-direction: column;
    text-align: center;
  }
  .page-promotions-vip-program__cta-content {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .page-promotions-vip-program__hero-title {
    font-size: 2.5em;
  }
  .page-promotions-vip-program__hero-subtitle {
    font-size: 1.2em;
  }
  .page-promotions-vip-program__hero-cta {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions-vip-program__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-promotions-vip-program__section-title {
    font-size: 1.8em;
  }
  .page-promotions-vip-program__vip-grid,
  .page-promotions-vip-program__benefits-grid,
  .page-promotions-vip-program__steps-list {
    grid-template-columns: 1fr;
  }
  .page-promotions-vip-program__cta-title {
    font-size: 1.8em;
  }
  .page-promotions-vip-program__cta-description {
    font-size: 1em;
  }
  .page-promotions-vip-program__final-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions-vip-program__btn--large {
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .page-promotions-vip-program__hero-title {
    font-size: 2em;
  }
  .page-promotions-vip-program__hero-subtitle {
    font-size: 1em;
  }
  .page-promotions-vip-program__section-title {
    font-size: 1.5em;
  }
  .page-promotions-vip-program__btn {
    width: 95%;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-promotions-vip-program__cta-title {
    font-size: 1.5em;
  }
  .page-promotions-vip-program__cta-block {
    padding: 20px;
  }
  .page-promotions-vip-program__accordion-header {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-promotions-vip-program__accordion-content {
    padding: 0 20px;
  }
}