html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #2b2d42;
    color: #edf2f4;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.liro-bootstrap {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    gap: 16px;
    padding: 24px;
    background: #2b2d42;
    text-align: center;
}

.liro-bootstrap__mark {
    display: flex;
    width: 132px;
    height: 132px;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border: 1px solid #ef233c;
    border-radius: 50%;
    color: #edf2f4;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.12em;
}

.liro-bootstrap__title {
    color: #edf2f4;
    font-size: 30px;
    line-height: 34px;
    font-weight: 500;
}

.liro-bootstrap__bar {
    width: 150px;
    height: 4px;
    overflow: hidden;
    border-radius: 6px;
    background: rgba(141, 153, 174, 0.2);
}

.liro-bootstrap__bar-fill {
    width: 44%;
    height: 100%;
    border-radius: inherit;
    background: #ef233c;
    animation: liro-bootstrap-progress 1.2s ease-in-out infinite alternate;
}

@keyframes liro-bootstrap-progress {
    from {
        transform: translateX(-35%);
    }

    to {
        transform: translateX(140%);
    }
}
