 @import url('https://fonts.googleapis.com/css2?family=Oxanium&display=swap');
    body {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100vh;
        background: #f0f2f5;
        font-family: "Oxanium", serif;
        overflow: hidden;
    }
    .scanbox {
        width: 182px;
        height: 212px;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: linear-gradient(145deg, #2563eb, #17c6aa);
        box-shadow: 0px 6px 16px rgba(37, 99, 235, 0.4), 0px -6px 12px rgba(124, 58, 237, 0.3), inset 0px 0px 20px rgba(37, 99, 235, 0.2);
        backdrop-filter: blur(6px); 
        overflow: hidden;
    }
    .scanbox .sb-container {
        width: 120px;
        height: 120px;
        margin: 0 auto;
        position: relative
    }
    .scanbox p {
        width: 120px;
        margin: 20px auto;
        font-size: 16px;
        font-weight: 600;
        color: #fff;
        line-height: 20px;
        text-align: center;
        letter-spacing: 0.5px;
        text-shadow: 0px 2px 4px rgba(37, 99, 235, 0.7), 0px 4px 12px rgba(124, 58, 237, 0.6);
    }
    .scanbox .sb-container .sb-frame {
        width: 124px;
        height: 124px;
        background: linear-gradient(145deg, #7c3aed, #2563eb);
        content: "";
        position: absolute;
        top: -2px;
        left: -2px;
        z-index: -1;
    } 
    .scanbox .sb-container .sb-divider {
        width: 114px;
        height: 4px;
        background: linear-gradient(90deg, #2563eb, #7c3aed);
        position: absolute;
        top: 4px;
        left: 50%;
        margin-left: -57.5px;
        box-shadow: 0px 0px 16px rgba(37, 99, 235, 0.6), 0px 0px 10px rgba(124, 58, 237, 0.4);
    }
    .scanbox .sb-container .sb-divider.active {
        animation: speed 3s ease-in-out 0s infinite 300ms 0 ease;
        animation: speed 3s ease-in-out 0s infinite;
    }
    @keyframes speed {
    0% {
            transform: translateY(0);
        opacity: 1;
        filter: alpha(opacity=100);
    }
    50% {
        transform: translateY(108px);
        opacity: 1;
        filter: alpha(opacity=100);
    }
    100% {
        transform: translateY(0);
        opacity: 1;
        filter: alpha(opacity=100);
    }
}