.page-promotions-game-specific {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0; /* Light text for dark background */
  background-color: #0A192F; /* Primary dark background */
}

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

.page-promotions-game-specific__hero-section {
  background: linear-gradient(135deg, #0A192F 0%, #2a3a50 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
}

.page-promotions-game-specific__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Accent color for titles */
  font-weight: bold;
  line-height: 1.2;
}

.page-promotions-game-specific__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

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

.page-promotions-game-specific__btn--primary {
  background-color: #FFD700; /* Accent color for primary buttons */
  color: #0A192F; /* Dark text for accent background */
}

.page-promotions-game-specific__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-promotions-game-specific__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Accent color for secondary button text */
  border: 2px solid #FFD700;
  padding: 13px 28px;
}

.page-promotions-game-specific__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-2px);
}

.page-promotions-game-specific__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-promotions-game-specific__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 60px;
  font-weight: bold;
}

.page-promotions-game-specific__section-subtitle {
  font-size: 1.2em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #cccccc;
}

.page-promotions-game-specific__introduction-section,
.page-promotions-game-specific__promo-types-section,
.page-promotions-game-specific__how-to-participate-section,
.page-promotions-game-specific__featured-promos-section,
.page-promotions-game-specific__benefits-section,
.page-promotions-game-specific__tips-section,
.page-promotions-game-specific__responsible-gaming-section,
.page-promotions-game-specific__faq-section,
.page-promotions-game-specific__cta-final-section {
  padding: 80px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-promotions-game-specific__introduction-section .page-promotions-game-specific__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-promotions-game-specific__introduction-section .page-promotions-game-specific__text-content p {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-promotions-game-specific__introduction-section .page-promotions-game-specific__image-wrapper {
  text-align: center;
}

.page-promotions-game-specific__introduction-section .page-promotions-game-specific__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-promotions-game-specific__promo-types-section .page-promotions-game-specific__cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-promotions-game-specific__card {
  background-color: #1a2c42; /* Slightly lighter dark blue for cards */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-promotions-game-specific__card:hover {
  transform: translateY(-5px);
  background-color: #2a3a50;
}

.page-promotions-game-specific__card-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-promotions-game-specific__card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promotions-game-specific__card-description {
  font-size: 1em;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 25px;
}

.page-promotions-game-specific__how-to-participate-section .page-promotions-game-specific__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-promotions-game-specific__step-card {
  background-color: #1a2c42;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-promotions-game-specific__step-number {
  font-size: 3em;
  color: #FFD700;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1;
}

.page-promotions-game-specific__step-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-promotions-game-specific__step-description {
  font-size: 1em;
  line-height: 1.6;
  color: #cccccc;
}

.page-promotions-game-specific__step-description a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-game-specific__step-description a:hover {
  text-decoration: underline;
}

.page-promotions-game-specific__cta-group {
  text-align: center;
  margin-top: 40px;
}

.page-promotions-game-specific__cta-group .page-promotions-game-specific__btn {
  margin: 0 15px;
}

.page-promotions-game-specific__featured-promos-section .page-promotions-game-specific__promo-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.page-promotions-game-specific__promo-card {
  background-color: #1a2c42;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-promotions-game-specific__promo-image {
  width: 40%;
  height: 300px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.page-promotions-game-specific__promo-content {
  padding: 30px 40px;
  width: 60%;
}

.page-promotions-game-specific__promo-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promotions-game-specific__promo-description {
  font-size: 1.1em;
  line-height: 1.7;
  color: #e0e0e0;
  margin-bottom: 20px;
}

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

.page-promotions-game-specific__promo-features li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23FFD700" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') no-repeat left center;
  background-size: 18px;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 1em;
  color: #cccccc;
}

.page-promotions-game-specific__benefits-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.page-promotions-game-specific__benefits-list li {
  background-color: #1a2c42;
  padding: 25px;
  border-radius: 8px;
  font-size: 1.1em;
  line-height: 1.6;
  color: #e0e0e0;
  position: relative;
  padding-left: 60px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-promotions-game-specific__benefits-list li strong {
  color: #FFD700;
}

.page-promotions-game-specific__benefits-list li::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 25px;
  width: 30px;
  height: 30px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23FFD700" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"></path></svg>') no-repeat center center;
  background-size: contain;
}

.page-promotions-game-specific__tips-section .page-promotions-game-specific__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-promotions-game-specific__tips-section .page-promotions-game-specific__image-wrapper {
  text-align: center;
}

.page-promotions-game-specific__tips-section .page-promotions-game-specific__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-promotions-game-specific__tips-list {
  list-style: none;
  padding: 0;
}

.page-promotions-game-specific__tips-list li {
  background-color: #1a2c42;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  font-size: 1.1em;
  line-height: 1.6;
  color: #e0e0e0;
  position: relative;
  padding-left: 55px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-promotions-game-specific__tips-list li strong {
  color: #FFD700;
}

.page-promotions-game-specific__tips-list li::before {
  counter-increment: tip-counter;
  content: counter(tip-counter);
  position: absolute;
  left: 18px;
  top: 18px;
  background-color: #FFD700;
  color: #0A192F;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 0.9em;
}

.page-promotions-game-specific__tips-list {
  counter-reset: tip-counter;
}

.page-promotions-game-specific__responsible-gaming-section p {
  font-size: 1.1em;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 30px;
  text-align: center;
  color: #e0e0e0;
}

.page-promotions-game-specific__faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions-game-specific__faq-item {
  background-color: #1a2c42;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-promotions-game-specific__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  padding: 20px 25px;
  cursor: pointer;
  margin: 0;
  position: relative;
  transition: background-color 0.3s ease;
}

.page-promotions-game-specific__faq-question:hover {
  background-color: #2a3a50;
}

.page-promotions-game-specific__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.page-promotions-game-specific__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-promotions-game-specific__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-promotions-game-specific__faq-answer p {
  font-size: 1em;
  line-height: 1.6;
  color: #cccccc;
  padding-bottom: 20px;
}

.page-promotions-game-specific__faq-answer p a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-game-specific__faq-answer p a:hover {
  text-decoration: underline;
}

.page-promotions-game-specific__faq-item.active .page-promotions-game-specific__faq-answer {
  max-height: 200px; /* Adjust based on content */
  padding-bottom: 20px;
}

.page-promotions-game-specific__cta-final-section {
  text-align: center;
  padding-bottom: 100px;
}

.page-promotions-game-specific__cta-final-section .page-promotions-game-specific__small-text {
  font-size: 0.9em;
  margin-top: 20px;
  color: #cccccc;
}

.page-promotions-game-specific__cta-final-section .page-promotions-game-specific__small-text a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-game-specific__cta-final-section .page-promotions-game-specific__small-text a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-promotions-game-specific__hero-title {
    font-size: 2.8em;
  }
  .page-promotions-game-specific__hero-description {
    font-size: 1.1em;
  }
  .page-promotions-game-specific__section-title {
    font-size: 2em;
  }
  .page-promotions-game-specific__introduction-section .page-promotions-game-specific__content-grid,
  .page-promotions-game-specific__tips-section .page-promotions-game-specific__content-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-game-specific__promo-card {
    flex-direction: column;
  }
  .page-promotions-game-specific__promo-image {
    width: 100%;
    height: 250px;
    border-radius: 12px 12px 0 0;
  }
  .page-promotions-game-specific__promo-content {
    width: 100%;
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .page-promotions-game-specific__hero-section {
    padding: 80px 0;
  }
  .page-promotions-game-specific__hero-title {
    font-size: 2.2em;
  }
  .page-promotions-game-specific__hero-description {
    font-size: 1em;
  }
  .page-promotions-game-specific__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions-game-specific__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-promotions-game-specific__section-title {
    font-size: 1.8em;
  }
  .page-promotions-game-specific__section-subtitle {
    font-size: 1em;
  }
  .page-promotions-game-specific__introduction-section,
  .page-promotions-game-specific__promo-types-section,
  .page-promotions-game-specific__how-to-participate-section,
  .page-promotions-game-specific__featured-promos-section,
  .page-promotions-game-specific__benefits-section,
  .page-promotions-game-specific__tips-section,
  .page-promotions-game-specific__responsible-gaming-section,
  .page-promotions-game-specific__faq-section,
  .page-promotions-game-specific__cta-final-section {
    padding: 60px 0;
  }
  .page-promotions-game-specific__cta-group .page-promotions-game-specific__btn {
    margin: 10px;
  }
}

@media (max-width: 480px) {
  .page-promotions-game-specific__hero-title {
    font-size: 1.8em;
  }
  .page-promotions-game-specific__btn {
    display: block;
    width: 100%;
    margin-bottom: 15px;
  }
  .page-promotions-game-specific__cta-group .page-promotions-game-specific__btn {
    margin: 10px auto;
  }
  .page-promotions-game-specific__promo-content {
    padding: 20px;
  }
  .page-promotions-game-specific__promo-title {
    font-size: 1.6em;
  }
}