/* style/promotions-vip-program.css */
.page-promotions-vip-program {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0;
  background-color: #1a1e30; /* Slightly lighter than main for body background */
  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, #2A2E43, #0f121e); /* Darker gradient for hero */
  padding: 100px 0;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-promotions-vip-program .hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract_stars,dark_space,vip_background]') no-repeat center center/cover;
  opacity: 0.15;
  z-index: 0;
}

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

.page-promotions-vip-program .hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
  position: relative;
  z-index: 1;
}

.page-promotions-vip-program .section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  position: relative;
  font-weight: bold;
}

.page-promotions-vip-program .section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-promotions-vip-program .section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
  color: #c0c0c0;
}

.page-promotions-vip-program p {
  color: #c0c0c0;
  margin-bottom: 1em;
}

.page-promotions-vip-program .highlight-vb88 {
  color: #FFD700;
  font-weight: bold;
}

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

.page-promotions-vip-program .btn-primary {
  background-color: #FFD700; /* Gold button */
  color: #2A2E43; /* Dark blue text for contrast */
}

.page-promotions-vip-program .btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-vip-program .btn-secondary {
  background-color: #2A2E43; /* Dark blue button */
  color: #FFD700; /* Gold text for contrast */
  border: 2px solid #FFD700;
}

