/* style/promotions-vip-program.css */
.page-promotions-vip-program {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A2239; /* Main dark background color */
  line-height: 1.6;
}

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

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

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

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

.page-promotions-vip-program__hero-description {
  font-size: 1.3em;
  color: #C0C0C0; /* Lighter gray for descriptions */
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

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

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

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

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

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

/* Sections */
.page-promotions-vip-program__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-promotions-vip-program__section:last-of-type {
  border-bottom: none;
}

.page-promotions-vip-program__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

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

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

/* Grid Layouts */
.page-promotions-vip-program__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Feature Card */
.page-promotions-vip-program__feature-card {
  background-color: #1A3A5A; /* Slightly lighter dark blue */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-promotions-vip-program__feature-card:hover {
  transform: translateY(-10px);
  background-color: #2a4c7a;
}

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

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

.page-promotions-vip-program__card-text {
  color: #E0E0E0;
  font-size: 1em;
}

/* VIP Levels Table */
.page-promotions-vip-program__image-wrapper {
  text-align: center;
  margin-bottom: 40px;
}

.page-promotions-vip-program__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-promotions-vip-program__levels-table {
  margin-top: 50px;
  overflow-x: auto;
}

.page-promotions-vip-program__table-title {
  font-size: 1.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
}

.page-promotions-vip-program__levels-table table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  background-color: #1A3A5A;
  border-radius: 10px;
  overflow: hidden;
}

.page-promotions-vip-program__levels-table th,
.page-promotions-vip-program__levels-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-promotions-vip-program__levels-table th {
  background-color: #0A2239;
  color: #FFD700;
  font-weight: bold;
  font-size: 1.1em;
}

.page-promotions-vip-program__levels-table td {
  color: #E0E0E0;
}

.page-promotions-vip-program__levels-table tr:nth-child(even) {
  background-color: #122c47; /* Slightly different background for even rows */
}

.page-promotions-vip-program__levels-table tr:hover {
  background-color: #2a4c7a;
}

.page-promotions-vip-program__note {
  font-size: 0.9em;
  color: #888;
  text-align: center;
  margin-top: 20px;
}

/* 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: #1A3A5A;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.page-promotions-vip-program__benefit-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.4));
}

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

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

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

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

.page-promotions-vip-program__step-card {
  background-color: #1A3A5A;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.1);
  position: relative;
  padding-top: 60px;
}

.page-promotions-vip-program__step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFD700;
  color: #0A2239;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
}

/* Security Section */
.page-promotions-vip-program__security-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-promotions-vip-program__security-text {
  flex: 1;
  min-width: 300px;
  color: #E0E0E0;
}

.page-promotions-vip-program__security-text p {
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-promotions-vip-program__security-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

/* FAQ Section */
.page-promotions-vip-program__faq-item {
  background-color: #1A3A5A;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.08);
}

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

.page-promotions-vip-program__faq-answer {
  color: #C0C0C0;
  font-size: 1em;
  display: block; /* Ensure it's visible by default for static page */
  margin-top: 10px;
}

.page-promotions-vip-program__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

/* Final CTA */
.page-promotions-vip-program__section--cta-final {
  background-color: #1A3A5A;
  padding: 80px 0;
  text-align: center;
}

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

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

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-vip-program__hero-title {
    font-size: 2.8em;
  }
  .page-promotions-vip-program__section-title {
    font-size: 2em;
  }
  .page-promotions-vip-program__security-content {
    flex-direction: column;
  }
  .page-promotions-vip-program__security-image-wrapper {
    order: -1; /* Image above text on smaller screens */
  }
}

@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-description {
    font-size: 1.1em;
  }
  .page-promotions-vip-program__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions-vip-program__section {
    padding: 40px 0;
  }
  .page-promotions-vip-program__section-title {
    font-size: 1.8em;
  }
  .page-promotions-vip-program__section-intro {
    font-size: 1em;
  }
  .page-promotions-vip-program__grid, 
  .page-promotions-vip-program__benefits-grid, 
  .page-promotions-vip-program__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-vip-program__hero-actions, 
  .page-promotions-vip-program__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions-vip-program__levels-table th, 
  .page-promotions-vip-program__levels-table td {
    padding: 10px;
    font-size: 0.9em;
  }
  .page-promotions-vip-program__faq-item {
    padding: 20px;
  }
  .page-promotions-vip-program__faq-question {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-promotions-vip-program__hero-title {
    font-size: 1.8em;
  }
  .page-promotions-vip-program__hero-description {
    font-size: 0.95em;
  }
  .page-promotions-vip-program__button {
    width: 100%;
    max-width: 280px;
  }
  .page-promotions-vip-program__section-title {
    font-size: 1.5em;
  }
}