    .blur-btn-group {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-top: 8px;
    }
    .blur-btn {
      padding: 10px 18px;
      background: var(--color-bg);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-sm);
      cursor: pointer;
      font-family: var(--font-body);
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--color-text-secondary);
      transition: all var(--transition-fast);
    }
    .blur-btn:hover {
      border-color: var(--color-primary-subtle);
      background: var(--color-primary-light);
      color: var(--color-primary);
    }
    .blur-btn.active {
      border-color: var(--color-primary);
      background: var(--color-primary-light);
      color: var(--color-primary);
      font-weight: 600;
    }
    .blur-canvas-wrapper {
      text-align: center;
      padding: 16px;
      background: repeating-conic-gradient(#f1f5f9 0% 25%, transparent 0% 50%) 50% / 16px 16px;
      border-radius: var(--radius-sm);
      border: 1px solid var(--color-border);
      min-height: 200px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 20px;
    }
    .blur-container {
      position: relative;
      display: inline-block;
      max-width: 100%;
      user-select: none;
      -webkit-user-select: none;
      margin: 0 auto;
      touch-action: none;
    }
    .blur-container canvas {
      display: block;
      max-width: 100%;
      max-height: 500px;
    }
    .blur-container.selection-mode {
      cursor: crosshair;
    }
    .blur-overlay {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }
    .blur-selection {
      position: absolute;
      border: 2px dashed rgba(255, 255, 255, 0.95);
      box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.4), 0 0 10px rgba(0, 0, 0, 0.15);
      cursor: move;
      pointer-events: auto;
    }
    .blur-handle {
      position: absolute;
      width: 12px;
      height: 12px;
      background: #fff;
      border: 1px solid rgba(0, 0, 0, 0.3);
      border-radius: 2px;
      pointer-events: auto;
    }
    .blur-handle.tl { top: -6px; left: -6px; cursor: nw-resize; }
    .blur-handle.tr { top: -6px; right: -6px; cursor: ne-resize; }
    .blur-handle.bl { bottom: -6px; left: -6px; cursor: sw-resize; }
    .blur-handle.br { bottom: -6px; right: -6px; cursor: se-resize; }
    .blur-handle.tm { top: -6px; left: 50%; margin-left: -6px; cursor: n-resize; }
    .blur-handle.bm { bottom: -6px; left: 50%; margin-left: -6px; cursor: s-resize; }
    .blur-handle.ml { top: 50%; left: -6px; margin-top: -6px; cursor: w-resize; }
    .blur-handle.mr { top: 50%; right: -6px; margin-top: -6px; cursor: e-resize; }
    .blur-sel-info {
      position: absolute;
      bottom: 8px;
      left: 50%;
      transform: translateX(-50%);
      background: rgba(0, 0, 0, 0.7);
      color: #fff;
      padding: 3px 10px;
      border-radius: 4px;
      font-family: var(--font-mono);
      font-size: 0.7rem;
      white-space: nowrap;
      pointer-events: none;
    }
    .blur-hint {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: rgba(0, 0, 0, 0.6);
      color: #fff;
      padding: 12px 24px;
      border-radius: 8px;
      font-family: var(--font-body);
      font-size: 0.9rem;
      pointer-events: none;
      transition: opacity 0.3s ease;
      white-space: nowrap;
    }
    @media (max-width: 768px) {
      .blur-handle { width: 18px; height: 18px; }
      .blur-handle.tl { top: -9px; left: -9px; }
      .blur-handle.tr { top: -9px; right: -9px; }
      .blur-handle.bl { bottom: -9px; left: -9px; }
      .blur-handle.br { bottom: -9px; right: -9px; }
      .blur-handle.tm { top: -9px; margin-left: -9px; }
      .blur-handle.bm { bottom: -9px; margin-left: -9px; }
      .blur-handle.ml { left: -9px; margin-top: -9px; }
      .blur-handle.mr { right: -9px; margin-top: -9px; }
      .blur-hint { font-size: 0.8rem; padding: 10px 16px; }
    }
