/* style/promotions-vip-exclusive.css */
.page-promotions-vip-exclusive {
  font-family: 'Arial', sans-serif;
  color: #e5dfd3; /* Light text for general content on dark background */
  background-color: #1A202C;
  line-height: 1.6;
}

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

.page-promotions-vip-exclusive .text-center {
  text-align: center;
}

.page-promotions-vip-exclusive .mt-5 {
  margin-top: 3rem;
}

/* Hero Section */
.page-promotions-vip-exclusive .hero-section {
  position: relative;
  background-color: #1A202C;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

.page-promotions-vip-exclusive .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 32, 44, 0.8), rgba(255, 215, 0, 0.2));
  z-index: 1;
}

.page-promotions-vip-exclusive .hero-section .container {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
}

.page-promotions-vip-exclusive .hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

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

.page-promotions-vip-exclusive .hero-image {
  position: absolute;
  bottom: -50px; /* Adjust as needed */
  right: -50px; /* Adjust as needed */
  width: 500px;
  height: auto;
  opacity: 0.1;
  z-index: 0;
}

/* General Buttons */
.page-promotions-vip-exclusive .btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-promotions-vip-exclusive .btn-primary {
  background-color: #FFD700;
  color: #1A202C;
}

.page-promotions-vip-exclusive .btn-primary:hover {
  background-color: #e6c200;
  color: #0d1016;
}

.page-promotions-vip-exclusive .btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-promotions-vip-exclusive .btn-secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
}

/* Sections */
.page-promotions-vip-exclusive .vip-intro-section, 
.page-promotions-vip-exclusive .exclusive-benefits-section, 
.page-promotions-vip-exclusive .how-to-join-section, 
.page-promotions-vip-exclusive .vip-faq-section, 
.page-promotions-vip-exclusive .call-to-action-section {
  padding: 60px 0;
  text-align: center;
}

.page-promotions-vip-exclusive .vip-intro-section {
  background-color: #1A202C;
}

.page-promotions-vip-exclusive .exclusive-benefits-section {
  background-color: #2a3340;
}

.page-promotions-vip-exclusive .how-to-join-section {
  background-color: #1A202C;
}

.page-promotions-vip-exclusive .vip-faq-section {
  background-color: #2a3340;
}

.page-promotions-vip-exclusive .call-to-action-section {
  background-color: #1A202C;
  padding-bottom: 100px;
}

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

.page-promotions-vip-exclusive .section-description {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #e5dfd3;
}

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

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

.page-promotions-vip-exclusive .benefit-item {
  background-color: #1A202C;
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-promotions-vip-exclusive .benefit-item h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-top: 15px;
  margin-bottom: 10px;
}

.page-promotions-vip-exclusive .benefit-item p {
  color: #e5dfd3;
  font-size: 1em;
}

.page-promotions-vip-exclusive .benefit-icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

/* How to Join Steps */
.page-promotions-vip-exclusive .join-steps {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.page-promotions-vip-exclusive .join-steps li {
  background-color: #2a3340;
  padding: 25px 30px;
  border-radius: 10px;
  max-width: 800px;
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-vip-exclusive .join-steps li strong {
  color: #FFD700;
}

.page-promotions-vip-exclusive .join-steps li p {
  margin: 0;
  color: #e5dfd3;
}

.page-promotions-vip-exclusive .join-steps .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #FFD700;
  color: #1A202C;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.2em;
  flex-shrink: 0;
}

.page-promotions-vip-exclusive .join-steps li a {
  color: #FFD700;
  text-decoration: underline;
}

.page-promotions-vip-exclusive .join-steps li a:hover {
  color: #e6c200;
}

/* FAQ Section */
.page-promotions-vip-exclusive .vip-faq-section .faq-item {
  background-color: #1A202C;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-promotions-vip-exclusive .vip-faq-section .faq-item h3 {
  color: #FFD700;
  font-size: 1.3em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-promotions-vip-exclusive .vip-faq-section .faq-item p {
  color: #e5dfd3;
  font-size: 1em;
  margin-bottom: 0;
}

/* Floating Ad */
.page-promotions-vip-exclusive .floating-ad {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #FFD700;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  animation: pulse 2s infinite;
}

.page-promotions-vip-exclusive .floating-ad .ad-link {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  text-decoration: none;
  color: #1A202C;
  font-weight: bold;
  font-size: 1.1em;
}

.page-promotions-vip-exclusive .floating-ad .ad-link img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.page-promotions-vip-exclusive .floating-ad:hover {
  animation: none;
  transform: scale(1.05);
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-vip-exclusive .hero-title {
    font-size: 2.8em;
  }
  .page-promotions-vip-exclusive .hero-subtitle {
    font-size: 1.2em;
  }
  .page-promotions-vip-exclusive .section-title {
    font-size: 2em;
  }
  .page-promotions-vip-exclusive .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-promotions-vip-exclusive .btn-secondary {
    margin-left: 0;
    margin-top: 15px;
  }
  .page-promotions-vip-exclusive .hero-image {
    width: 350px;
    bottom: 0;
    right: 0;
  }
}

@media (max-width: 768px) {
  .page-promotions-vip-exclusive .hero-section {
    padding: 80px 0;
  }
  .page-promotions-vip-exclusive .hero-title {
    font-size: 2.2em;
  }
  .page-promotions-vip-exclusive .hero-subtitle {
    font-size: 1em;
  }
  .page-promotions-vip-exclusive .btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions-vip-exclusive .section-title {
    font-size: 1.8em;
  }
  .page-promotions-vip-exclusive .join-steps li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-promotions-vip-exclusive .floating-ad {
    bottom: 15px;
    right: 15px;
  }
  .page-promotions-vip-exclusive .floating-ad .ad-link {
    padding: 12px 15px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-promotions-vip-exclusive .hero-title {
    font-size: 1.8em;
  }
  .page-promotions-vip-exclusive .hero-subtitle {
    font-size: 0.9em;
  }
  .page-promotions-vip-exclusive .btn {
    display: block;
    width: 100%;
    margin: 10px 0;
  }
  .page-promotions-vip-exclusive .btn-secondary {
    margin-left: 0;
  }
  .page-promotions-vip-exclusive .benefits-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-vip-exclusive .hero-image {
    display: none; /* Hide on very small screens */
  }
  .page-promotions-vip-exclusive .join-steps li {
    padding: 20px;
  }
}