.page-promotions {
  color: #ffffff; /* Body background is dark (#0a0a0a), so text should be light */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #0a0a0a; /* Ensure consistency with body background */
}

.page-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding */
  background-color: #0a0a0a; /* Match body background */
}

.page-promotions__hero-section img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.page-promotions__hero-content {
  padding: 40px 20px;
  text-align: center;
  max-width: 900px;
  margin-top: -80px; /* Adjust as needed for visual overlap without DOM overlap */
  position: relative;
  z-index: 1;
}

.page-promotions__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.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 {
  display: inline-block;
  background: #26A9E0;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #26A9E0;
  box-sizing: border-box;
}

.page-promotions__btn-primary:hover {
  background-color: #1e87b8;
  transform: translateY(-2px);
}

.page-promotions__btn-secondary {
  display: inline-block;
  background: transparent;
  color: #26A9E0;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  border: 2px solid #26A9E0;
  box-sizing: border-box;
}

.page-promotions__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
  transform: translateY(-2px);
}

.page-promotions__intro-section,
.page-promotions__how-to-claim,
.page-promotions__faq-section {
  padding: 60px 0;
}

.page-promotions__light-bg {
  background-color: #1a1a1a; /* Darker grey for contrast on dark body */
  color: #ffffff;
}

.page-promotions__dark-bg {
  background-color: #0d0d0d; /* Slightly lighter than body for card background */
  color: #ffffff;
}

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

.page-promotions__section-description {
  font-size: 1rem;
  color: #cccccc;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-promotions__featured-promotions {
  padding: 60px 0;
  background-color: #0a0a0a;
}

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

.page-promotions__promotion-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-promotions__promotion-card:hover {
  transform: translateY(-5px);
}

.page-promotions__promotion-card img {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  min-width: 200px; /* Min size requirement */
  min-height: 200px; /* Min size requirement */
}

.page-promotions__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-promotions__card-text {
  font-size: 0.95rem;
  color: #cccccc;
  margin-bottom: 20px;
}

.page-promotions__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-promotions__step-item {
  background-color: #0d0d0d;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions__step-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 15px;
  background-color: rgba(38, 169, 224, 0.1);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-promotions__step-title {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-promotions__step-text {
  font-size: 0.9rem;
  color: #cccccc;
}

.page-promotions__process-image {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 60px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  min-width: 200px; /* Min size requirement */
  min-height: 200px; /* Min size requirement */
}

.page-promotions__vip-offers {
  padding: 60px 0;
  text-align: center;
  background-color: #0a0a0a;
}

.page-promotions__vip-offers .page-promotions__btn-primary {
  margin-top: 30px;
}

.page-promotions__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__faq-item {
  background-color: #0d0d0d;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.page-promotions__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  color: #ffffff;
  background-color: #1a1a1a;
  transition: background-color 0.3s ease;
}

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

.page-promotions__faq-item summary:hover {
  background-color: #26A9E0;
}

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

.page-promotions__faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  margin-left: 15px;
  color: #26A9E0;
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
  color: #ffffff;
}

.page-promotions__faq-answer {
  padding: 20px 25px;
  background-color: #0d0d0d;
  color: #cccccc;
  font-size: 0.95rem;
}

.page-promotions__cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: #26A9E0;
}

.page-promotions__cta-section .page-promotions__section-title {
  color: #ffffff;
}

.page-promotions__cta-section .page-promotions__section-description {
  color: #e0e0e0;
}

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

.page-promotions__cta-buttons .page-promotions__btn-primary {
  background: #0a0a0a;
  border-color: #0a0a0a;
}

.page-promotions__cta-buttons .page-promotions__btn-primary:hover {
  background-color: #333333;
  border-color: #333333;
}

.page-promotions__cta-buttons .page-promotions__btn-secondary {
  background: #ffffff;
  color: #26A9E0;
  border-color: #ffffff;
}

.page-promotions__cta-buttons .page-promotions__btn-secondary:hover {
  background-color: #e0e0e0;
  color: #26A9E0;
  border-color: #e0e0e0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions__promotion-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-content {
    margin-top: -60px;
    padding: 30px 15px;
  }

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

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

  .page-promotions__btn-primary,
  .page-promotions__btn-secondary {
    padding: 12px 25px;
    font-size: 0.9rem;
  }

  .page-promotions__intro-section,
  .page-promotions__how-to-claim,
  .page-promotions__faq-section,
  .page-promotions__featured-promotions,
  .page-promotions__vip-offers,
  .page-promotions__cta-section {
    padding: 40px 0;
  }

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

  .page-promotions__section-description {
    margin-bottom: 30px;
  }

  .page-promotions__promotion-grid,
  .page-promotions__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions__promotion-card img {
    height: 200px; /* Adjust height for smaller screens */
  }

  .page-promotions__card-title {
    font-size: 1.2rem;
  }

  .page-promotions__card-text {
    font-size: 0.85rem;
  }

  .page-promotions__step-item {
    padding: 25px 15px;
  }

  .page-promotions__step-number {
    font-size: 2rem;
    width: 50px;
    height: 50px;
  }

  .page-promotions__step-title {
    font-size: 1.1rem;
  }

  .page-promotions__faq-item summary {
    font-size: 1rem;
    padding: 15px 20px;
  }

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

  .page-promotions__faq-answer {
    padding: 15px 20px;
    font-size: 0.9rem;
  }

  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .page-promotions__cta-buttons .page-promotions__btn-primary,
  .page-promotions__cta-buttons .page-promotions__btn-secondary {
    width: 100%;
  }

  /* Mobile specific overrides with !important */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__hero-section,
  .page-promotions__intro-section,
  .page-promotions__featured-promotions,
  .page-promotions__how-to-claim,
  .page-promotions__vip-offers,
  .page-promotions__faq-section,
  .page-promotions__cta-section,
  .page-promotions__promotion-card,
  .page-promotions__step-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no horizontal scroll */
  }

  .page-promotions__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }

  .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;
  }

  .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;
    flex-wrap: wrap !important;
    gap: 10px;
    overflow: hidden !important;
  }

  .page-promotions__cta-buttons {
    flex-direction: column !important; /* Force vertical stacking on mobile */
  }
}