.element {
  position: relative;
  width: 135px;
  height: 185px;
  border-radius: 10px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.5);
  border: 1px solid rgba(127, 255, 255, 0.25);
  font-family: Helvetica, sans-serif;
  cursor: default;
  transition: box-shadow 0.3s, border 0.3s;
}

.element:hover {
  box-shadow: 0 0 16px rgba(0, 255, 255, 0.75);
  border: 1px solid rgba(127, 255, 255, 0.75);
}

.element .number {
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 13px;
  font-weight: bold;
  color: black;
  background-color: white;
  padding: 4px 10px;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.element .title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 6px;
  font-size: 14px;
  font-weight: bold;
  color: white;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.8);
  background: #140222;
  background: linear-gradient(180deg, rgba(20, 2, 34, 0) 0%, rgba(20, 2, 34, 0.6) 50%, rgba(20, 2, 34, 0.9) 100%);
  z-index: 1;
  align-items: center;
  justify-content: center;
  text-align: center;
}
