.page-promotions-game-category-specific-bonus {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #1A202C; /* Main dark background */
  line-height: 1.6;
}

.page-promotions-game-category-specific-bonus .highlight {
  color: #FFD700; /* Gold accent color */
}

.page-promotions-game-category-specific-bonus h1, 
.page-promotions-game-category-specific-bonus h2, 
.page-promotions-game-category-specific-bonus h3 {
  color: #FFD700; /* Gold for headings */
  margin-bottom: 20px;
  text-align: center;
}

.page-promotions-game-category-specific-bonus h1 {
  font-size: 2.8em;
  font-weight: bold;
  line-height: 1.2;
}

.page-promotions-game-category-specific-bonus h2 {
  font-size: 2.2em;
  font-weight: bold;
  margin-top: 40px;
}

.page-promotions-game-category-specific-bonus h3 {
  font-size: 1.6em;
  font-weight: 600;
  color: #E0E0E0; /* Lighter grey for subheadings */
}

.page-promotions-game-category-specific-bonus p {
  margin-bottom: 15px;
  color: #B0B0B0; /* Slightly darker light grey for paragraphs */
}

.page-promotions-game-category-specific-bonus ul {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 15px;
  color: #B0B0B0;
}

.page-promotions-game-category-specific-bonus ol {
  list-style: decimal inside;
  margin-left: 20px;
  margin-bottom: 15px;
  color: #B0B0B0;
}

.page-promotions-game-category-specific-bonus__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-promotions-game-category-specific-bonus__hero {
  background: linear-gradient(135deg, #1A202C 0%, #303A4D 100%);
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  text-align: center;
}

.page-promotions-game-category-specific-bonus__hero-content {
  max-width: 800px;
}

.page-promotions-game-category-specific-bonus__hero p {
  font-size: 1.1em;
  color: #C0C0C0;
}

.page-promotions-game-category-specific-bonus__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin-top: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promotions-game-category-specific-bonus__cta-button:hover {
  background-color: #e5c100;
  transform: translateY(-2px);
}

.page-promotions-game-category-specific-bonus__hero-image-wrapper {
  width: 100%;
  max-width: 600px;
  margin-top: 40px;
}

.page-promotions-game-category-specific-bonus__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-promotions-game-category-specific-bonus__why-choose .page-promotions-game-category-specific-bonus__grid,
.page-promotions-game-category-specific-bonus__expert-tips .page-promotions-game-category-specific-bonus__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-game-category-specific-bonus__grid-item {
  background-color: #2A313F;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-promotions-game-category-specific-bonus__grid-item:hover {
  transform: translateY(-5px);
}

.page-promotions-game-category-specific-bonus__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(100%) saturate(2000%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Adjust to gold */
}

.page-promotions-game-category-specific-bonus__grid-item h3 {
  color: #FFD700;
  margin-top: 0;
  font-size: 1.4em;
}

.page-promotions-game-category-specific-bonus__category-card {
  background-color: #2A313F;
  border-radius: 10px;
  margin-bottom: 40px;
  padding: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}

.page-promotions-game-category-specific-bonus__category-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  object-fit: cover;
}

.page-promotions-game-category-specific-bonus__category-content {
  width: 100%;
  max-width: 800px;
}

.page-promotions-game-category-specific-bonus__category-content h3 {
  text-align: left;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-promotions-game-category-specific-bonus__category-content p {
  font-size: 1em;
  margin-bottom: 15px;
}

.page-promotions-game-category-specific-bonus__category-content ul {
  list-style: square inside;
  margin-left: 0;
  padding-left: 20px;
}

.page-promotions-game-category-specific-bonus__category-content ul li {
  margin-bottom: 10px;
  color: #C0C0C0;
}

.page-promotions-game-category-specific-bonus__category-content .page-promotions-game-category-specific-bonus__button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promotions-game-category-specific-bonus__category-content .page-promotions-game-category-specific-bonus__button:hover {
  background-color: #e5c100;
  transform: translateY(-2px);
}

.page-promotions-game-category-specific-bonus__how-to-claim ol.page-promotions-game-category-specific-bonus__steps {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  margin-top: 40px;
  text-align: left;
}

.page-promotions-game-category-specific-bonus__how-to-claim ol.page-promotions-game-category-specific-bonus__steps li {
  background-color: #2A313F;
  padding: 25px 30px;
  border-radius: 10px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  padding-left: 80px; /* Space for step number */
}

.page-promotions-game-category-specific-bonus__how-to-claim ol.page-promotions-game-category-specific-bonus__steps li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFD700;
  color: #1A202C;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.3em;
}

.page-promotions-game-category-specific-bonus__how-to-claim ol.page-promotions-game-category-specific-bonus__steps li h3 {
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 10px;
  text-align: left;
}

.page-promotions-game-category-specific-bonus__how-to-claim ol.page-promotions-game-category-specific-bonus__steps li p {
  color: #C0C0C0;
}

.page-promotions-game-category-specific-bonus__how-to-claim .page-promotions-game-category-specific-bonus__button--small {
  padding: 8px 15px;
  font-size: 0.9em;
  margin-top: 15px;
}

.page-promotions-game-category-specific-bonus__terms ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.page-promotions-game-category-specific-bonus__terms ul li {
  background-color: #2A313F;
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  color: #C0C0C0;
}

.page-promotions-game-category-specific-bonus__terms ul li strong {
  color: #FFD700;
}

.page-promotions-game-category-specific-bonus__conclusion p {
  font-size: 1.1em;
  margin-bottom: 20px;
}

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

  .page-promotions-game-category-specific-bonus__hero-content {
    order: 2;
  }

  .page-promotions-game-category-specific-bonus__hero-image-wrapper {
    order: 1;
    margin-top: 0;
    margin-bottom: 30px;
  }

  .page-promotions-game-category-specific-bonus h1 {
    font-size: 2.2em;
  }

  .page-promotions-game-category-specific-bonus h2 {
    font-size: 1.8em;
  }

  .page-promotions-game-category-specific-bonus h3 {
    font-size: 1.4em;
  }

  .page-promotions-game-category-specific-bonus__category-card {
    flex-direction: column;
    text-align: center;
  }

  .page-promotions-game-category-specific-bonus__category-content h3 {
    text-align: center;
  }

  .page-promotions-game-category-specific-bonus__category-content ul {
    text-align: left;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .page-promotions-game-category-specific-bonus__section {
    padding: 40px 15px;
  }

  .page-promotions-game-category-specific-bonus h1 {
    font-size: 1.8em;
  }

  .page-promotions-game-category-specific-bonus h2 {
    font-size: 1.6em;
  }

  .page-promotions-game-category-specific-bonus__grid {
    grid-template-columns: 1fr;
  }

  .page-promotions-game-category-specific-bonus__how-to-claim ol.page-promotions-game-category-specific-bonus__steps li {
    padding-left: 60px;
  }

  .page-promotions-game-category-specific-bonus__how-to-claim ol.page-promotions-game-category-specific-bonus__steps li::before {
    left: 20px;
    width: 35px;
    height: 35px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-promotions-game-category-specific-bonus h1 {
    font-size: 1.5em;
  }

  .page-promotions-game-category-specific-bonus h2 {
    font-size: 1.4em;
  }

  .page-promotions-game-category-specific-bonus__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-promotions-game-category-specific-bonus__category-content ul {
    padding-left: 15px;
  }
}