/* ==========================================================================
   Widget: Globe
   Geanimeerde draaiende wireframe wereldbol
   ========================================================================== */

.cpx-globe {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.cpx-globe__canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

/* Subtiele gloed achter de bol */
.cpx-globe__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 0;
    width: 60%;
    height: 60%;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(138, 127, 199, 0.12) 0%,
            rgba(138, 127, 199, 0.04) 40%,
            transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    filter: blur(20px);
}