#slo-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0); */
    z-index: 9998;
    display: none;


    background: rgba(0, 0, 0, 0.5); /* transparent black */
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px); /* Safari support */
    z-index: 9998;
}

#slo-overlay {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: #ffffffe2;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
    transition: bottom 0.4s ease-in-out;
    z-index: 9999;
    padding: 20px;
    /* overflow-y: scroll; */
    padding: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    /* max-height: 400px; */

}

#slo-overlay.active {
    bottom: 0;
}

#slo-backdrop.active {
    display: block;
}

#inner_log {
    max-width: 500px;
    padding: 0 20px;
}

#inner_log h3 {
    text-align: center;
    font-weight: 700;
    letter-spacing: -.025em;
    line-height: 1.25;
    font-size: 1.5rem;
}

#inner_log p {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    text-align: center;
    /* color: #6c7c93; */
    color: #253858;
    margin-top: .75rem;
    ;
}

#inner_log .btn_group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: space-between;
}

#inner_log .my_register_btn {
    background: rgba(226, 54, 54, 1);
    padding: .8rem 1.5rem;
    margin-top: 20px;
    font-size: 1rem !important;
    font-weight: 600;
    line-height: 1.5rem;
    display: inline-block;
    border-radius: 10px;
    text-transform: uppercase;
    color: #fff;
    box-shadow: 0 10px 15px -3px hsl(0 75% 55% / 0.25), 0 4px 6px -4px hsl(0 75% 55% / 0.25);
}

#inner_log .slo-description {
    /* color: #6c7c93; */
    color: #253858;
    font-size: 14px;
    line-height: 20px;
}

body.slo-locked,
html.slo-locked {
    overflow: hidden !important;
    height: 100% !important;
}





.slo-social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.slo-social-icons a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.slo-social-icons a i {
    font-size: 27px;
    transition: transform 0.3s ease;
}

.slo-social-icons a img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.slo-social-icons a:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.slo-social-icons a:hover i,
.slo-social-icons a:hover img {
    transform: scale(1.15);
}

.slo-social-icons a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(234, 62, 62), rgba(226, 54, 54, 1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.slo-social-icons a:hover::before {
    opacity: 1;
}

.slo-social-icons a i,
.slo-social-icons a img {
    position: relative;
    z-index: 1;
}

.slo-social-icons a:hover {
    color: #fff;
}

@media (max-width: 576px) {
    .slo-social-icons a {
        width: 36px;
        height: 36px;
    }

    .slo-social-icons a i,
    .slo-social-icons a img {
        width: 16px;
        height: 16px;
        font-size: 16px;
    }
}