/* Crazy UI/UX Button Styles */
.deskCta {
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.deskCtabtn {
    position: relative;
    padding: 14px 32px;
    border-radius: 50px;
    background: #020020; /* Deep dark base */
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Inner Text (Ensures it stays on top of the spotlight) */
.deskCtabtn span {
    position: relative;
    z-index: 5;
    pointer-events: none;
}

/* The Liquid/Spotlight Fill */
.deskCtabtn .btn-fill {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #453fff 0%, #1c07fa 50%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    pointer-events: none;
    z-index: 1;
    filter: blur(15px);
    border-radius: 50%;
}

/* Hover State */
.deskCtabtn:hover {
    border-color: rgba(69, 63, 255, 0.6);
    box-shadow: 0 15px 40px rgba(69, 63, 255, 0.25);
}