body {
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-family: "Helvetica Neue", sans-serif;
  flex-direction: column;
  padding: 20px;
}

input.inp {
  width: 100%;
  max-width: 320px;
  padding: 14px 18px;
  border-radius: 30px;
  border: none;
  outline: none;
  margin-bottom: 30px;
  background-color: #111;
  color: white;
}

input.inp::placeholder {
  color: #aaa;
}

.cards {
  display: flex;
  gap: 20px;
  overflow-x: auto;       /* enable horizontal scroll */
  width: 100%;
  max-width: 1200px;
  padding-bottom: 10px;   /* space for scrollbar */
  -webkit-overflow-scrolling: touch; /* smooth scroll on mobile */
}

.cards::-webkit-scrollbar {
  height: 6px;            /* hide or style scrollbar */
}

.cards::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 3px;
}

.card {
  flex: 0 0 200px;        /* fixed width, no shrinking */
  height: 300px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blurred-layer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: bottom;
  filter: blur(10px);
  z-index: 1;
  mask-image: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,0));
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,0));
}

.content {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: white;
  z-index: 4;
}

.content h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 4px;
}

.content p {
  font-size: 13px;
  color: #50534f;
  line-height: 1.3;
}

.no-user {
  color: white;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  width: 100%;
  margin-top: 20px;
}
