#projects-cloud-container {
    position: relative;
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    border-radius: 20px;
    overflow: hidden;
    margin: 20px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

#projects-cloud-title {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
    color: white;
}

#projects-cloud-title h2 {
    margin: 0;
    font-weight: 700;
    font-size: 1.8rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

#projects-cloud-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: grab;
}

#projects-cloud-canvas:active {
    cursor: grabbing;
}

#random-project-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 6px 16px;
    margin-top: 8px;
    transition: all 0.3s ease;
}

#random-project-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

#project-tooltip {
    position: absolute;
    padding: 12px 16px;
    background: rgba(30, 30, 50, 0.9);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    color: white;
    font-weight: 600;
    pointer-events: none;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: opacity 0.2s;
    white-space: nowrap;
    font-size: 14px;
}

#project-tooltip.hidden {
    opacity: 0;
    pointer-events: none;
}