.demo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
}

.content {
    text-align: center;
    padding: 2rem;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.delicate-nodes {
    bottom: 20px;
    right: 20px;
    width: 25rem;
    height: 25rem;
    z-index: -1;
    pointer-events: none;
}

@media (max-width: 768px) {
    .delicate-nodes {
        width: 25rem;
        height: 25rem;
        bottom: 10px;
        left: -20rem;
    }
}

canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.note {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    color: #94a3b8;
    font-family: monospace;
    z-index: 101;
    pointer-events: none;
}