.transform-demo {
    background-color: #f7fafc;
    padding: 30px;
    border-radius: 8px;
    margin: 15px 0;
    text-align: center;
}

.transform-box {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    position: relative;
    top: 20px;
    left: 30px;
    transform: rotate(15deg) scale(1.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.transform-box:hover {
    transform: rotate(15deg) scale(1.2);
}