.card-style {
  background: linear-gradient(135deg, #aaa 0%, #fff 100%);
  color: #000;
  backdrop-filter: blur(2px);
  text-align: center;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18%;
  min-height: 70px;
  margin: 2px;
  position: relative;
  border-radius: 8px;
}

.btn-style {
  color: white;
  padding: 12px 10px;
  border-radius: 5px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 165px;
  border: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-style:hover {
  transform: translateY(-3px);
}

.btn-green {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
}
.btn-style.btn-green:hover {
  box-shadow: 0 12px 25px rgba(46, 204, 113, 0.4);
}

.btn-orange {
  background: linear-gradient(135deg, #ff9f43, #ff7f00);
}
.btn-style.btn-orange:hover {
  box-shadow: 0 12px 25px rgba(255, 159, 67, 0.4);
}

.btn-red {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
}
.btn-style.btn-red:hover {
  box-shadow: 0 12px 25px rgba(231, 76, 60, 0.4);
}

@media (max-width: 768px) {
  .btn-style {
    padding: 10px;
    font-size: 0.8rem;
    min-width: unset;
  }
}
