/* orbit.css : styles spécifiques à l'animation orbitale des compétences */

.orbit-planet {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    pointer-events: auto;
    cursor: pointer;
    font-size: 2em;
    z-index: 2;
    background: rgba(20,24,38,0.18);
    border-radius: 50%;
    box-shadow: 0 2px 8px #0005, 0 0 8px 2px #6366f1cc;
    border: 2px solid #222c;
    overflow: visible !important;
    max-width: 48px;
    max-height: 48px;
    box-sizing: border-box;
    overflow-x: hidden;
}

.orbit-planet .planet-label {
    display: none !important;
}

#orbit-tooltip {
    position: fixed;
    background: rgba(20,24,38,0.18);
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 1rem;
    pointer-events: none;
    z-index: 9999;
    box-shadow: 0 2px 12px #0008, 0 0 8px 2px #6366f1cc;
    display: none;
    white-space: nowrap;
    opacity: 0.97;
    transition: opacity 0.15s;
}

#orbit-skills {
    overflow: hidden !important;
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}


