/* sublimis-dust.css — минимальные стили для слоёв и курсоров */
.sublimis-dust-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
}

.sublimis-dust-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: multiply;
}

.sublimis-stain-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9997;
}

.sublimis-draw-circle {
    position: fixed;
    border-radius: 50%;
    border: 2px solid rgba(193, 74, 44, 0.7);
    background: radial-gradient(circle, rgba(193, 74, 44, 0.15) 0%, rgba(193, 74, 44, 0.05) 60%, transparent 90%);
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.05s;
}

.sublimis-draw-circle.visible {
    opacity: 1;
}

.sublimis-eraser-cursor {
    position: fixed;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(193, 74, 44, 0.25) 0%, rgba(193, 74, 44, 0.1) 50%, transparent 80%);
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(193, 74, 44, 0.5);
    backdrop-filter: blur(3px);
    opacity: 0;
}

.sublimis-eraser-cursor.visible {
    opacity: 1;
}

.sublimis-full-eraser {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: rgba(31, 27, 21, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10002;
    transition: all 0.2s;
    border: 1px solid rgba(193, 74, 44, 0.4);
    font-size: 1.4rem;
    color: #c14a2c;
    font-family: monospace;
}

.sublimis-full-eraser:hover {
    transform: scale(1.1);
    background: rgba(193, 74, 44, 0.8);
    color: #1f1b15;
}

@media (max-width: 850px) {
    .sublimis-full-eraser {
        bottom: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}