#background-ver2 a {
  text-decoration: none !important;
  color: #fff !important;
}

#background-ver2 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 15px;
}

#background-ver2 .container-ver2 {
  background-color: #1b1818 !important;
  border-radius: 12px;
  padding: 15px;
  filter: drop-shadow(0 30px 10px rgba(0, 0, 0, 0.125));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 300px;
  height: 430px;
}

#background-ver2 .container-ver2:hover {
  background-color: #1b1818 !important;
}

#background-ver2 .bonus-title {
  color: #fff !important;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 7px;
}

#background-ver2 .wrapper {
  width: 100%;
  height: 100%;
}

#background-ver2 .banner-image {
  background-size: cover;
  height: 200px;
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
  display: block;
}

#background-ver2 .bonus-offer {
  text-align: center;
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
  font-weight: bold;
}

#background-ver2 p {
  color: #fff;
  font-family: 'Lato', sans-serif;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.5;
  text-transform: uppercase;
  margin-top: 15px;
}

#background-ver2 .button-wrapper {
  display: flex;
  gap: 10px;
}

#background-ver2 .btn {
  border: none;
  padding: 8px;
  border-radius: 20px;
  font-size: 0.8rem; /* removed duplicate 12px line */
  cursor: pointer;
  width: 135px;
}

#background-ver2 .fill {
  background: #f56b07e6;
  color: rgba(255, 255, 255, 0.95);
  filter: drop-shadow(0);
  font-weight: bold;
  transition: all 0.3s ease;
}

#background-ver2 .fill:hover {
  transform: scale(1.125);
  border-color: rgba(255, 255, 255, 0.9);
  filter: drop-shadow(0 10px 5px rgba(0, 0, 0, 0.125));
}

#background-ver2 .outline {
  background: transparent;
  color: #f56b07e6;
  border: 1px solid #f56b07e6;
  transition: all 0.3s ease;
}

#background-ver2 .outline:hover {
  transform: scale(1.125);
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.9);
}

@media screen and (max-width: 380px) {
  #background-ver2 .container-ver2 {
    width: 280px;
    height: 400px;
  }
  #background-ver2 .button-wrapper {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  #background-ver2 .btn + .btn {
    margin-left: 0;
  }
  #background-ver2 .btn {
    width: 150px;
  }
}

@media screen and (max-width: 330px) {
  #background-ver2 .container-ver2 {
    width: 245px !important;
    height: 400px !important;
  }
}