#stk-result-modal {
display: none;
position: fixed;
inset: 0;
z-index: 99999;
background: rgba(10, 10, 10, 0.99);
align-items: flex-end;
justify-content: center;
cursor: pointer;
}
.stk-result-container {
position: relative;
width: 800px;
height: 800px;
}
.stk-result-layer {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: contain;
pointer-events: none;
}
.stk-result-sticker {
position: absolute;
top: 43%;
left: 50%;
transform: translate(-50%, -50%);
width: 65%;
height: 65%;
object-fit: contain;
z-index: 2;
pointer-events: none;
}
#stk-result-close {
position: absolute;
top: -12px;
right: -12px;
width: 36px;
height: 36px;
min-width: 36px;
min-height: 36px;
border-radius: 50%;
border: none;
background: rgba(0, 0, 0, 0.7);
color: #fff;
font-size: 18px;
cursor: pointer;
z-index: 5;
display: flex;
align-items: center;
justify-content: center;
line-height: 1;
padding: 0;
}
#stk-result-close:hover {
background: rgba(255, 255, 255, 0.2);
}