.page-promotions {
  color: #f0f0f0; /* Default light text for dark body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-promotions__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background: linear-gradient(135deg, #000000 0%, #333333 100%); /* Dark gradient background */
  min-height: 500px;
  overflow: hidden;
}

.page-promotions__hero-content {
  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: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-promotions__hero-description {
  font-size: 1.3em;
  color: #ffffff;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__btn-primary {
  display: inline-block;
  background: #FFD700;
  color: #000000;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: 2px solid #FFD700;
}

.page-promotions__btn-primary:hover {
  background: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions__overview-section,
.page-promotions__special-events,
.page-promotions__how-to-claim,
.page-promotions__faq-section {
  padding: 60px 20px;
  background-color: #1a1a1a;
  color: #f0f0f0;
}

.page-promotions__vip-section,
.page-promotions__video-section {
  padding: 60px 20px;
  background-color: #0d0d0d;
  color: #f0f0f0;
}

.page-promotions__dark-bg {
  background-color: #000000;
  color: #ffffff;
}

.page-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-promotions__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.page-promotions__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #cccccc;
}

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

.page-promotions__card {
  background: #000000;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 20px 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);
  color: #f0f0f0;
}

.page-promotions__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.page-promotions__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

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

.page-promotions__card-text {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 25px;
}

.page-promotions__btn-secondary {
  display: inline-block;
  background: transparent;
  color: #FFD700;
  padding: 10px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid #FFD700;
  transition: all 0.3s ease;
}

.page-promotions__btn-secondary:hover {
  background: #FFD700;
  color: #000000;
  box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
}

.page-promotions__vip-benefits ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-promotions__vip-benefits li {
  background: rgba(255, 215, 0, 0.1);
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 1.1em;
  color: #FFD700;
  border: 1px solid rgba(255, 215, 0, 0.3);
  text-align: center;
  transition: background-color 0.3s ease;
}

.page-promotions__vip-benefits li a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions__vip-benefits li:hover {
  background: rgba(255, 215, 0, 0.2);
}

.page-promotions__vip-image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  margin: 40px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-promotions__btn-centered {
  display: block;
  margin: 40px auto 0 auto;
  max-width: 300px;
}

.page-promotions__event-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions__event-card {
  background: #000000;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  color: #f0f0f0;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-promotions__event-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-promotions__event-title {
  font-size: 1.6em;
  color: #FFD700;
  padding: 20px 20px 10px 20px;
}

.page-promotions__event-text {
  font-size: 1em;
  color: #cccccc;
  padding: 0 20px 20px 20px;
}

.page-promotions__how-to-claim .page-promotions__section-description,
.page-promotions__how-to-claim .page-promotions__note {
  color: #cccccc;
}

.page-promotions__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  counter-reset: step-counter;
}

.page-promotions__steps-list li {
  counter-increment: step-counter;
  background: #000000;
  margin-bottom: 20px;
  padding: 25px 30px;
  border-radius: 10px;
  font-size: 1.1em;
  color: #f0f0f0;
  position: relative;
  padding-left: 70px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-promotions__steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: #FFD700;
  color: #000000;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
}

.page-promotions__steps-list li strong {
  color: #FFD700;
}

.page-promotions__steps-list li a {
  color: #FFD700;
  text-decoration: underline;
}

.page-promotions__note {
  text-align: center;
  font-style: italic;
  margin-top: 30px;
  font-size: 1em;
  color: #aaaaaa;
}

.page-promotions__note a {
  color: #FFD700;
  text-decoration: underline;
}

.page-promotions__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 40px auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-promotions__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  cursor: pointer;
}

.page-promotions__faq-list {
  margin-top: 40px;
}

.page-promotions__faq-item {
  background: #000000;
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFD700;
  cursor: pointer;
  background-color: #1a1a1a;
  transition: background-color 0.3s ease;
}

.page-promotions__faq-question:hover {
  background-color: #2a2a2a;
}

.page-promotions__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-promotions__faq-item.active .page-promotions__faq-toggle {
  transform: rotate(45deg);
}

.page-promotions__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #cccccc;
  background-color: #000000;
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
  max-height: 1000px !important; /* Ensure it expands sufficiently */
  padding: 15px 25px 20px 25px;
}

.page-promotions__faq-answer p {
  margin: 0;
  font-size: 1em;
  color: #cccccc;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__hero-title {
    font-size: 2.8em;
  }
  .page-promotions__hero-description {
    font-size: 1.1em;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__card-title {
    font-size: 1.5em;
  }
  .page-promotions__event-title {
    font-size: 1.4em;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-promotions__hero-title {
    font-size: 2em;
  }
  .page-promotions__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-promotions__btn-primary {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-promotions__overview-section,
  .page-promotions__vip-section,
  .page-promotions__special-events,
  .page-promotions__how-to-claim,
  .page-promotions__video-section,
  .page-promotions__faq-section {
    padding: 40px 15px;
  }
  
  .page-promotions__container {
    padding-left: 0px;
    padding-right: 0px;
  }

  .page-promotions__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  .page-promotions__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-promotions__grid-cards,
  .page-promotions__event-highlights {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions__card,
  .page-promotions__event-card {
    padding: 20px;
  }
  
  .page-promotions__card-image,
  .page-promotions__event-image {
    height: 180px;
  }

  .page-promotions__card-title {
    font-size: 1.3em;
  }
  .page-promotions__card-text {
    font-size: 0.9em;
  }

  .page-promotions__vip-benefits ul {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .page-promotions__steps-list li {
    padding: 20px 20px 20px 60px;
    font-size: 1em;
  }
  .page-promotions__steps-list li::before {
    width: 30px;
    height: 30px;
    font-size: 1em;
    left: 15px;
  }

  .page-promotions__video-wrapper {
    margin: 30px auto;
  }

  .page-promotions__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }
  .page-promotions__faq-answer {
    padding: 0 20px;
  }
  .page-promotions__faq-item.active .page-promotions__faq-answer {
    padding: 15px 20px 15px 20px;
  }

  /* Mobile image responsiveness */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__video-wrapper,
  .page-promotions__cta-buttons,
  .page-promotions__button-group,
  .page-promotions__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important; /* Prevent horizontal scroll */
  }

  /* Mobile video responsiveness */
  .page-promotions video,
  .page-promotions__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions__video-section,
  .page-promotions__video-container,
  .page-promotions__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-promotions__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }
  
  /* Mobile button responsiveness */
  .page-promotions__cta-button,
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary,
  .page-promotions a[class*="button"],
  .page-promotions a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
    text-align: center;
  }
  .page-promotions__cta-buttons,
  .page-promotions__button-group,
  .page-promotions__btn-container {
    flex-direction: column !important;
    gap: 10px;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: 1.8em;
  }
  .page-promotions__btn-primary {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-promotions__section-title {
    font-size: 1.5em;
  }
  .page-promotions__faq-question {
    font-size: 1em;
    padding: 12px 15px;
  }
  .page-promotions__faq-answer {
    padding: 0 15px;
  }
  .page-promotions__faq-item.active .page-promotions__faq-answer {
    padding: 10px 15px 10px 15px;
  }
}