body {
  background-color: #a0e6f8;
}
.wrap {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px 0;
}
.stack {
  position: relative;
  width: 347px;
  height: 462px;
}
.card {
  position: absolute;
  inset: 0;
  cursor: grab;
  overflow: hidden;
  border-radius: 10px;
  outline: none;
  transform-origin: bottom center;
}
.card:active {
  cursor: grabbing;
}
.card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  user-select: none;
}

.action-buttons {
  display: flex;
  justify-content: center;
  gap: 50px;
}
.action-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.action-btn .icon {
  font-size: 28px;
}
.action-btn:hover {
  transform: scale(1.1);
}

.dislike-btn {
  background: linear-gradient(135deg, #ff6b6b, #ff5252);
}
.like-btn {
  background: linear-gradient(135deg, #4caf50, #45a049);
}
