body { margin: 0; overflow: hidden; background: #111; }
canvas { display: block; }
#info {
    position: absolute;
    top: 20px;
    width: 100%;
    text-align: center;
    color: white;
    font-family: monospace;
    pointer-events: none;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #050505;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
    transition: opacity 0.8s ease-out;
}

.loader-icon {
    width: 120px;
    height: 120px;
    position: relative;
}

/* The Wireframe (Empty) */
.knot-path {
    fill: none;
    stroke: #333;
    stroke-width: 1.5;
}

.knot-fill {
    fill: #722F37; 
    stroke: none;
    clip-path: url(#liquid-clip);
}

.loading-text {
    margin-top: 20px;
    color: #722F37;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: bold;
}
        
.loading-percent {
    margin-top: 5px;
    color: #444;
    font-size: 10px;
}