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

.page-promotions .highlight {
  color: #FFD700;
}

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

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

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

.page-promotions__section-subtitle {
  font-size: 1.2em;
  color: #e5dfd3;
  margin-bottom: 40px;
}

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

.page-promotions__btn--primary {
  background-color: #FFD700;
  color: #1A202C;
  border: 2px solid #FFD700;
}

.page-promotions__btn--primary:hover {
  background-color: #b39700;
  border-color: #b39700;
  color: #1A202C;
  transform: translateY(-2px);
}

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

.page-promotions__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-2px);
}

/* Hero Section */
.page-promotions__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1A202C 0%, #3a475a 100%);
  color: #e5dfd3;
  text-align: center;
}

.page-promotions__hero-content {
  max-width: 900px;
  margin-bottom: 40px;
}

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

.page-promotions__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Introduction Section */
.page-promotions__introduction {
  background-color: #2c3440;
}

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

.page-promotions__intro-item {
  background-color: #1A202C;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

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

.page-promotions__intro-item p {
  color: #ccc;
  font-size: 1em;
}

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

/* Promo List Section */
.page-promotions__promo-list {
  background-color: #1A202C;
}

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

.page-promotions__promo-card {
  background-color: #2c3440;
  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__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.page-promotions__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
}

.page-promotions__promo-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.page-promotions__promo-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  line-height: 1.3;
}

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

.page-promotions__promo-title a:hover {
  color: #e5dfd3;
}

.page-promotions__promo-description {
  color: #ccc;
  font-size: 1em;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promotions__promo-actions {
  display: flex;
  gap: 15px;
  margin-top: auto; /* Push buttons to the bottom */
  justify-content: center; /* Center buttons horizontally */
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* How to Claim Section */
.page-promotions__how-to-claim {
  background-color: #2c3440;
}

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

.page-promotions__steps-list li {
  background-color: #1A202C;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-promotions__steps-list h3 {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promotions__steps-list p {
  color: #ccc;
  font-size: 1em;
}

.page-promotions__cta-bottom {
  margin-top: 60px;
  padding: 30px;
  background-color: #1A202C;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__cta-bottom p {
  font-size: 1.4em;
  color: #e5dfd3;
  margin-bottom: 25px;
}

/* FAQ Section */
.page-promotions__faq {
  background-color: #1A202C;
}

.page-promotions__faq-item {
  background-color: #2c3440;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
}

.page-promotions__faq-item:hover {
  background-color: #3a475a;
}

.page-promotions__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
}

.page-promotions__faq-answer {
  font-size: 1em;
  color: #ccc;
  display: block; /* Ensure it's visible by default, JS could toggle */
}

/* Responsible Gambling Section */
.page-promotions__responsible-gambling {
  background-color: #2c3440;
  padding: 60px 20px;
  text-align: center;
}

.page-promotions__responsible-gambling p {
  max-width: 900px;
  margin: 0 auto 30px auto;
  font-size: 1.1em;
  color: #ccc;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions__hero-title {
    font-size: 2.8em;
  }
  .page-promotions__hero-description {
    font-size: 1.1em;
  }
  .page-promotions__section-title {
    font-size: 2.2em;
  }
  .page-promotions__promo-card {
    margin-bottom: 25px;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero {
    flex-direction: column;
  }
  .page-promotions__hero-content {
    margin-bottom: 30px;
  }
  .page-promotions__hero-image-wrapper {
    margin-top: 30px;
  }
  .page-promotions__hero-title {
    font-size: 2.4em;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__intro-grid, .page-promotions__grid, .page-promotions__steps-list {
    grid-template-columns: 1fr;
  }
  .page-promotions__promo-actions {
    flex-direction: column;
    gap: 10px;
  }
  .page-promotions__btn {
    width: 100%;
  }
  .page-promotions__faq-question {
    font-size: 1.2em;
  }
}

@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__btn {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-promotions__intro-item, .page-promotions__promo-card, .page-promotions__steps-list li, .page-promotions__faq-item {
    padding: 20px;
  }
  .page-promotions__promo-title {
    font-size: 1.5em;
  }
  .page-promotions__cta-bottom p {
    font-size: 1.2em;
  }
}