/* Fullpage background mode */
.blobmixer-fullpage {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    pointer-events: none;
}
.blobmixer-fullpage canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

/* Standalone container mode (backward compat) */
.blobmixer-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.blobmixer-container canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    top: 0; left: 0;
}
