.loading-overlay {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.loading-container {
    position: relative;
    width: 500px;
    height: 300px;
    text-align: center;
    vertical-align: bottom;
}

.loading-cube {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.loading-cube:hover {
    transform: translate(-50%, -50%) scale(1.5);
    z-index: 10;
}