.page-promotions-bonuses {
  font-family: Arial, sans-serif;
  color: #404040; /* Custom font color */
  background-color: #F3F3F3; /* Body background color */
  line-height: 1.6;
}

.page-promotions-bonuses__hero-section {
  position: relative;
  overflow: hidden;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding for hero section */
  text-align: center;
  background-color: #FFFFFF; /* Hero background to contrast */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions-bonuses__hero-image {
  width: 100%;
  max-width: 1920px; /* Max width for hero image container */
  margin-bottom: 20px; /* Space between image and content */
}

.page-promotions-bonuses__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 200px; /* Minimum image size */
  filter: none; /* Ensure no image filter is applied */
}

.page-promotions-bonuses__hero-content {
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
  padding: 0 20px;
}

.page-promotions-bonuses__main-title {
  font-size: clamp(1.75rem, 5vw, 2.2rem); /* Responsive H1 font size */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #025BE8; /* Using auxiliary color for emphasis */
}

.page-promotions-bonuses__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-bonuses__cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.page-promotions-bonuses__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  min-width: 200px;
  text-align: center;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-bonuses__cta-button--register {
  background-color: #1266EC; /* Register button color */
  color: #FFFFFF;
}

.page-promotions-bonuses__cta-button--register:hover {
  background-color: #0d4bb8;
  transform: translateY(-2px);
}

.page-promotions-bonuses__cta-button--login {
  background-color: #E5EEFD; /* Login button color */
  color: #025BE8;
  border: 1px solid #025BE8;
}

.page-promotions-bonuses__cta-button--login:hover {
  background-color: #cddcfc;
  transform: translateY(-2px);
}

.page-promotions-bonuses__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #FFFFFF; /* Content area background */
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  margin-top: 20px;
  margin-bottom: 20px;
}

.page-promotions-bonuses__section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #025BE8;
  text-align: center;
  margin-bottom: 30px;
  padding-top: 20px;
}

.page-promotions-bonuses__text-block {
  font-size: 1rem;
  margin-bottom: 20px;
  text-align: justify;
}

.page-promotions-bonuses__promo-grid,
.page-promotions-bonuses__game-promo-grid,
.page-promotions-bonuses__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-promotions-bonuses__promo-card,
.page-promotions-bonuses__game-promo-card,
.page-promotions-bonuses__benefit-card {
  background-color: #F8F8F8; /* Card background */
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-bonuses__promo-card:hover,
.page-promotions-bonuses__game-promo-card:hover,
.page-promotions-bonuses__benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions-bonuses__promo-card img,
.page-promotions-bonuses__game-promo-card img,
.page-promotions-bonuses__benefit-card img {
  width: 100%;
  max-width: 400px; /* Max width for card images */
  height: auto;
  min-height: 200px; /* Minimum image size */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  filter: none; /* Explicitly disable any potential filter */
}

.page-promotions-bonuses__card-title,
.page-promotions-bonuses__game-card-title,
.page-promotions-bonuses__benefit-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #025BE8;
  margin-bottom: 10px;
}

.page-promotions-bonuses__card-description,
.page-promotions-bonuses__game-card-description,
.page-promotions-bonuses__benefit-description {
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
  text-align: justify;
}

.page-promotions-bonuses__card-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #1266EC;
  color: #FFFFFF;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: auto;
}

.page-promotions-bonuses__card-button:hover {
  background-color: #0d4bb8;
}

.page-promotions-bonuses__inline-link {
  color: #025BE8;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-bonuses__inline-link:hover {
  text-decoration: underline;
}

.page-promotions-bonuses__claim-steps {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.page-promotions-bonuses__step-item {
  background-color: #F8F8F8;
  border-left: 5px solid #025BE8;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
}

.page-promotions-bonuses__step-title {
  font-size: 1.2rem;
  color: #025BE8;
  margin-bottom: 10px;
}

.page-promotions-bonuses__step-description {
  font-size: 0.95rem;
}

.page-promotions-bonuses__faq-accordion {
  margin-bottom: 40px;
}

.page-promotions-bonuses__faq-item {
  background-color: #F8F8F8;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
}

.page-promotions-bonuses__faq-question {
  font-size: 1.1rem;
  color: #404040;
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #E5EEFD; /* Light blue for question background */
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promotions-bonuses__faq-question:hover {
  background-color: #cddcfc;
}

.page-promotions-bonuses__faq-question::after {
  content: '+';
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.page-promotions-bonuses__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promotions-bonuses__faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  background-color: #FFFFFF; /* White for answer background */
}

.page-promotions-bonuses__faq-answer.open {
  max-height: 200px; /* Adjust as needed for content */
  padding: 15px 20px;
}

.page-promotions-bonuses__cta-bottom-section {
  text-align: center;
  background-color: #025BE8;
  color: #FFFFFF;
  padding: 50px 20px;
  border-radius: 10px;
  margin-top: 40px;
}

.page-promotions-bonuses__cta-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #FFFFFF;
}

.page-promotions-bonuses__cta-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-promotions-bonuses__hero-section {
    padding: 40px 15px;
    padding-top: 10px;
  }

  .page-promotions-bonuses__main-title {
    font-size: clamp(1.5rem, 6vw, 1.8rem);
  }

  .page-promotions-bonuses__hero-description {
    font-size: 1rem;
  }

  .page-promotions-bonuses__cta-group {
    flex-direction: column;
    gap: 10px;
  }

  .page-promotions-bonuses__cta-button {
    width: 100%;
    max-width: 300px;
  }

  .page-promotions-bonuses__content-area {
    padding: 30px 15px;
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .page-promotions-bonuses__section-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }

  .page-promotions-bonuses__promo-grid,
  .page-promotions-bonuses__game-promo-grid,
  .page-promotions-bonuses__benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions-bonuses__promo-card img,
  .page-promotions-bonuses__game-promo-card img,
  .page-promotions-bonuses__benefit-card img {
    max-width: 100%;
    min-width: 200px; /* Ensure images are not smaller than 200px */
    min-height: 200px; /* Ensure images are not smaller than 200px */
    height: auto;
    filter: none; /* Ensure no image filter is applied */
  }

  .page-promotions-bonuses__card-title,
  .page-promotions-bonuses__game-card-title,
  .page-promotions-bonuses__benefit-title {
    font-size: 1.2rem;
  }

  .page-promotions-bonuses__cta-bottom-section {
    padding: 40px 15px;
  }

  .page-promotions-bonuses__cta-title {
    font-size: 1.8rem;
  }
}