.page-promotions-vip-program .btn-secondary:hover {
  background-color: #3b4263;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

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

.page-promotions-vip-program .link-text {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

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

/* VIP Introduction Section */
.page-promotions-vip-program .vip-introduction-section {
  padding: 80px 0;
  background-color: #202438; /* Slightly lighter dark blue */
}

.page-promotions-vip-program .intro-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-promotions-vip-program .intro-content .content-image {
  max-width: 100%;
  border-radius: 12px;
  margin: 40px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* VIP Levels Section */
.page-promotions-vip-program .vip-levels-section {
  padding: 80px 0;
  background-color: #1a1e30;
}

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

.page-promotions-vip-program .vip-level-card {
  background-color: #2A2E43;
  border-radius: 12px;
  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 rgba(255, 215, 0, 0.2);
}

.page-promotions-vip-program .vip-level-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.page-promotions-vip-program .vip-level-card .level-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

.page-promotions-vip-program .vip-level-card h3 {
  color: #FFD700;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-promotions-vip-program .vip-level-card p {
  color: #e0e0e0;
  font-size: 1em;
  margin-bottom: 10px;
}

.page-promotions-vip-program .vip-level-card ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  text-align: left;
}

.page-promotions-vip-program .vip-level-card ul li {
  color: #c0c0c0;
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
}

.page-promotions-vip-program .vip-level-card ul li::before {
  content: '✓';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-promotions-vip-program .call-to-action-text {
  text-align: center;
  font-size: 1.2em;
  margin-top: 60px;
  color: #e0e0e0;
}

/* Exclusive Benefits Section */
.page-promotions-vip-program .exclusive-benefits-section {
  padding: 80px 0;
  background-color: #202438;
}

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

.page-promotions-vip-program .benefit-card {
  background-color: #2A2E43;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-promotions-vip-program .benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions-vip-program .benefit-card .benefit-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.4));
}

.page-promotions-vip-program .benefit-card h3 {
  color: #FFD700;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-promotions-vip-program .benefit-card p {
  color: #c0c0c0;
  font-size: 0.95em;
}

.page-promotions-vip-program .action-area {
  text-align: center;
  margin-top: 60px;
}

/* How to Join Section */
.page-promotions-vip-program .how-to-join-section {
  padding: 80px 0;
  background-color: #1a1e30;
}

.page-promotions-vip-program .step-by-step-guide {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.page-promotions-vip-program .step-card {
  background-color: #2A2E43;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  flex: 1 1 300px;
  max-width: 380px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-promotions-vip-program .step-card .step-number {
  width: 60px;
  height: 60px;
  background-color: #FFD700;
  color: #2A2E43;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 25px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.page-promotions-vip-program .step-card h3 {
  color: #FFD700;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-promotions-vip-program .step-card p {
  color: #e0e0e0;
}

/* VIP Center Section */
.page-promotions-vip-program .vip-center-section {
  padding: 80px 0;
  background-color: #202438;
}

.page-promotions-vip-program .center-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
}

.page-promotions-vip-program .center-content .content-image-right {
  flex: 1 1 45%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-promotions-vip-program .center-content p {
  flex: 1 1 45%;
  color: #c0c0c0;
  font-size: 1.1em;
}

.page-promotions-vip-program .center-content .btn {
  margin-top: 20px;
  align-self: flex-start;
}

/* Why Choose vb88 Section */
.page-promotions-vip-program .why-choose-vb88-section {
  padding: 80px 0;
  background-color: #1a1e30;
}

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

.page-promotions-vip-program .why-choose-card {
  background-color: #2A2E43;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-promotions-vip-program .why-choose-card .why-choose-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.4));
}

.page-promotions-vip-program .why-choose-card h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-promotions-vip-program .why-choose-card p {
  color: #c0c0c0;
  font-size: 0.95em;
}

/* App Download Section */
.page-promotions-vip-program .app-download-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #2A2E43, #0f121e); /* Darker gradient for app section */
  text-align: center;
}

.page-promotions-vip-program .app-showcase-image {
  max-width: 500px;
  width: 100%;
  margin: 40px auto;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.page-promotions-vip-program .small-text {
  font-size: 0.9em;
  color: #a0a0a0;
  margin-top: 20px;
}

/* 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: 2.2em;
  }
  .page-promotions-vip-program .vip-levels-grid, 
  .page-promotions-vip-program .benefits-grid, 
  .page-promotions-vip-program .why-choose-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-promotions-vip-program .center-content {
    flex-direction: column;
    text-align: center;
  }
  .page-promotions-vip-program .center-content .content-image-right {
    order: -1; /* Image on top for smaller screens */
    max-width: 100%;
  }
  .page-promotions-vip-program .center-content p, 
  .page-promotions-vip-program .center-content .btn {
    align-self: center;
  }
}

@media (max-width: 768px) {
  .page-promotions-vip-program .hero-section, 
  .page-promotions-vip-program .vip-introduction-section, 
  .page-promotions-vip-program .vip-levels-section, 
  .page-promotions-vip-program .exclusive-benefits-section, 
  .page-promotions-vip-program .how-to-join-section, 
  .page-promotions-vip-program .vip-center-section, 
  .page-promotions-vip-program .why-choose-vb88-section, 
  .page-promotions-vip-program .app-download-section {
    padding: 60px 0;
  }
  .page-promotions-vip-program .hero-title {
    font-size: 2.2em;
  }
  .page-promotions-vip-program .hero-subtitle {
    font-size: 1em;
  }
  .page-promotions-vip-program .section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-promotions-vip-program .section-description {
    margin-bottom: 40px;
  }
  .page-promotions-vip-program .btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions-vip-program .vip-level-card, 
  .page-promotions-vip-program .benefit-card, 
  .page-promotions-vip-program .step-card, 
  .page-promotions-vip-program .why-choose-card {
    padding: 25px;
  }
  .page-promotions-vip-program .vip-level-card h3, 
  .page-promotions-vip-program .benefit-card h3, 
  .page-promotions-vip-program .step-card h3, 
  .page-promotions-vip-program .why-choose-card h3 {
    font-size: 1.5em;
  }
  .page-promotions-vip-program .step-by-step-guide {
    flex-direction: column;
    align-items: center;
  }
  .page-promotions-vip-program .step-card {
    max-width: 90%;
  }
  .page-promotions-vip-program .app-showcase-image {
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .page-promotions-vip-program .hero-title {
    font-size: 1.8em;
  }
  .page-promotions-vip-program .section-title {
    font-size: 1.6em;
  }
  .page-promotions-vip-program .vip-levels-grid, 
  .page-promotions-vip-program .benefits-grid, 
  .page-promotions-vip-program .why-choose-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-vip-program .btn {
    width: 100%;
    margin-bottom: 15px;
  }
  .page-promotions-vip-program .action-area .btn {
    display: block;
  }
}