body {
	background: #ffffff;
}

#align {
	display: flex;
  align-items: center;
  justify-content: center;	
  height: 100vh;
}

#stage {
	width: 900px;
	height: 556px;
	margin: auto;
	background: white;
	position: relative;
}



#clip {
	width: 150px;
	height: 150px;
	background: green;
	clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
	top: 203px;
	left: 690px;
	position: absolute;

	/* uncomment for css transitions */
	/* transition: all 400ms ease; */
}
.chopstick {
  position: absolute;
  top: -10px;
  left: 10px;
  width: 120px;
  height: 6px;
  background: #8b5e3c;
  border-radius: 3px;
  transform: rotate(10deg);
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2); /* light 3D effect */
  z-index: 3;
}
.ramen-cup {

	width: 160px;
	height: 200px;
	top: 203px;
	left: 690px;
	position: absolute;
  }
  
  .lid {
	width: 160px;
	height: 5px;
	background: #000000;
	border-radius: 10px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
  }
  
  .body {
	width: 160px;
	height: 190px;
	background: linear-gradient(to right, #720000 0%, #ff0000 100%);
	margin: 0 auto;
	position: relative;
	clip-path: polygon(0% 0%, 100% 0%, 85% 100%, 15% 100%);
	z-index: 1;
  }
  .body::before {
	content: "";
	position: absolute;
	top: 0;
	left: 90px; /* adjust for placement */
	width: 50px;
	height: 100%;
	background: linear-gradient(to right,rgba(255,255,255,0), rgba(255, 255, 255, 0.7), rgba(255,255,255,0));
	transform: rotate(5deg);
	pointer-events: none;
  }
  .barcode {
	position: absolute;
	bottom: 10px;
	right: 20px;
	width: 40px;
	height: 40px;
	display: flex;
	gap: 1px;
  }
  
  .barcode::before,
  .barcode::after,
  .barcode div {
	content: '';
	display: block;
	height: 100%;
	background: black;
  }
  
  .barcode div:nth-child(1) { width: 2px; }
  .barcode div:nth-child(2) { width: 1px; }
  .barcode div:nth-child(3) { width: 2px; }
  .barcode div:nth-child(4) { width: 1px; }
  .barcode div:nth-child(5) { width: 3px; }
  
  .base {
	width: 60px;
	height: 10px;
	background: #996600;
	border-radius: 50%;
	margin: -5px auto 0;
	z-index: 3;
	position: relative;
  }
  .pocari-can {
  position: absolute;
  top: 160px;
  left: 590px;
  width: 90px;
  height: 240px;
  background: linear-gradient(to bottom, #0026ff, #001eff);
  border-radius: 8px;
  box-shadow: inset 0 0 10px rgba(255,255,255,0.2), 2px 2px 5px rgba(0,0,0,0.2);
  overflow: hidden;
  z-index: 1;
}

.can-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 90px;
  height: 10px;
  background: linear-gradient(to bottom, #ccc, #999);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  z-index: 2;
}

.can-label {
  position: absolute;
  top: 20px;
  left: 5px;
  width: 50px;
  height: 120px;
  background: none; /* You can add a white wave if you want */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.pocari-text {
  position: absolute;
  left: -20%;
  top: 5%;
  transform: rotate(-90deg) translate(-50%, -50%);
  transform-origin: center;
  color: white;
  font-size: 25px;
  font-weight: bold;
  font-family: sans-serif;
  white-space: nowrap;
}
/* animations */

/*
#clip:hover {
	transform: rotate(1200deg);
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}


@keyframes move {
  from {
    transform: translateX(0px);
  }
  to {
    transform: translateX(100px);
  }
}

*/