.em-vw-root {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: #000;
}
.em-vw-stage {
    width: 100vw;
    height: 100vh;
    position: relative;
}
.em-vw-stage > * {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    background: #000;
}

.em-vw-shield--tl {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 198px;
    height: 72px;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: none;
    pointer-events: none;
    box-sizing: border-box;
}
.em-vw-shield--tl img {
    display: block;
    max-width: 182px;
    max-height: 56px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.em-vw-shield--br {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 9999;
    width: 270px;
    height: 26px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-align: center;
    background: #fff;
    color: #0f172a;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1px;
    line-height: 1;
    box-shadow: none;
    pointer-events: none;
    box-sizing: border-box;
}
.em-vw-shield--br i {
    font-size: 9px;
}

.em-vw-shield--br-icon {
    position: fixed;
    right: 0;
    bottom: 26px;
    z-index: 9999;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    pointer-events: none;
    box-sizing: border-box;
}
.em-vw-shield--br-icon img {
    display: block;
    width: 28px;
    height: 28px;
    object-fit: contain;
}

@media (max-width: 767px) {
    .em-vw-shield--tl {
        width: 176px;
        height: 66px;
        padding: 3px 6px;
    }
    .em-vw-shield--tl img {
        max-width: 162px;
        max-height: 48px;
    }
    .em-vw-shield--br {
        width: 234px;
        height: 24px;
        font-size: 9px;
        padding: 0 8px;
    }
    .em-vw-shield--br-icon {
        bottom: 24px;
        width: 40px;
        height: 40px;
    }
    .em-vw-shield--br-icon img {
        width: 24px;
        height: 24px;
    }
}
