.egw-globe-widget{
    --egw-blue:#0084cd;
    --egw-green:#13c000;
    --egw-text:#ffffff;
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:visible;
    position:relative;
    background:transparent;
}
.egw-globe-widget *{ box-sizing:border-box; }
.egw-globe-wrap{
    position:relative;
    width:620px;
    height:620px;
    max-width:100%;
    max-height:100vw;
    margin:0;
}
.egw-globe-canvas{
    width:100%;
    height:100%;
    border-radius:50%;
    display:block;
    background:transparent;
}
.egw-card{
    position:absolute;
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);
    background:rgba(3,11,24,.75);
    border:1px solid rgba(255,255,255,.1);
    border-radius:18px;
    padding:16px 20px;
    box-shadow:0 20px 60px rgba(0,0,0,.45);
    color:var(--egw-text);
    z-index:2;
    transform-origin:center;
}
.egw-card-left{ top:18%; left:-8%; }
.egw-card-right{ bottom:19%; right:-8%; }
.egw-card-flex{ display:flex; align-items:center; gap:12px; }
.egw-icon{
    width:42px;
    height:42px;
    border-radius:12px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:18px;
    flex:0 0 auto;
}
.egw-blue-icon{ background:rgba(0,132,205,.2); color:var(--egw-blue); }
.egw-green-icon{ background:rgba(19,192,0,.2); color:var(--egw-green); }
.egw-num{ font-size:30px; font-weight:700; line-height:1; white-space:nowrap; }
.egw-label{ font-size:12px; color:rgba(255,255,255,.58); white-space:nowrap; }
@media(max-width:768px){
    .egw-globe-widget{ overflow:visible; padding:20px 0; }
    .egw-globe-wrap{ width:90vw; height:90vw; max-height:90vw; }
    .egw-card{ padding:12px 14px; border-radius:14px; }
    .egw-card-left{ left:-2%; top:12%; }
    .egw-card-right{ right:-2%; bottom:12%; }
    .egw-icon{ width:34px; height:34px; font-size:15px; border-radius:10px; }
    .egw-num{ font-size:24px; }
    .egw-label{ font-size:10px; }
}
@media(max-width:480px){
    .egw-card-left{ left:0; top:7%; }
    .egw-card-right{ right:0; bottom:7%; }
    .egw-card-flex{ gap:8px; }
}
