ul li {
background-color: #4CAF50;
color: white;
font-size: 24px;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
overflow: hidden;
position: relative;
}
ul li::before {
content: "";
position: absolute;
width: 200%;
height: 200%;
top: -50%;
left: -50%;
background: rgba(255, 255, 255, 0.3);
transform: rotate(45deg);
transition: transform 0.5s;
}
ul li:hover::before {
transform: translate(100%, 100%) rotate(45deg);
}