/* style/promotions.css */
.page-promotions {
  color: #ffffff; /* Text color for dark body background */
  background-color: #0D0D0D; /* Ensure consistency with body background */
  padding-top: var(--header-offset, 120px); /* Space for fixed header on all devices */
}

.page-promotions__hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #FFD700, #1A1A1A);
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 500px;
}

.page-promotions__hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 1;
}

.page-promotions__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promotions__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-promotions__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-promotions__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
}

.page-promotions__btn--primary {
  background-color: #FFD700;
  color: #1A1A1A;
  border: 2px solid #FFD700;
}

.page-promotions__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-promotions__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-promotions__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A1A1A;
  transform: translateY(-3px);
}

.page-promotions__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.page-promotions__section-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 25px;
  margin-top: 50px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-promotions__section-intro {
  font-size: 1.1em;
  color: #cccccc;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.page-promotions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.page-promotions__card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-promotions__card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-promotions__card-image {
  width: 100%;
  max-width: 400px; /* Ensure images are not too small */
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
  object-fit: cover;
  min-height: 200px; /* Minimum image height */
}

.page-promotions__card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-promotions__card-description {
  font-size: 1em;
  color: #bbbbbb;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__btn--card {
  padding: 10px 25px;
  font-size: 0.95em;
  background-color: #FFD700;
  color: #1A1A1A;
  border: none;
}

.page-promotions__btn--card:hover {
  background-color: #e6c200;
}

.page-promotions__vip-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  margin-bottom: 60px;
  text-align: left;
}

.page-promotions__vip-image {
  width: 100%;
  max-width: 600px; /* Ensure images are not too small */
  height: auto;
  border-radius: 15px;
  object-fit: cover;
  min-height: 200px; /* Minimum image height */
}

.page-promotions__vip-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 500px;
}

.page-promotions__vip-item {
  background-color: rgba(255, 215, 0, 0.1);
  color: #ffffff;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  font-size: 1.05em;
  border-left: 5px solid #FFD700;
}

.page-promotions__vip-item::before {
  content: '⭐';
  margin-right: 10px;
  font-size: 1.2em;
}

.page-promotions__text-link {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions__text-link:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-promotions__vip-cta-text {
  font-size: 1.1em;
  color: #cccccc;
  margin-top: 30px;
}

.page-promotions__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
  margin-bottom: 60px;
}

.page-promotions__step-card {
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.15);
}

.page-promotions__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #FFD700;
  color: #1A1A1A;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

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

.page-promotions__step-description {
  font-size: 0.95em;
  color: #bbbbbb;
  line-height: 1.6;
}

.page-promotions__how-to-image {
  width: 100%;
  max-width: 800px; /* Ensure images are not too small */
  height: auto;
  border-radius: 15px;
  margin-top: 30px;
  margin-bottom: 60px;
  object-fit: cover;
  min-height: 200px; /* Minimum image height */
}

.page-promotions__terms-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 60px auto;
  max-width: 900px;
  text-align: left;
}

.page-promotions__terms-item {
  background-color: rgba(255, 255, 255, 0.05);
  color: #cccccc;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  font-size: 1em;
  line-height: 1.6;
  border-left: 4px solid #FFD700;
}

.page-promotions__terms-item::before {
  content: '👉';
  margin-right: 10px;
}

.page-promotions__why-choose-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 60px auto;
  max-width: 1000px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-promotions__why-choose-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 25px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-promotions__why-choose-heading {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-promotions__why-choose-description {
  font-size: 0.95em;
  color: #bbbbbb;
  line-height: 1.6;
}

.page-promotions__faq-container {
  max-width: 900px;
  margin: 0 auto 60px auto;
  text-align: left;
}

.page-promotions__faq-item {
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 15px;
  border-left: 5px solid #FFD700;
}

.page-promotions__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-promotions__faq-answer {
  font-size: 1em;
  color: #cccccc;
  line-height: 1.6;
}

.page-promotions__cta-section {
  background: linear-gradient(90deg, #1A1A1A, #333333);
  border-radius: 20px;
  padding: 50px 30px;
  margin-top: 80px;
  margin-bottom: 40px;
  text-align: center;
  border: 2px solid #FFD700;
}

.page-promotions__cta-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-promotions__cta-description {
  font-size: 1.1em;
  color: #f0f0f0;
  max-width: 700px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

.page-promotions__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
  background-color: #FFD700;
  color: #1A1A1A;
  border: none;
}

.page-promotions__btn--large:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promotions__hero-title {
    font-size: 3em;
  }
  .page-promotions__section-title {
    font-size: 2.4em;
  }
  .page-promotions__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding: 60px 15px;
    min-height: 400px;
  }
  .page-promotions__hero-title {
    font-size: 2.5em;
  }
  .page-promotions__hero-description {
    font-size: 1em;
  }
  .page-promotions__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions__btn {
    width: 100%;
    max-width: 300px;
  }
  .page-promotions__content-area {
    padding: 40px 15px;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__section-intro {
    font-size: 0.95em;
  }
  .page-promotions__grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__card {
    padding: 25px;
  }
  .page-promotions__card-image {
    max-width: 100%;
  }
  .page-promotions__card-title {
    font-size: 1.6em;
  }
  .page-promotions__vip-section {
    flex-direction: column;
    gap: 30px;
  }
  .page-promotions__vip-image {
    max-width: 100%;
  }
  .page-promotions__vip-list {
    max-width: 100%;
  }
  .page-promotions__steps {
    grid-template-columns: 1fr;
  }
  .page-promotions__how-to-image {
    max-width: 100%;
  }
  .page-promotions__terms-list, .page-promotions__why-choose-list, .page-promotions__faq-container {
    max-width: 100%;
  }
  .page-promotions__cta-title {
    font-size: 1.8em;
  }
  .page-promotions__cta-description {
    font-size: 1em;
  }
  .page-promotions__btn--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: 2em;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__card-title {
    font-size: 1.4em;
  }
  .page-promotions__vip-item {
    font-size: 1em;
    padding: 12px 15px;
  }
  .page-promotions__step-title {
    font-size: 1.3em;
  }
  .page-promotions__cta-title {
    font-size: 1.6em;
  }
}