.page-promotions {
  color: #ffffff; /* Body background is dark, so text should be light */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, header offset handled by body */
  background: #0a0a0a; /* Ensure dark background for hero */
  text-align: center;
}

.page-promotions__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-promotions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-promotions__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text */
  border-radius: 10px;
}

.page-promotions__main-title {
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  /* clamp for responsive font size, avoiding fixed large values */
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.page-promotions__hero-description {
  font-size: 1.1rem;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__btn-primary {
  background: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-promotions__btn-primary:hover {
  background: #1e87bb;
  border-color: #1e87bb;
}

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

.page-promotions__btn-secondary:hover {
  background: #26A9E0;
  color: #FFFFFF;
}

.page-promotions__section {
  padding: 80px 20px;
  text-align: center;
}

.page-promotions__intro-section {
  background: #0a0a0a; /* Dark background */
}

.page-promotions__types-section {
  background: #1a1a1a; /* Slightly lighter dark background */
}

.page-promotions__guide-section {
  background: #0a0a0a;
}

.page-promotions__terms-section {
  background: #1a1a1a;
}

.page-promotions__faq-section {
  background: #0a0a0a;
}

.page-promotions__cta-section {
  background: #26A9E0; /* Brand color background */
  color: #FFFFFF;
}

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

.page-promotions__section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #26A9E0;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-promotions__dark-bg .page-promotions__section-title,
.page-promotions__cta-section .page-promotions__section-title {
  color: #FFFFFF; /* White title on dark/brand background */
}

.page-promotions__text-block {
  font-size: 1.05rem;
  color: #f0f0f0;
  margin-bottom: 25px;
  line-height: 1.7;
  text-align: left;
}

.page-promotions__link {
  color: #26A9E0;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-promotions__link:hover {
  color: #1e87bb;
}

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

.page-promotions__promo-card {
  background: rgba(255, 255, 255, 0.1); /* Semi-transparent white on dark background */
  border-radius: 12px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  color: #ffffff;
}

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

.page-promotions__card-title {
  font-size: 1.5rem;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.page-promotions__promo-card .page-promotions__card-title {
  color: #FFFFFF;
}

.page-promotions__card-description {
  font-size: 0.95rem;
  color: #e0e0e0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__promo-card .page-promotions__btn-secondary {
  align-self: flex-start;
  margin-top: auto; /* Push button to bottom */
  background: #EA7C07; /* Login color for action button */
  color: #FFFFFF;
  border-color: #EA7C07;
}

.page-promotions__promo-card .page-promotions__btn-secondary:hover {
  background: #d46f06;
  border-color: #d46f06;
}

.page-promotions__guide-list,
.page-promotions__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  text-align: left;
}

.page-promotions__list-item {
  background: rgba(255, 255, 255, 0.08); /* Slightly lighter background for list items */
  padding: 18px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.05rem;
  color: #f0f0f0;
  line-height: 1.7;
  position: relative;
  padding-left: 45px;
}

.page-promotions__list-item strong {
  color: #26A9E0;
}

.page-promotions__list-item::before {
  content: '✔';
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #EA7C07; /* Login color as bullet */
  font-weight: bold;
  font-size: 1.2rem;
}

.page-promotions__terms-list .page-promotions__list-item::before {
  content: '❗';
  color: #EA7C07;
}

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

.page-promotions__faq-item {
  background: rgba(255, 255, 255, 0.12); /* Slightly lighter background for FAQ item */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #26A9E0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-promotions__faq-question::-webkit-details-marker {
  display: none;
}

.page-promotions__faq-item[open] .page-promotions__faq-question {
  background: rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid #26A9E0;
}

.page-promotions__faq-qtext {
  flex-grow: 1;
  color: #FFFFFF;
}

.page-promotions__faq-toggle {
  font-size: 1.8rem;
  font-weight: normal;
  line-height: 1;
  margin-left: 15px;
  color: #EA7C07;
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
  content: '−';
}

.page-promotions__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.6;
  text-align: left;
}

.page-promotions__cta-buttons {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions__section {
    padding: 60px 15px;
  }

  .page-promotions__hero-content {
    padding: 30px 15px;
  }

  .page-promotions__main-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-promotions__hero-content {
    padding: 20px 15px;
  }

  .page-promotions__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-promotions__hero-description {
    font-size: 1rem;
  }

  .page-promotions__btn-primary,
  .page-promotions__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-promotions__promo-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions__section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
    margin-bottom: 30px;
  }

  .page-promotions__text-block,
  .page-promotions__list-item,
  .page-promotions__faq-question,
  .page-promotions__faq-answer {
    font-size: 0.95rem;
  }

  .page-promotions__faq-question {
    padding: 15px 20px;
  }

  .page-promotions__faq-toggle {
    font-size: 1.5rem;
  }

  .page-promotions__faq-answer {
    padding: 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__container,
  .page-promotions__promo-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-promotions__promo-card {
    padding: 20px;
  }

  .page-promotions__hero-image-wrapper {
    overflow: hidden !important;
  }
  
  .page-promotions__hero-image {
    filter: brightness(0.6) !important; /* Slightly less dark on mobile */
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-section {
    padding: 30px 10px;
    padding-top: 10px !important;
  }

  .page-promotions__main-title {
    font-size: clamp(1.5rem, 8vw, 2.2rem);
  }

  .page-promotions__section {
    padding: 40px 10px;
  }

  .page-promotions__container {
    padding: 0 10px;
  }
}