body {
    background: url('cheetah-print.jpg') repeat;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    color: #ff69b4;
    text-align: center;
}

.closet-wrapper {
    max-width: 1000px;
    margin: auto;
    padding: 20px;
    border: 3px dashed #ff69b4;
    background-color: rgba(255, 255, 255, 0.8);
}

.doll-area {
    position: relative;
    width: 300px;
    margin: auto;
}

#doll {
    width: 100%;
}

#outfit-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.carousel {
    margin-top: 20px;
}

.items {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.draggable {
    width: 80px;
    cursor: grab;
    border: 2px solid #ff69b4;
    border-radius: 10px;
}

.controls button {
    background-color: #ff69b4;
    border: none;
    color: white;
    padding: 10px 20px;
    margin: 10px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 10px;
}
.blinkies-bottom {
  position: fixed;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 999;
  animation: floatBounce 6s ease-in-out infinite;
}

.blinkies-bottom img {
  width: 80px;
  border: 2px solid #ff1493;
  border-radius: 12px;
  box-shadow: 0 0 15px #ffff00aa;
  cursor: pointer;
  transition: transform 0.3s;
}

.blinkies-bottom img:hover {
  transform: scale(1.1);
}

.blinkies-side {
  position: fixed;
  top: 30%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.blinkies-side.left {
  left: 8px;
}

.blinkies-side img {
  width: 60px;
  border: 2px solid #ff1493;
  border-radius: 10px;
  box-shadow: 0 0 12px #ffff00aa;
  cursor: pointer;
  animation: pulse 4s infinite alternate;
}

@keyframes floatBounce {
  0%,100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -6px); }
}

@keyframes pulse {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}

 