* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow: hidden;
    background: #0a0a14;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    -webkit-user-select: none;
    user-select: none;
}

#globe-container {
    width: 100vw;
    height: 100vh;
    touch-action: none;
}

#tooltip {
    position: fixed;
    display: none;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 8px 14px;
    border-radius: 4px;
    font-size: 14px;
    pointer-events: none;
    z-index: 1000;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    #tooltip {
        font-size: 20px;
        padding: 12px 20px;
    }
}
