.page-promotions-bonuses {
  color: #FFF6D6; /* Text Main for dark background */
  background-color: #0A0A0A; /* Body background */
  font-family: Arial, sans-serif;
}

.page-promotions-bonuses__hero-section {
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding for hero section */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.page-promotions-bonuses__hero-image {
  width: 100%;
  max-width: 1200px;
}

.page-promotions-bonuses__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.page-promotions-bonuses__hero-content {
  max-width: 900px;
  margin-top: 20px;
}

.page-promotions-bonuses__main-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #F2C14E; /* Primary color for main title */
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

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

.page-promotions-bonuses__hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-promotions-bonuses__button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

.page-promotions-bonuses__button--primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #333333; /* Dark text for light button */
  box-shadow: 0 4px 10px rgba(242, 193, 78, 0.4);
}

.page-promotions-bonuses__button--primary:hover {
  background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
  transform: translateY(-2px);
}

.page-promotions-bonuses__button--secondary {
  background-color: transparent;
  border: 2px solid #F2C14E; /* Primary color for border */
  color: #FFF6D6;
  box-shadow: 0 2px 8px rgba(242, 193, 78, 0.2);
}

.page-promotions-bonuses__button--secondary:hover {
  background-color: #F2C14E; /* Primary color on hover */
  color: #333333;
  transform: translateY(-2px);
}

.page-promotions-bonuses__section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
  text-align: center;
}

.page-promotions-bonuses__section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: #FFD36B; /* Auxiliary color for section titles */
  margin-bottom: 25px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.page-promotions-bonuses__section-intro {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-bonuses__bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-promotions-bonuses__card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 12px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-promotions-bonuses__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5), 0 0 15px #FFD36B; /* Glow on hover */
}

.page-promotions-bonuses__card img {
  width: 100%;
  height: auto;
  min-width: 200px;
  min-height: 200px;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promotions-bonuses__card-title {
  font-size: 1.4rem;
  color: #F2C14E;
  margin-bottom: 10px;
}

.page-promotions-bonuses__card-description {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions-bonuses__promo-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 800px;
  margin: 40px auto;
}

.page-promotions-bonuses__promo-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 10px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions-bonuses__promo-title {
  font-size: 1.3rem;
  color: #FFD36B; /* Auxiliary color */
  margin-bottom: 8px;
}

.page-promotions-bonuses__promo-description {
  font-size: 0.9rem;
  line-height: 1.5;
}

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

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

.page-promotions-bonuses__feature-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 12px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-promotions-bonuses__feature-item img {
  width: 100%;
  height: auto;
  min-width: 200px;
  min-height: 200px;
  
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-promotions-bonuses__feature-title {
  font-size: 1.2rem;
  color: #F2C14E;
  margin-bottom: 10px;
}

.page-promotions-bonuses__feature-description {
  font-size: 0.9rem;
  line-height: 1.5;
}

.page-promotions-bonuses__how-to-claim .page-promotions-bonuses__steps-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.page-promotions-bonuses__step-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 10px;
  padding: 25px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-promotions-bonuses__step-item:nth-child(even) {
  text-align: right;
  align-items: flex-end;
}

.page-promotions-bonuses__step-title {
  font-size: 1.3rem;
  color: #FFD36B; /* Auxiliary color */
}

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

.page-promotions-bonuses__responsible-gaming a,
.page-promotions-bonuses__contact-us a {
  color: #F2C14E;
  text-decoration: underline;
}

.page-promotions-bonuses__responsible-gaming a:hover,
.page-promotions-bonuses__contact-us a:hover {
  color: #FFD36B;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-promotions-bonuses__main-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }

  .page-promotions-bonuses__section-title {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
  }

  .page-promotions-bonuses__hero-buttons,
  .page-promotions-bonuses__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

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

  .page-promotions-bonuses__hero-image img,
  .page-promotions-bonuses__bonus-cards img,
  .page-promotions-bonuses__feature-item img,
  .page-promotions-bonuses__card img {
    max-width: 100%;
    height: auto;
  }

  .page-promotions-bonuses__hero-section,
  .page-promotions-bonuses__section {
    padding: 30px 15px;
  }
}

@media (max-width: 480px) {
  .page-promotions-bonuses__hero-description,
  .page-promotions-bonuses__section-intro,
  .page-promotions-bonuses__section-text {
    font-size: 0.9rem;
  }

  .page-promotions-bonuses__card-title,
  .page-promotions-bonuses__promo-title,
  .page-promotions-bonuses__feature-title,
  .page-promotions-bonuses__step-title {
    font-size: 1.1rem;
  }
}