/* GRID FOR DESKTOP */
/* BONUS badge */
.bonuses h2 {
  font-size: 30px;
  font-weight: 800;
  margin-top: -30px;
}
.bonuses h3{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.bonus-badge {
  position: absolute;
  top: -18px;
  left: 20px;

  background: #f72637;          /* strong red */
  color: #ffffff;

  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;

  padding: 6px 12px;
  border-radius: 6px;

  z-index: 5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.strike-bonus {
  text-decoration: line-through;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  margin-right: 2px;
}
.below-badge {
  position: absolute;
  bottom: -18px;
  left: 30px;
  right: 30px;
  justify-content: center;

  background: #28a745;          /* strong green */
  color: #ffffff;

  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.5px;

  padding: 6px 12px;
  border-radius: 6px;

  z-index: 5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.bonus-item {
  position: relative;
  background: #000;
  border: 1.5px solid #ffcc00; /* YELLOW BORDER */
  padding: 20px;
  margin-top: 50px;
  border-radius: 10px;
  text-align: center;
}

.bonus-image img{
  width: 100%;
  max-width: 200px;

  border: 1.5px solid #ffffff; /* WHITE BORDER */
  border-radius: 8px;

  display: block;
  margin: 0 auto 16px;
  margin-top: 10px;
}

.bonus-item {
  position: relative;
  background: #000;
  border: 2px solid #ffcc00; /* YELLOW BORDER */
  padding: 20px;
  margin-bottom: -20px;
  border-radius: 10px;
  text-align: center;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.bonus-content h3 {
  font-size: 24px;
  line-height: 1;
  margin-bottom: 12px;
}


/* BONUS POINTS LIST */
.bonus-content ul {
  list-style: none;          /* remove default bullets */
  padding: 0;
  margin: 12px auto 0;
  max-width: 260px;          /* keeps bullets tight */
  text-align: left;          /* important */
}

.bonus-content ul li {
  position: relative;
  padding-left: 24px;        /* space for bullet */
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #ffffff;
  margin-bottom: 10px;
}

.bonus-content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  font-size: 40px;
  line-height: 0.1;
  color: #ffffff;
}

@media (max-width: 768px) {

  .bonus-item {
    padding: 16px;
    margin-left: 16px;
    margin-right: 16px;
    margin-top: 50px;
    margin-bottom: 20px;
  }
  /* BONUS GRID → 1 column in mobile */
  .bonus-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* BONUS CARD */
  .bonus-card {
    padding: 16px;
    margin-bottom: 18px;
    text-align: center;
  }

  /* BONUS BADGE */
  .bonus-badge {
    top: -20px;
    left: 10px;
    font-size: 16px;
    padding: 5px 10px;
  }
  .strike-bonus {
    font-size: 17px;
  }
  .below-badge {
    bottom: -20px;
    left: 30px;
    right: 30px;
    font-size: 17px;
    padding: 5px 10px;
  }
  /* BONUS IMAGE */
  .bonus-image img {
    max-width: 250px;
    width: 100%;
    height: auto;
    /* margin: 12px auto 16px; */
    display: block;
  }

  /* TEXT */
  .bonus-content h3 {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .bonus-content p {
    font-size: 15px;
    line-height: 1.2;
    margin: 4px 0;
  }
  .bonus-content ul {
  max-width: 250px;
}

.bonus-content ul li {
  font-size: 16px;
}
.bonus-content ul li::before {
  line-height: 0.05;
}
}


