        body {
            margin: 0;
            overflow: hidden;
            background-color: #050510;
            font-family: sans-serif;
        }
        #canvas-globe {
            width: 100vw;
            height: 100vh;
            cursor: grab;
			position: relative;
			overflow: hidden;
        }
        #canvas-globe:active {
            cursor: grabbing;
        }
        /* Styling für die HTML-Marker */
        .marker {
            position: absolute;
            width: 32px;
            height: 32px;
            transform: translate(-50%, -100%) scale(0);
            pointer-events: none;
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
            opacity: 0;
            z-index: 10;
        }
        .marker.visible {
            opacity: 1;
            transform: translate(-50%, -100%) scale(1);
        }
        /* Das 3D SVG-Icon */
        .pin {
            width: 100%;
            height: 100%;
            fill: #ff3b30;
            filter: drop-shadow(0px 3px 5px rgba(0,0,0,0.6));
        }
        .marker.bounce .pin {
            animation: jump 0.6s ease-out 2;
        }
        @keyframes jump {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-12px); }
        }
        /* Kleiner CSS-Label für die Städtenamen */
        .marker-label {
            position: absolute;
            left: 24px;
            top: 50%;
            transform: translateY(-50%);
            /*background: rgba(5, 5, 16, 0.15);*/
            color: #ffffff;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 11px;
            /*font-weight: bold;*/
            white-space: nowrap;
            /*border: 1px solid rgba(255, 255, 255, 0.2);*/
            /*box-shadow: 0 2px 5px rgba(0,0,0,0.5);*/
        }