body {
  font-family: "Quicksand", sans-serif;
  background: linear-gradient(to bottom, #ecf8fa, #fdeff3);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  margin: 0;
  overflow: hidden;
}

/* Tap Label */
.tap-label {
  margin-top: -2rem;
  margin-bottom: 3rem;
  font-size: 1rem;
  background: #fff;
  border: 3px solid rgb(240, 205, 194);
  padding: 8px 16px;
  border-radius: 12px;
  box-shadow: 0px 3px 10px rgba(0,0,0,0.1);
  color: #92ada4;
  text-align: center;
}

/* Stick */
.stick {
  position: absolute;
  width: 10px;
  height: 60%;
  background: #dfaea1;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 8px;
  box-shadow: inset -2px -2px 6px rgba(0,0,0,0.2);
}


/* Mochi */
.mochi-wrapper {
  position: relative;
  display: inline-block;
  margin: 10px;
}

.mochi {
  position: relative;
  width: 120px;
  height: 80px;
  background: #fff5e1;
  border-radius: 50% 50% 40% 40%;
  padding-top: 10px;
  box-shadow: inset -5px -5px 10px rgba(0,0,0,0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.mochi:hover {
  transform: scale(1.05);
}

/* Toppings */
.top {
  position: absolute;
  width: 35px;
  height: 18px;
  border-radius: 50% 50% 30% 30%;
  top: -8px;
  right: 20%;
  transform-origin: center;
}
.top1 { background: #ff808a; transform: rotate(12deg); }
.top2 { background: #8e5e53; transform: rotate(12deg); }
.top3 { background: #ffe76a; transform: rotate(12deg); }

/* Fillings */
.filling {
  width: 70%;
  height: 40%;
  border-radius: 20px;
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.4s ease;
  box-shadow:
    inset 2px 2px 4px rgba(0,0,0,0.15),
    inset -2px -2px 4px rgba(124,124,124,0.4);
}
.filling1 { background: #f58a96; }
.filling2 { background: #7a4a3a; }
.filling3 { background: #f6c75c; }

.mochi.show .filling {
  opacity: 1;
  transform: scale(1);
}

/* Labels */
.label {
  position: absolute;
  font-size: 0.9rem;
  font-weight: bold;
  background: #fff;
  padding: 4px 10px;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  white-space: nowrap;
  top: 50%;
  transform: translateY(-50%);
}

/* Desktop */
.strawberry { 
  top: 40%; 
  left: -88%;  
  color: #ff6080; 
}
.chocolate { 
  top: 50%; 
  right: -85%; 
  color: #8e5e53; 
}
.mango { 
  top: 40%; 
  left: -65%;  
  color: #f9a825; 
}

/* Mobile */
@media (max-width: 600px) {
  .strawberry { 
    top: 44%; 
    left: -95%;
    color: #ff6080; 
  }
  .chocolate { 
    top: 44%; 
    right: -88%;  
    color: #8e5e53; 
  }
  .mango { 
    top: 44%; 
    left: -70%;
    color: #f9a825; 
  }
}

/* ☁️🌱 CHA 🌱☁️ */