:root{
    --body-bg: #0D0914;
    --btn-bg:#782EFA;
    --app-name-bg:linear-gradient(90deg, rgba(138,43,226,1) 3%, rgba(48,157,251,1) 100%);
    --border-bg:linear-gradient(240.57deg, #A9A8CD 0%, #141524 50%, #A9A8CD 100%);
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'urbanist';
}

body{
    background-color: var(--body-bg);
}

.btn{
    width: 250px;
    height: 52px;
    padding: 8px 24px;
    border-radius: 27px;
    background-color: var(--btn-bg);
    font-size: 22px;
    font-weight: 600;
    line-height: 26.4px;
    text-align: center;
    color: #FAFAFA;
    border: none;
    outline: none;
    text-decoration: none;
    padding-top: 12px;
}

.card {
    position: relative;
    background: linear-gradient(110.43deg, rgba(250, 250, 250, 0.05) 0%, rgba(77, 69, 97, 0.05) 50%, rgba(250, 250, 250, 0.05) 100%);
    padding: 24px;
    border: none;
    border-radius: 30px; 
    /* border-image-source: linear-gradient(249.57deg, #A9A8CD 0%, #141524 50%, #A9A8CD 100%); */
    display: inline-block; /* Ensure it works with padding and content */
    z-index: 1; /* Ensure it is above pseudo-elements */
    transition: all 0.3s ease;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px; 
    /* padding: 2px;  */
     /* Gradient border */
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    z-index: -1; 
}

.card-title{
    font-family: Urbanist;
    font-size: 28px;
    font-weight: 700;
    line-height: 33.6px;
    color: #FAFAFA;
}

.card-body{
    font-family: Urbanist;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    color: #A4A5B6;
    margin-top: 12px;
}
