/* style/promotions.css */
.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light text for dark background */
  background-color: #1A202C;
  line-height: 1.6;
}

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

.page-promotions__section {
  padding: 60px 0;
  text-align: center;
}

.page-promotions__section:nth-child(odd) {
  background-color: #2D3748; /* Slightly lighter dark background */
}

.page-promotions__hero {
  background: linear-gradient(135deg, #1A202C 0%, #303F50 100%);
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-promotions__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-promotions__hero-subtitle {
  font-size: 1.3em;
  color: #C0C0C0;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-promotions__hero-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  margin-top: 40px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-promotions__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1.1em;
}

.page-promotions__btn--primary {
  background-color: #FFD700;
  color: #1A202C;
}

.page-promotions__btn--primary:hover {
  background-color: #E5C200;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__btn--secondary {
  background-color: #38A169;
  color: #FFFFFF;
}

.page-promotions__btn--secondary:hover {
  background-color: #2F855A;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-promotions__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-promotions__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-promotions__section-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-promotions__text-content {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #C0C0C0;
}

.page-promotions__list,
.page-promotions__ordered-list {
  list-style-position: inside;
  text-align: left;
  max-width: 900px;
  margin: 0 auto 30px;
  padding-left: 20px;
  font-size: 1.1em;
  color: #C0C0C0;
}

.page-promotions__list li,
.page-promotions__ordered-list li {
  margin-bottom: 15px;
  line-height: 1.8;
}

.page-promotions__list li strong,
.page-promotions__ordered-list li strong {
  color: #FFD700;
}

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

.page-promotions__card {
  background-color: #1A202C;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

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

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

.page-promotions__card-list {
  list-style-type: disc;
  list-style-position: inside;
  margin-bottom: 20px;
  padding-left: 0;
  color: #B0B0B0;
}

.page-promotions__card-list li {
  margin-bottom: 8px;
}

.page-promotions__card .page-promotions__btn {
  align-self: flex-start;
}

.page-promotions__how-to-claim .page-promotions__ordered-list {
  list-style-type: decimal;
  color: #C0C0C0;
}

.page-promotions__how-to-claim .page-promotions__ordered-list a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions__how-to-claim .page-promotions__ordered-list a:hover {
  text-decoration: underline;
}

.page-promotions__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__image--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions__detail-card {
  background-color: #2D3748;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions__detail-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

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

.page-promotions__detail-card-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-promotions__detail-card-title a:hover {
  text-decoration: underline;
}

.page-promotions__detail-card-description {
  font-size: 1em;
  color: #B0B0B0;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

@media (max-width: 768px) {
  .page-promotions__hero {
    padding: 80px 0 40px;
  }
  .page-promotions__hero-title {
    font-size: 2.5em;
  }
  .page-promotions__hero-subtitle {
    font-size: 1.1em;
  }
  .page-promotions__section {
    padding: 40px 0;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__text-content,
  .page-promotions__list,
  .page-promotions__ordered-list,
  .page-promotions__card-description {
    font-size: 0.95em;
  }
  .page-promotions__card-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__card-title {
    font-size: 1.5em;
  }
  .page-promotions__detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: 2em;
  }
  .page-promotions__hero-subtitle {
    font-size: 1em;
  }
  .page-promotions__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__text-content {
    font-size: 0.9em;
  }
  .page-promotions__list,
  .page-promotions__ordered-list {
    padding-left: 15px;
  }
}