.page-promotions {
  padding-top: 120px; /* Desktop padding to clear fixed header */
  background-color: #000; /* Assuming body background is #000 */
  color: #ffffff; /* Light text for dark body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-promotions__section-title {
  font-size: 36px;
  font-weight: bold;
  color: #FFD700; /* Gold color for titles */
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
}

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

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

.page-promotions__section-description--light {
  color: #ffffff;
}

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

.page-promotions__link-text:hover {
  color: #e6c200;
}

/* Hero Section */
.page-promotions__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #1A1A1A 0%, #000 100%);
  position: relative;
  overflow: hidden;
}

.page-promotions__hero-container {
  text-align: center;
  max-width: 900px;
  z-index: 2;
}

.page-promotions__hero-title {
  font-size: 48px;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.page-promotions__hero-description {
  font-size: 20px;
  color: #f0f0f0;
  margin-bottom: 30px;
}

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

.page-promotions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

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

.page-promotions__cta-buttons--center {
  margin-top: 40px;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 35px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  max-width: 100%; /* Ensure responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__cta-button--primary {
  background-color: #FFD700;
  color: #1A1A1A;
  border: 2px solid #FFD700;
}

.page-promotions__cta-button--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

.page-promotions__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #1A1A1A;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Promo Types Section */
.page-promotions__promo-types-section {
  padding: 80px 0;
  background-color: #1A1A1A;
}

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

.page-promotions__promo-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.page-promotions__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border-color: #FFD700;
}

.page-promotions__promo-card-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-promotions__promo-card-title {
  font-size: 24px;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

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

.page-promotions__promo-card-button {
  display: inline-block;
  padding: 10px 25px;
  background-color: #FFD700;
  color: #1A1A1A;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  max-width: 100%; /* Ensure responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__promo-card-button:hover {
  background-color: #e6c200;
  transform: translateY(-1px);
}

/* Featured Promos Section */
.page-promotions__featured-promos-section {
  padding: 80px 0;
  background-color: #0d0d0d;
}

.page-promotions__dark-section {
  background-color: #0d0d0d;
}

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

.page-promotions__featured-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.15);
}

.page-promotions__featured-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  border-color: #FFD700;
}

.page-promotions__featured-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.page-promotions__featured-card-content {
  padding: 30px;
}

.page-promotions__featured-card-title {
  font-size: 26px;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__featured-card-text {
  font-size: 17px;
  color: #e0e0e0;
  margin-bottom: 25px;
}

.page-promotions__btn-primary {
  display: inline-block;
  padding: 12px 28px;
  background-color: #FFD700;
  color: #1A1A1A;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 17px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  max-width: 100%; /* Ensure responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

/* Guide Section */
.page-promotions__guide-section {
  padding: 80px 0;
  background-color: #1A1A1A;
}

.page-promotions__guide-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: guide-counter;
}

.page-promotions__guide-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 20px;
  position: relative;
  padding-left: 80px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-promotions__guide-item::before {
  counter-increment: guide-counter;
  content: counter(guide-counter);
  position: absolute;
  left: 30px;
  top: 30px;
  width: 40px;
  height: 40px;
  background-color: #FFD700;
  color: #1A1A1A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
}

.page-promotions__guide-item-title {
  font-size: 22px;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions__guide-item-text {
  font-size: 17px;
  color: #e0e0e0;
}

/* Terms Section */
.page-promotions__terms-section {
  padding: 80px 0;
  background-color: #000;
}

.page-promotions__terms-list {
  list-style: disc;
  padding-left: 20px;
  color: #f0f0f0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__terms-item {
  margin-bottom: 15px;
  font-size: 16px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__hero-title {
    font-size: 40px;
  }
  .page-promotions__section-title {
    font-size: 32px;
  }
  .page-promotions__featured-card-title {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .page-promotions {
    padding-top: 100px !important; /* Mobile padding to clear fixed header */
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions__container {
    padding: 0;
  }

  .page-promotions__hero-section {
    padding: 40px 15px;
  }

  .page-promotions__hero-title {
    font-size: 32px;
  }

  .page-promotions__hero-description {
    font-size: 16px;
  }

  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-promotions__cta-button {
    padding: 12px 25px;
    font-size: 16px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions__section-title {
    font-size: 28px;
  }

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

  .page-promotions__promo-types-section, 
  .page-promotions__featured-promos-section, 
  .page-promotions__guide-section, 
  .page-promotions__terms-section {
    padding: 50px 0;
  }

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

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

  .page-promotions__promo-card-image {
    max-width: 200px;
  }

  .page-promotions__promo-card-title {
    font-size: 20px;
  }

  .page-promotions__promo-card-text {
    font-size: 15px;
  }

  .page-promotions__promo-card-button, 
  .page-promotions__btn-primary {
    padding: 10px 20px;
    font-size: 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions__featured-card-image {
    height: 200px;
  }

  .page-promotions__featured-card-content {
    padding: 20px;
  }

  .page-promotions__featured-card-title {
    font-size: 20px;
  }

  .page-promotions__featured-card-text {
    font-size: 15px;
  }

  .page-promotions__guide-item {
    padding: 20px;
    padding-left: 60px;
  }

  .page-promotions__guide-item::before {
    left: 20px;
    top: 20px;
    width: 30px;
    height: 30px;
    font-size: 18px;
  }

  .page-promotions__guide-item-title {
    font-size: 18px;
  }

  .page-promotions__guide-item-text {
    font-size: 15px;
  }

  .page-promotions__terms-item {
    font-size: 15px;
  }

  /* Image responsiveness */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Container responsiveness */
  .page-promotions__hero-section, 
  .page-promotions__promo-types-section, 
  .page-promotions__featured-promos-section, 
  .page-promotions__guide-section, 
  .page-promotions__terms-section, 
  .page-promotions__container, 
  .page-promotions__promo-card, 
  .page-promotions__featured-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-promotions__hero-image-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}