/* center the buttons */
.button-container {
  text-align: center;
  margin-top: 40px;
}

/* main button style */
.cat-button {
  display: inline-block;
  padding: 14px 28px;
  margin: 12px;

  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  font-family: 'Segoe UI', sans-serif;

  color: white;
  background: rgba(255, 255, 255, 0.2);

  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);

  transition: all 0.3s ease;
}

/* hover effect */
.cat-button:hover {
  background: white;
  color: black;
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(255,255,255,0.6);
}