#hyrrokkin-security-alert {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 99999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

#hyrrokkin-security-alert.active {
    display: flex;
}

.hyr-security-box {
    width: 100%;
    max-width: 520px;
    background: #fff;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 38px 32px;
    text-align: center;
    box-shadow:
        0 0 0 1px rgba(150,26,66,0.15),
        0 25px 70px rgba(0,0,0,0.65),
        0 0 40px rgba(150,26,66,0.18);
    color: #fff;
}

.hyr-security-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgb(0 114 180 / 90%);
    border: 1px solid #0072b4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.hyr-security-box h3 {
    margin: 0 0 12px;
    font-size: 26px;
    font-weight: 700;
    color: #0072b4;
}

.hyr-security-box p {
    margin: 0 auto 20px;
    max-width: 430px;
    color: #171717;
    line-height: 1.65;
    font-size: 16px;
}

.hyr-security-code {
    display: inline-block;
    padding: 7px 12px;
    border-radius: 30px;
    background: rgb(0 114 180 / 12%);
    color: #0072b4;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 22px;
}

.hyr-security-btn {
    border: 0;
    background: #0072b4;
    color: #fff;
    padding: 12px 26px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.hyr-security-btn:hover {
    background: #0072b4;
}