/* style/promotions.css */
.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for main text on dark background */
  background-color: #1A242F; /* Dark background, slightly lighter than main color */
}

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

.page-promotions__hero {
  background: linear-gradient(135deg, #2C3E50 0%, #1A242F 100%);
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  text-align: center;
  color: #FFFFFF;
}

.page-promotions__hero-content {
  max-width: 600px;
}

.page-promotions__hero-title {
  font-size: 3.2em;
  color: #F39C12; /* Auxiliary color for emphasis */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-promotions__hero-description {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #CCCCCC;
}

.page-promotions__hero-image-wrapper {
  flex-shrink: 0;
}

.page-promotions__hero-image {
  max-width: 450px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-promotions__btn-primary, .page-promotions__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.page-promotions__btn-primary {
  background-color: #F39C12; /* Auxiliary color */
  color: #2C3E50;
  border: 2px solid #F39C12;
}

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

.page-promotions__btn-secondary {
  background-color: transparent;
  color: #F39C12;
  border: 2px solid #F39C12;
  margin-left: 15px;
}

.page-promotions__btn-secondary:hover {
  background-color: #F39C12;
  color: #2C3E50;
  transform: translateY(-2px);
}

.page-promotions__overview {
  padding: 80px 0;
  background-color: #2C3E50;
  text-align: center;
}

.page-promotions__section-title {
  font-size: 2.5em;
  color: #F39C12;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.page-promotions__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #F39C12;
  border-radius: 2px;
}

.page-promotions__section-intro {
  font-size: 1.1em;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #CCCCCC;
}

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

.page-promotions__feature-item {
  background-color: #1A242F;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-promotions__feature-item:hover {
  transform: translateY(-10px);
}

.page-promotions__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.page-promotions__feature-item h3 {
  font-size: 1.5em;
  color: #F39C12;
  margin-bottom: 15px;
}

.page-promotions__feature-item p {
  font-size: 1em;
  line-height: 1.6;
  color: #CCCCCC;
}

.page-promotions__list-section {
  padding: 80px 0;
  background-color: #1A242F;
  text-align: center;
}

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

.page-promotions__promotion-card {
  background-color: #2C3E50;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__promotion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.page-promotions__promotion-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.page-promotions__promotion-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions__promotion-content h3 {
  font-size: 1.6em;
  color: #F39C12;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-promotions__promotion-content p {
  font-size: 1.05em;
  line-height: 1.7;
  color: #CCCCCC;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__deep-content {
  padding: 80px 0;
  background-color: #2C3E50;
}

.page-promotions__deep-content h2, .page-promotions__deep-content h3 {
  color: #F39C12;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: left;
}

.page-promotions__deep-content h2 {
  font-size: 2.5em;
  padding-bottom: 10px;
  position: relative;
}

.page-promotions__deep-content h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: #F39C12;
  border-radius: 2px;
}

.page-promotions__deep-content h3 {
  font-size: 1.8em;
  color: #F39C12;
}

.page-promotions__deep-content p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #E0E0E0;
  text-align: left;
}

.page-promotions__deep-content ol {
  list-style: decimal;
  margin-left: 25px;
  margin-bottom: 30px;
  color: #E0E0E0;
  text-align: left;
}

.page-promotions__deep-content ol li {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 10px;
}

.page-promotions__deep-content ol li strong {
  color: #F39C12;
}

.page-promotions__cta-bottom {
  background-color: #1A242F;
  padding: 50px 30px;
  border-radius: 12px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions__cta-bottom p {
  font-size: 1.5em;
  color: #F39C12;
  margin-bottom: 30px;
}

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

.page-promotions__responsible-gambling {
  margin-top: 60px;
  padding: 30px;
  background-color: #1A242F;
  border-left: 5px solid #F39C12;
  border-radius: 8px;
  text-align: left;
}

.page-promotions__responsible-gambling p {
  font-size: 0.95em;
  line-height: 1.6;
  color: #BBBBBB;
}

.page-promotions__responsible-gambling strong {
  color: #F39C12;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions__hero {
    flex-direction: column;
    padding: 80px 20px;
  }

  .page-promotions__hero-title {
    font-size: 2.5em;
  }

  .page-promotions__hero-image {
    max-width: 100%;
    margin-top: 40px;
  }

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

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

  .page-promotions__deep-content h2 {
    font-size: 2em;
  }
  .page-promotions__deep-content h3 {
    font-size: 1.6em;
  }
}

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

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

  .page-promotions__btn-primary, .page-promotions__btn-secondary {
    padding: 12px 25px;
    font-size: 0.9em;
  }

  .page-promotions__btn-secondary {
    margin-left: 0;
    margin-top: 15px;
  }

  .page-promotions__features {
    grid-template-columns: 1fr;
  }

  .page-promotions__promotion-grid {
    grid-template-columns: 1fr;
  }

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

  .page-promotions__section-intro {
    font-size: 0.95em;
  }

  .page-promotions__deep-content p, .page-promotions__deep-content ol li {
    font-size: 1em;
  }

  .page-promotions__cta-bottom p {
    font-size: 1.2em;
  }
}