
.orbit-fab {
    position: fixed;
    bottom: 100px; 
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    z-index: 9000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255,255,255,0.2);
}
.orbit-fab:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.6);
}

.orbit-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    display: none;
    flex-direction: column;
    animation: fadeIn 0.3s ease;
}
.orbit-overlay.active {
    display: flex;
}
.orbit-close-btn {

    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 8px 16px;

    cursor: pointer;
    font-weight: 600;
    z-index: 10000;
    backdrop-filter: blur(5px);
    transition: 0.2s;
}
.orbit-close-btn:hover {
    background: rgba(239, 68, 68, 0.8);
    border-color: #ef4444;
}
.orbit-frame-container {
    width: 100%;
    height: 100%;
    flex: 1;
}
