.lift-modal {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 300px;
    margin: 50px auto;
    border: 5px solid #ffcc00; 
}

.lift-modal h2 {
    font-size: 1.5rem;
    color: #ffcc00;
    margin-bottom: 10px;
}

.lift-modal p {
    font-size: 1rem;
    color: #d4d4d4;
    margin-bottom: 20px;
}

.lift-buttons {
    display: flex;
    justify-content: space-around;
}

.lift-btn {
    width: 60px;
    height: 60px;
    background-color: #333;
    border: 4px solid #ffcc00;
    border-radius: 50%;
    font-size: 0.75rem;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    transition: background-color 0.3s ease, transform 0.2s ease;
    position: relative;
}

.lift-btn:hover {
    background-color: #ffcc00;
    color: #333;
    transform: scale(1.1); 
}

.lift-btn:active {
    transform: scale(1); 
}

.lift-btn:before {
    content: "";
    position: absolute;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    box-shadow: inset 0px 4px 0px rgba(255, 255, 255, 0.1), inset -4px -4px 0px rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.lift-modal, .lift-btn {
    image-rendering: pixelated;
}
