.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-promotions__title {
  font-size: 2.8em;
  color: #FFD700; /* Gold */
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions__description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 30px;
  color: #eee;
}

.page-promotions__section-heading {
  font-size: 2.2em;
  color: #000080; /* Midnight Blue */
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-promotions__section-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #555;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000080; /* Midnight Blue */
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-promotions__cta-button:hover {
  background: linear-gradient(135deg, #FFA500, #FFD700);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__cta-button--large {
  padding: 18px 50px;
  font-size: 1.4em;
}

/* Hero Banner */
.page-promotions .hero-banner {
  position: relative;
  width: 100%;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: #000080; /* Fallback for banner */
}

.page-promotions .hero-banner .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.7;
}

.page-promotions .hero-banner .hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
  background-color: rgba(0, 0, 128, 0.6); /* Semi-transparent midnight blue overlay */
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* Promo Grid */
.page-promotions .section-highlight-promos {
  padding: 60px 0;
  background-color: #f0f2f5;
}

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

.page-promotions__promo-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-promotions__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions__promo-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

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

.page-promotions__card-title {
  font-size: 1.5em;
  color: #000080;
  margin-bottom: 15px;
  min-height: 60px; /* Ensure consistent height for titles */
}

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

.page-promotions__card-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #FFD700;
  color: #000080;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  font-size: 0.95em;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

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

/* How to Claim Section */
.page-promotions .section-how-to-claim {
  padding: 60px 0;
  background-color: #ffffff;
}

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

.page-promotions__claim-steps li {
  background-color: #f9f9f9;
  border-left: 5px solid #FFD700;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.page-promotions__claim-steps li:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

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

.page-promotions__step-text {
  color: #666;
  margin-bottom: 20px;
}

.page-promotions__step-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #000080;
  color: #FFD700;
  text-decoration: none;
  border-radius: 25px;
  font-size: 0.9em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promotions__step-button:hover {
  background-color: #000066;
}

/* Why Casino 999 Section */
.page-promotions .section-why-casino999 {
  padding: 60px 0;
  background-color: #eef2f7;
}

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

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

.page-promotions__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.page-promotions__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-promotions__feature-title {
  font-size: 1.4em;
  color: #000080;
  margin-bottom: 10px;
}

.page-promotions__feature-text {
  color: #666;
}

/* FAQ Section */
.page-promotions .section-faq {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-promotions__faq-list {
  margin-top: 40px;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background-color: #000080;
  color: #FFD700;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #000066;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #FFD700;
}

.faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 20px;
  background-color: #fefefe;
  color: #444;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px;
  border-top: 1px solid #eee;
}

.faq-answer p {
  margin: 0;
  font-size: 1em;
  line-height: 1.7;
}

/* Call to Action Bottom */
.page-promotions .section-call-to-action {
  padding: 80px 0;
  background: linear-gradient(135deg, #000080, #000066);
  text-align: center;
  color: #ffffff;
}

.page-promotions .section-call-to-action .page-promotions__section-heading {
  color: #FFD700;
}

.page-promotions .section-call-to-action .page-promotions__section-heading::after {
  background-color: #FFD700;
}

.page-promotions .section-call-to-action .page-promotions__description {
  color: #e0e0e0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions__title {
    font-size: 2.2em;
  }
  .page-promotions__section-heading {
    font-size: 1.8em;
  }
  .page-promotions__promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-promotions__claim-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-promotions__title {
    font-size: 1.8em;
  }
  .page-promotions__description {
    font-size: 1em;
  }
  .page-promotions__section-heading {
    font-size: 1.6em;
  }
  .page-promotions__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions .hero-banner .hero-content {
    padding: 30px 15px;
  }
  .page-promotions__cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-promotions__cta-button--large {
    padding: 15px 40px;
    font-size: 1.2em;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 1.5em;
  }
  .faq-question {
    padding: 15px;
  }
  .faq-answer {
    padding: 0 15px;
  }
  .faq-item.active .faq-answer {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .page-promotions__title {
    font-size: 1.5em;
  }
  .page-promotions__section-heading {
    font-size: 1.4em;
  }
  .page-promotions__promo-image {
    height: 180px;
  }
  .page-promotions__card-title {
    font-size: 1.3em;
  }
  .page-promotions__card-content {
    padding: 20px;
  }
  .page-promotions__feature-icon {
    width: 60px;
    height: 60px;
  }
  .page-promotions__feature-title {
    font-size: 1.2em;
  }
}