/* CTA Button Styles matching INB Template */

:root {
    --brand-soft-rgb: 228, 204, 254;
    --brand-strong-rgb: 200, 42, 239;
    --accent-color: #C82AEF;
    --accent-color-2: #FFFFFF;
    --accent-color-4: #0E0E0E;
    --primary: #D1D1D1;
    --box-shadow-top-left: -3px -3px 7px 0px rgba(200, 42, 239, 0.44);
    --box-shadow-bottom-right: 3px 3px 7px 0px rgba(200, 42, 239, 0.44);
}

.custom-cta-inb {
    max-width: fit-content;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 100px;
    padding: 5px;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    fill: var(--accent-color-2);
    transition: all 0.6s;
    background-color: var(--accent-color-4);
    box-shadow: var(--box-shadow-top-left);
    text-decoration: none;
    cursor: pointer;
    z-index: 10;
}

.custom-cta-inb::after {
    content: "";
    position: absolute;
    top: -120%;
    left: -35%;
    width: 40%;
    height: 300%;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(var(--brand-soft-rgb), 0.25) 50%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(22deg);
}

.custom-cta-inb:hover {
    box-shadow: var(--box-shadow-bottom-right);
    background-color: var(--accent-color-4);
    transform: translateY(-2px);
}

.custom-cta-inb:hover::after {
    animation: premium-sheen 0.9s ease;
}

.custom-cta-inb:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 6px 18px rgba(var(--brand-strong-rgb), 0.24);
}

.custom-cta-inb .btn-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2em;
    padding: 15px 25px;
    color: var(--accent-color-2);
    text-decoration: none;
    align-self: center;
    transition: all 0.6s;
    margin: 0;
}

.custom-cta-inb .btn-title span {
    color: var(--primary);
    transition: all 0.6s;
}

.custom-cta-inb:hover .btn-title span {
    color: var(--accent-color) !important;
}

.custom-cta-inb .icon-circle {
    background-color: var(--accent-color-2);
    line-height: initial;
    padding: 0;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.6s;
    margin-right: 5px;
}

.custom-cta-inb .icon-circle i {
    font-size: 18px;
    color: var(--accent-color);
    transition: all 0.6s;
    transform: rotate(-45deg);
}

.custom-cta-inb:hover .icon-circle i {
    transform: rotate(0deg);
}

@keyframes premium-sheen {
    100% {
        left: 125%;
    }
}
