/* style/promotions.css */
.page-promotions {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFFFFF; /* Default text color for dark background */
  background-color: #0A192F; /* Primary background color */
}

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

.page-promotions__hero-section {
  background: linear-gradient(135deg, #0A192F 0%, #30476E 100%); /* Darker gradient for hero */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-promotions__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #E0E0E0;
}

.page-promotions__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Auxiliary color for CTA */
  color: #0A192F; /* Dark text on light button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-promotions__secondary-button {
  display: inline-block;
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin-left: 15px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-promotions__secondary-button:hover {
  background-color: #FFD700;
  color: #0A192F;
}

.page-promotions__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Auxiliary color for titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
}

.page-promotions__section-subtitle {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: -20px auto 60px;
  color: #E0E0E0;
}

.page-promotions__why-choose-section,
.page-promotions__featured-promotions,
.page-promotions__how-to-claim-section,
.page-promotions__tips-section,
.page-promotions__about-18win1-section {
  padding: 60px 0;
}

.page-promotions__why-choose-section {
  background-color: #1A2B42;
}

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

.page-promotions__feature-item {
  background-color: #0A192F;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #FFD700;
}

.page-promotions__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

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

.page-promotions__feature-item p {
  color: #CCCCCC;
}

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

.page-promotions__promotion-card {
  background-color: #1A2B42;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #30476E;
}

.page-promotions__promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.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;
  line-height: 1.3;
}

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

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

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

.page-promotions__details-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  align-self: flex-start;
}

.page-promotions__details-button:hover {
  background-color: #E6C200;
  transform: translateY(-1px);
}

.page-promotions__how-to-claim-section {
  background-color: #0A192F;
}

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

.page-promotions__step-item {
  background-color: #1A2B42;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #FFD700;
}

.page-promotions__step-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

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

.page-promotions__step-item p {
  color: #CCCCCC;
  font-size: 0.95em;
  margin-bottom: 20px;
}

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

.page-promotions__step-item a:hover {
  color: #E6C200;
}

.page-promotions__small-button {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-promotions__tips-section {
  background-color: #1A2B42;
}

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

.page-promotions__tips-list li {
  background-color: #0A192F;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: #E0E0E0;
  border-left: 5px solid #FFD700;
}

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

.page-promotions__about-18win1-section {
  background-color: #0A192F;
  text-align: center;
}

.page-promotions__section-description {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #E0E0E0;
}

.page-promotions__cta-group {
  text-align: center;
  margin-top: 40px;
}

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

  .page-promotions__section-title {
    font-size: 2em;
  }

  .page-promotions__hero-section,
  .page-promotions__why-choose-section,
  .page-promotions__featured-promotions,
  .page-promotions__how-to-claim-section,
  .page-promotions__tips-section,
  .page-promotions__about-18win1-section {
    padding: 40px 0;
  }

  .page-promotions__features-grid,
  .page-promotions__promotion-list,
  .page-promotions__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions__cta-button,
  .page-promotions__secondary-button {
    display: block;
    margin: 10px auto;
    width: 80%;
  }

  .page-promotions__secondary-button {
    margin-left: auto;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: 2em;
  }

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

  .page-promotions__section-title {
    font-size: 1.8em;
  }

  .page-promotions__feature-item,
  .page-promotions__promotion-card,
  .page-promotions__step-item {
    padding: 20px;
  }

  .page-promotions__card-title {
    font-size: 1.4em;
  }

  .page-promotions__step-title {
    font-size: 1.2em;
  }
}