.page-promotions-specific-game-promo {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0; /* Light gray for general text on dark background */
  background-color: #0A1931; /* Main dark blue background */
  line-height: 1.6;
}

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

.page-promotions-specific-game-promo__hero-section {
  background: linear-gradient(135deg, #0A1931 0%, #1a3a66 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero text */
  position: relative;
  overflow: hidden;
}

.page-promotions-specific-game-promo__hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  animation: page-promotions-specific-game-promo__pulse 15s infinite alternate;
  z-index: 0;
}

@keyframes page-promotions-specific-game-promo__pulse {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(1.2); opacity: 0.8; }
}

.page-promotions-specific-game-promo__hero-section .page-promotions-specific-game-promo__container {
  position: relative;
  z-index: 1;
}

.page-promotions-specific-game-promo__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-promotions-specific-game-promo__intro-text {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0; /* Slightly lighter for intro text */
}

.page-promotions-specific-game-promo__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

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

.page-promotions-specific-game-promo__button--primary {
  background-color: #FFD700; /* Gold for primary button */
  color: #0A1931; /* Dark blue text on gold */
}

.page-promotions-specific-game-promo__button--primary:hover {
  background-color: #e6c200; /* Darker gold on hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-promotions-specific-game-promo__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text for secondary button */
  border: 2px solid #FFD700;
}

.page-promotions-specific-game-promo__button--secondary:hover {
  background-color: #FFD700;
  color: #0A1931;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-promotions-specific-game-promo__button--action {
  background-color: #E03B8B; /* Magenta for action buttons */
  color: #FFFFFF; /* White text on magenta */
  padding: 12px 25px;
  font-size: 1em;
}

.page-promotions-specific-game-promo__button--action:hover {
  background-color: #c92f7c; /* Darker magenta on hover */
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions-specific-game-promo__button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-promotions-specific-game-promo__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-promotions-specific-game-promo__section:last-of-type {
  border-bottom: none;
}

.page-promotions-specific-game-promo__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions-specific-game-promo__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #E03B8B; /* Magenta underline */
  border-radius: 2px;
}

.page-promotions-specific-game-promo__sub-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for sub titles */
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #E03B8B; /* Magenta accent */
  padding-left: 15px;
}

.page-promotions-specific-game-promo__text-content p {
  margin-bottom: 15px;
  color: #e0e0e0;
}

.page-promotions-specific-game-promo__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-promotions-specific-game-promo__list li {
  background-color: rgba(255, 215, 0, 0.05);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-left: 4px solid #FFD700;
  border-radius: 5px;
  font-size: 1.1em;
  color: #f5f5f5;
  transition: background-color 0.3s ease;
}

.page-promotions-specific-game-promo__list li:hover {
  background-color: rgba(255, 215, 0, 0.1);
}

.page-promotions-specific-game-promo__list li strong {
  color: #FFD700;
}

.page-promotions-specific-game-promo__numbered-list {
  list-style: none;
  counter-reset: my-awesome-counter;
  padding: 0;
  margin-bottom: 30px;
}

.page-promotions-specific-game-promo__numbered-list li {
  counter-increment: my-awesome-counter;
  background-color: rgba(10, 25, 49, 0.7); /* Slightly lighter dark blue */
  padding: 20px 25px 20px 60px;
  margin-bottom: 15px;
  border-radius: 8px;
  position: relative;
  font-size: 1.1em;
  color: #f0f0f0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions-specific-game-promo__numbered-list li::before {
  content: counter(my-awesome-counter);
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #E03B8B; /* Magenta number background */
  color: #FFFFFF;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
}

.page-promotions-specific-game-promo__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-promotions-specific-game-promo__faq-item {
  background-color: #1a2a47; /* Slightly lighter dark blue for FAQ item */
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-promotions-specific-game-promo__faq-question {
  font-size: 1.2em;
  color: #FFD700; /* Gold for FAQ question */
  padding: 18px 25px;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1a2a47;
  transition: background-color 0.3s ease;
}

.page-promotions-specific-game-promo__faq-question:hover {
  background-color: #2a3d5b;
}

.page-promotions-specific-game-promo__faq-question::after {
  content: '+';
  font-size: 1.5em;
  color: #E03B8B; /* Magenta icon */
  transition: transform 0.3s ease;
}

.page-promotions-specific-game-promo__faq-item.active .page-promotions-specific-game-promo__faq-question::after {
  content: '-';
  transform: rotate(45deg);
}

.page-promotions-specific-game-promo__faq-answer {
  padding: 0 25px 20px;
  margin: 0;
  color: #c0c0c0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-promotions-specific-game-promo__faq-item.active .page-promotions-specific-game-promo__faq-answer {
  max-height: 200px; /* Adjust as needed for content */
  padding: 0 25px 20px;
}

.page-promotions-specific-game-promo__final-cta {
  text-align: center;
  padding: 80px 0;
  background-color: #1a2a47;
}

.page-promotions-specific-game-promo__final-cta .page-promotions-specific-game-promo__section-title {
  color: #FFD700;
}

.page-promotions-specific-game-promo__final-cta p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-promotions-specific-game-promo a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions-specific-game-promo a:hover {
  color: #E03B8B;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-specific-game-promo__main-title {
    font-size: 2.8em;
  }
  .page-promotions-specific-game-promo__section-title {
    font-size: 2em;
  }
  .page-promotions-specific-game-promo__sub-title {
    font-size: 1.6em;
  }
  .page-promotions-specific-game-promo__intro-text,
  .page-promotions-specific-game-promo__text-content p,
  .page-promotions-specific-game-promo__list li,
  .page-promotions-specific-game-promo__numbered-list li {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-promotions-specific-game-promo__hero-section {
    padding: 80px 0;
  }
  .page-promotions-specific-game-promo__main-title {
    font-size: 2.2em;
  }
  .page-promotions-specific-game-promo__intro-text {
    font-size: 1.1em;
  }
  .page-promotions-specific-game-promo__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions-specific-game-promo__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-promotions-specific-game-promo__section {
    padding: 40px 0;
  }
  .page-promotions-specific-game-promo__section-title {
    font-size: 1.8em;
  }
  .page-promotions-specific-game-promo__sub-title {
    font-size: 1.4em;
  }
  .page-promotions-specific-game-promo__faq-question {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-promotions-specific-game-promo__main-title {
    font-size: 1.8em;
  }
  .page-promotions-specific-game-promo__section-title {
    font-size: 1.5em;
  }
  .page-promotions-specific-game-promo__button {
    width: 90%;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-promotions-specific-game-promo__numbered-list li {
    padding: 15px 15px 15px 50px;
  }
  .page-promotions-specific-game-promo__numbered-list li::before {
    width: 30px;
    height: 30px;
    font-size: 1em;
    left: 10px;
  }
}