.page-promotions {
  color: #ffffff; /* Text color for dark body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #050E1A;
}

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

.page-promotions__hero-section {
  background: linear-gradient(135deg, #0A1931 0%, #0A1931 50%, #FFD700 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions__hero-container {
  position: relative;
  z-index: 1;
}

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

.page-promotions__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.page-promotions__hero-cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A1931;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions__hero-cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-promotions__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin: 60px 0 20px;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

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

.page-promotions__featured-promos, .page-promotions__promo-categories, .page-promotions__how-to-claim, .page-promotions__terms-summary, .page-promotions__detail-pages, .page-promotions__join-us-cta {
  padding: 60px 0;
}

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

.page-promotions__promo-card, .page-promotions__category-item, .page-promotions__detail-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-promotions__promo-card:hover, .page-promotions__category-item:hover, .page-promotions__detail-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.page-promotions__card-image, .page-promotions__category-image {
  width: 100%;
  height: 225px; /* Fixed height for consistency */
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

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

.page-promotions__card-title, .page-promotions__category-title, .page-promotions__detail-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__card-title a, .page-promotions__detail-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions__card-title a:hover, .page-promotions__detail-title a:hover {
  color: #e6c200;
}

.page-promotions__card-description, .page-promotions__category-description, .page-promotions__detail-description {
  font-size: 0.95em;
  color: #cccccc;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__card-button, .page-promotions__category-button, .page-promotions__detail-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A1931;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: auto; /* Push button to bottom */
}

.page-promotions__card-button:hover, .page-promotions__category-button:hover, .page-promotions__detail-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-promotions__category-item {
  text-align: center;
}

.page-promotions__category-image {
  height: 200px;
}

.page-promotions__how-to-claim {
  background-color: rgba(255, 255, 255, 0.05);
}

.page-promotions__claim-steps {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions__step-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.page-promotions__step-item:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

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

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

.page-promotions__step-description a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions__step-description a:hover {
  text-decoration: underline;
}

.page-promotions__cta-button {
  display: block;
  width: fit-content;
  margin: 50px auto 0;
  background-color: #FFD700;
  color: #0A1931;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

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

.page-promotions__terms-summary {
  background-color: #0A1931;
}

.page-promotions__terms-list {
  list-style: disc;
  color: #cccccc;
  max-width: 900px;
  margin: 40px auto;
  padding-left: 25px;
}

.page-promotions__terms-item {
  margin-bottom: 10px;
  line-height: 1.6;
}

.page-promotions__terms-note {
  text-align: center;
  font-size: 1em;
  color: #cccccc;
  margin-top: 30px;
}

.page-promotions__terms-note a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions__terms-note a:hover {
  text-decoration: underline;
}

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

.page-promotions__detail-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  text-align: center;
}

.page-promotions__detail-title {
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-promotions__detail-description {
  margin-bottom: 25px;
}

.page-promotions__join-us-cta {
  background: linear-gradient(90deg, #0A1931, #0A1931 70%, #FFD700);
  text-align: center;
  padding: 80px 0;
}

.page-promotions__join-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__join-description {
  font-size: 1.2em;
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.page-promotions__join-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A1931;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.6);
}

.page-promotions__join-button:hover {
  background-color: #e6c200;
  transform: translateY(-5px);
}

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

@media (max-width: 768px) {
  .page-promotions__hero-title {
    font-size: 2.5em;
  }
  .page-promotions__hero-description {
    font-size: 1em;
  }
  .page-promotions__section-title, .page-promotions__join-title {
    font-size: 2em;
  }
  .page-promotions__promo-grid, .page-promotions__category-grid, .page-promotions__claim-steps {
    grid-template-columns: 1fr;
  }
  .page-promotions__promo-card, .page-promotions__category-item, .page-promotions__detail-card {
    margin: 0 10px;
  }
  .page-promotions__hero-section, .page-promotions__featured-promos, .page-promotions__promo-categories, .page-promotions__how-to-claim, .page-promotions__terms-summary, .page-promotions__detail-pages, .page-promotions__join-us-cta {
    padding: 40px 0;
  }
  .page-promotions__hero-cta-button, .page-promotions__cta-button, .page-promotions__join-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions__card-image, .page-promotions__category-image {
    height: 200px;
  }
  .page-promotions__card-title, .page-promotions__category-title, .page-promotions__detail-title {
    font-size: 1.4em;
  }
  .page-promotions__step-title {
    font-size: 1.5em;
  }
  .page-promotions__join-button {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: 2em;
  }
  .page-promotions__section-title, .page-promotions__join-title {
    font-size: 1.8em;
  }
  .page-promotions__container {
    padding: 0 15px;
  }
  .page-promotions__hero-section {
    padding: 60px 0;
  }
  .page-promotions__promo-card, .page-promotions__category-item, .page-promotions__detail-card {
    margin: 0;
  }
  .page-promotions__hero-cta-button, .page-promotions__cta-button, .page-promotions__join-button {
    width: 90%;
  }
}