/* Body Centering Fix */
body {
  background-color: #000;
  margin: 0;
  padding: 40px 20px;
  font-family: "Helvetica Neue", sans-serif;
  color: #fff;
}

/* Cards Wrapper */
.cards {
  flex-wrap: wrap;
  justify-content: center;
}

/* Card Style */
.card {
  position: relative;
  width: 250px;
  height: 340px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

/* Background Image */
.bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Blurred Bottom Layer */
.blurred-layer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: blur(12px);
  z-index: 1;

  mask-image: linear-gradient(to top, rgba(0, 0, 0, 1), transparent);
  mask-size: 100% 100%;
  mask-repeat: no-repeat;

  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1), transparent);
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
}

/* Content Over Image */
.content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: white;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

.content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: capitalize;
}

.content p {
  font-size: 14px;
  color: #e5e5e5;
  line-height: 1.4;
}

