.button-3d {
    padding: 16px 40px;
    background: linear-gradient(145deg, #6a11cb, #2575fc);
    border: none;
    border-radius: 16px;
    color: white;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transform-style: preserve-3d;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.2),
        inset 0 -4px 8px rgba(0, 0, 0, 0.3);
}

.button-3d:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 25px rgba(0, 0, 0, 0.25),
        inset 0 -4px 8px rgba(0, 0, 0, 0.3);
}

.button-3d:active {
    transform: translateY(2px);
    box-shadow: 
        0 5px 10px rgba(0, 0, 0, 0.2),
        inset 0 2px 4px rgba(0, 0, 0, 0.3);
}
.morph-button {
    padding: 18px 42px;
    background: #0f0c29;
    color: #fff;
    border: 2px solid transparent;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    clip-path: polygon(
        0% 15px,
        15px 0%,
        calc(100% - 15px) 0%,
        100% 15px,
        100% calc(100% - 15px),
        calc(100% - 15px) 100%,
        15px 100%,
        0% calc(100% - 15px)
    );
}

.morph-button:hover {
    background: #24243e;
    color: #00dbde;
    clip-path: polygon(
        0% 0%,
        30px 0%,
        100% 0%,
        100% calc(100% - 30px),
        100% 100%,
        calc(100% - 30px) 100%,
        0% 100%,
        0% 30px
    );
    transform: translateY(-5px);
}

.morph-button::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00dbde, #fc00ff);
    z-index: -1;
    filter: blur(10px);
    opacity: 0;
    transition: opacity 0.5s;
}

.morph-button:hover::after {
    opacity: 0.7;
}
