.page-promotions {
  color: #ffffff; /* Default text color for dark body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: transparent; /* Body background handled by shared.css */
}

.page-promotions__hero-section {
  position: relative;
  width: 100%;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
  background: linear-gradient(135deg, #A020F0, #6A0DAD);
  color: #ffffff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.page-promotions__hero-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.page-promotions__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  color: #FFD700; /* Gold for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-promotions__intro-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.9;
}

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

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-promotions__btn-primary {
  background: #FFD700;
  color: #333333; /* Dark text for gold background */
}

.page-promotions__btn-primary:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

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

.page-promotions__btn-secondary:hover {
  background: #FFD700;
  color: #333333;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

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

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

.page-promotions__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-promotions__promotion-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
}

.page-promotions__promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions__card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

.page-promotions__card-button {
  display: inline-block;
  padding: 10px 25px;
  background: #A020F0;
  color: #ffffff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  align-self: flex-start;
}

.page-promotions__card-button:hover {
  background: #8e1ad8;
  transform: translateY(-1px);
}

.page-promotions__claim-guide {
  background-color: #1a1a1a;
  padding: 80px 0;
}

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

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

.page-promotions__step-item:hover {
  transform: translateY(-5px);
}

.page-promotions__step-icon-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  background: #A020F0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 5px rgba(160, 32, 240, 0.3);
}

.page-promotions__step-icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

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

.page-promotions__step-text {
  color: #e0e0e0;
  font-size: 0.95em;
}

.page-promotions__cta-bottom {
  text-align: center;
  margin-top: 50px;
}

.page-promotions__terms-summary {
  background-color: #0a0a0a;
  padding: 80px 0;
}

.page-promotions__terms-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto 0;
}

.page-promotions__terms-list li {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #A020F0;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  color: #f0f0f0;
  font-size: 1em;
}

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

.page-promotions__final-text {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
  color: #e0e0e0;
}

.page-promotions__final-text a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-promotions__final-text a:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-promotions__join-cta {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(90deg, #A020F0, #FFD700);
  color: #ffffff;
}

.page-promotions__join-cta .page-promotions__section-title {
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-promotions__join-cta .page-promotions__section-description {
  color: #f8f8f8;
}

.page-promotions__join-cta .page-promotions__cta-buttons {
  margin-top: 30px;
}

.page-promotions__join-cta .page-promotions__btn-primary {
  background: #333333;
  color: #ffffff;
}

.page-promotions__join-cta .page-promotions__btn-primary:hover {
  background: #000000;
  transform: translateY(-2px);
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__main-title {
    font-size: 2.8em;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding: 40px 15px;
    padding-top: var(--header-offset, 120px) !important;
    min-height: 300px;
  }
  .page-promotions__main-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-promotions__intro-description {
    font-size: 1em;
    margin-bottom: 25px;
  }
  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    box-sizing: border-box;
  }
  .page-promotions__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-promotions__container {
    padding: 30px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }
  .page-promotions__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-promotions__promotions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions__card-image {
    height: 180px;
  }
  .page-promotions__card-content {
    padding: 20px;
  }
  .page-promotions__card-title {
    font-size: 1.4em;
    margin-bottom: 10px;
  }
  .page-promotions__card-text {
    font-size: 0.9em;
    margin-bottom: 15px;
  }
  .page-promotions__card-button {
    padding: 8px 20px;
    font-size: 0.9em;
  }
  .page-promotions__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions__step-item {
    padding: 25px;
  }
  .page-promotions__step-icon-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
  }
  .page-promotions__step-icon {
    width: 55px;
    height: 55px;
  }
  .page-promotions__step-title {
    font-size: 1.2em;
  }
  .page-promotions__step-text {
    font-size: 0.85em;
  }
  .page-promotions__cta-bottom {
    margin-top: 30px;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-promotions__cta-bottom .page-promotions__btn-primary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-promotions__terms-list {
    margin-top: 30px;
  }
  .page-promotions__terms-list li {
    padding: 12px 15px;
    font-size: 0.9em;
  }
  .page-promotions__final-text {
    font-size: 0.95em;
  }
  .page-promotions__join-cta {
    padding: 60px 15px;
  }
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions__hero-section,
  .page-promotions__current-promotions,
  .page-promotions__claim-guide,
  .page-promotions__terms-summary,
  .page-promotions__join-cta {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow: hidden !important;
  }
  .page-promotions__promotions-grid, .page-promotions__steps-grid {
    padding-left: 15px;
    padding-right: 15px;
  }
}